mirror of
https://github.com/onyx-and-iris/xair-cli.git
synced 2026-02-04 07:27:47 +00:00
317 lines
8.5 KiB
Go
317 lines
8.5 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// busCmd represents the bus command.
|
|
var busCmd = &cobra.Command{
|
|
Short: "Commands to control individual buses",
|
|
Long: `Commands to control individual buses of the XAir mixer, including mute status.`,
|
|
Use: "bus",
|
|
Run: func(cmd *cobra.Command, _ []string) {
|
|
cmd.Help()
|
|
},
|
|
}
|
|
|
|
// busMuteCmd represents the bus mute command.
|
|
var busMuteCmd = &cobra.Command{
|
|
Short: "Get or set the bus mute status",
|
|
Long: `Get or set the mute status of a specific bus.`,
|
|
Use: "mute [bus number] [true|false]",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
client := ClientFromContext(cmd.Context())
|
|
if client == nil {
|
|
return fmt.Errorf("OSC client not found in context")
|
|
}
|
|
|
|
if len(args) < 2 {
|
|
return fmt.Errorf("Please provide bus number and mute status (true/false)")
|
|
}
|
|
|
|
busNum := mustConvToInt(args[0])
|
|
var muted bool
|
|
switch args[1] {
|
|
case "true", "1":
|
|
muted = true
|
|
case "false", "0":
|
|
muted = false
|
|
default:
|
|
return fmt.Errorf("Invalid mute status. Use true/false or 1/0")
|
|
}
|
|
|
|
err := client.Bus.SetMute(busNum, muted)
|
|
if err != nil {
|
|
return fmt.Errorf("Error setting bus mute status: %w", err)
|
|
}
|
|
|
|
cmd.Printf("Bus %d mute set to %v\n", busNum, muted)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
// busFaderCmd represents the bus fader command.
|
|
var busFaderCmd = &cobra.Command{
|
|
Short: "Get or set the bus fader level",
|
|
Long: `Get or set the fader level of a specific bus.
|
|
If no level argument is provided, the current fader level is retrieved.
|
|
If a level argument (in dB) is provided, the bus fader is set to that level.`,
|
|
Use: "fader [bus number] [level in dB]",
|
|
Example: ` # Get the current fader level of bus 1
|
|
xair-cli bus fader 1
|
|
|
|
# Set the fader level of bus 1 to -10.0 dB
|
|
xair-cli bus fader 1 -10.0`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
client := ClientFromContext(cmd.Context())
|
|
if client == nil {
|
|
return fmt.Errorf("OSC client not found in context")
|
|
}
|
|
|
|
busIndex := mustConvToInt(args[0])
|
|
|
|
if len(args) == 1 {
|
|
level, err := client.Bus.Fader(busIndex)
|
|
if err != nil {
|
|
return fmt.Errorf("Error getting bus fader level: %w", err)
|
|
}
|
|
cmd.Printf("Bus %d fader level: %.1f dB\n", busIndex, level)
|
|
return nil
|
|
}
|
|
|
|
if len(args) < 2 {
|
|
return fmt.Errorf("Please provide bus number and fader level (in dB)")
|
|
}
|
|
|
|
level := mustConvToFloat64(args[1])
|
|
|
|
err := client.Bus.SetFader(busIndex, level)
|
|
if err != nil {
|
|
return fmt.Errorf("Error setting bus fader level: %w", err)
|
|
}
|
|
|
|
cmd.Printf("Bus %d fader set to %.2f dB\n", busIndex, level)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
// busFadeOutCmd represents the bus fade out command.
|
|
var busFadeOutCmd = &cobra.Command{
|
|
Short: "Fade out the bus fader over a specified duration",
|
|
Long: "Fade out the bus fader to minimum level over a specified duration in seconds.",
|
|
Use: "fadeout [bus number] --duration [seconds] [target level in dB]",
|
|
Example: ` # Fade out bus 1 over 5 seconds
|
|
xair-cli bus fadeout 1 --duration 5s -- -90.0`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
client := ClientFromContext(cmd.Context())
|
|
if client == nil {
|
|
return fmt.Errorf("OSC client not found in context")
|
|
}
|
|
|
|
if len(args) < 1 {
|
|
return fmt.Errorf("Please provide bus number")
|
|
}
|
|
|
|
busIndex := mustConvToInt(args[0])
|
|
|
|
duration, err := cmd.Flags().GetDuration("duration")
|
|
if err != nil {
|
|
return fmt.Errorf("Error getting duration flag: %w", err)
|
|
}
|
|
|
|
target := -90.0
|
|
if len(args) > 1 {
|
|
target = mustConvToFloat64(args[1])
|
|
}
|
|
|
|
currentFader, err := client.Bus.Fader(busIndex)
|
|
if err != nil {
|
|
return fmt.Errorf("Error getting current bus fader level: %w", err)
|
|
}
|
|
|
|
// Calculate total steps needed to reach target dB
|
|
totalSteps := float64(currentFader - target)
|
|
if totalSteps <= 0 {
|
|
cmd.Println("Bus is already at or below target level")
|
|
return nil
|
|
}
|
|
|
|
stepDelay := time.Duration(duration.Seconds()*1000/totalSteps) * time.Millisecond
|
|
|
|
for currentFader > target {
|
|
currentFader -= 1.0
|
|
err := client.Bus.SetFader(busIndex, currentFader)
|
|
if err != nil {
|
|
return fmt.Errorf("Error setting bus fader level: %w", err)
|
|
}
|
|
time.Sleep(stepDelay)
|
|
}
|
|
|
|
cmd.Println("Bus fade out completed")
|
|
return nil
|
|
},
|
|
}
|
|
|
|
// BusFadeInCmd represents the bus fade in command.
|
|
var busFadeInCmd = &cobra.Command{
|
|
Short: "Fade in the bus fader over a specified duration",
|
|
Long: "Fade in the bus fader to maximum level over a specified duration in seconds.",
|
|
Use: "fadein [bus number] --duration [seconds] [target level in dB]",
|
|
Example: ` # Fade in bus 1 over 5 seconds
|
|
xair-cli bus fadein 1 --duration 5s -- 0.0`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
client := ClientFromContext(cmd.Context())
|
|
if client == nil {
|
|
return fmt.Errorf("OSC client not found in context")
|
|
}
|
|
|
|
if len(args) < 1 {
|
|
return fmt.Errorf("Please provide bus number")
|
|
}
|
|
|
|
busIndex := mustConvToInt(args[0])
|
|
|
|
duration, err := cmd.Flags().GetDuration("duration")
|
|
if err != nil {
|
|
return fmt.Errorf("Error getting duration flag: %w", err)
|
|
}
|
|
|
|
target := 0.0
|
|
if len(args) > 1 {
|
|
target = mustConvToFloat64(args[1])
|
|
}
|
|
|
|
currentFader, err := client.Bus.Fader(busIndex)
|
|
if err != nil {
|
|
return fmt.Errorf("Error getting current bus fader level: %w", err)
|
|
}
|
|
|
|
// Calculate total steps needed to reach target dB
|
|
totalSteps := float64(target - currentFader)
|
|
if totalSteps <= 0 {
|
|
cmd.Println("Bus is already at or above target level")
|
|
return nil
|
|
}
|
|
|
|
stepDelay := time.Duration(duration.Seconds()*1000/totalSteps) * time.Millisecond
|
|
|
|
for currentFader < target {
|
|
currentFader += 1.0
|
|
err := client.Bus.SetFader(busIndex, currentFader)
|
|
if err != nil {
|
|
return fmt.Errorf("Error setting bus fader level: %w", err)
|
|
}
|
|
time.Sleep(stepDelay)
|
|
}
|
|
|
|
cmd.Println("Bus fade in completed")
|
|
return nil
|
|
},
|
|
}
|
|
|
|
// busNameCmd represents the bus name command.
|
|
var busNameCmd = &cobra.Command{
|
|
Short: "Get or set the bus name",
|
|
Long: `Get or set the name of a specific bus.`,
|
|
Use: "name [bus number] [new name]",
|
|
Example: ` # Get the name of bus 1
|
|
xair-cli bus name 1
|
|
|
|
# Set the name of bus 1 to "Vocals"
|
|
xair-cli bus name 1 Vocals`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
client := ClientFromContext(cmd.Context())
|
|
if client == nil {
|
|
return fmt.Errorf("OSC client not found in context")
|
|
}
|
|
|
|
if len(args) < 1 {
|
|
return fmt.Errorf("Please provide bus number")
|
|
}
|
|
|
|
busIndex := mustConvToInt(args[0])
|
|
|
|
if len(args) == 1 {
|
|
name, err := client.Bus.Name(busIndex)
|
|
if err != nil {
|
|
return fmt.Errorf("Error getting bus name: %w", err)
|
|
}
|
|
cmd.Printf("Bus %d name: %s\n", busIndex, name)
|
|
return nil
|
|
}
|
|
|
|
newName := args[1]
|
|
err := client.Bus.SetName(busIndex, newName)
|
|
if err != nil {
|
|
return fmt.Errorf("Error setting bus name: %w", err)
|
|
}
|
|
|
|
cmd.Printf("Bus %d name set to: %s\n", busIndex, newName)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
// busEqCmd represents the bus EQ command.
|
|
var busEqCmd = &cobra.Command{
|
|
Short: "Commands to control bus EQ settings",
|
|
Long: `Commands to control the EQ of individual buses, including turning the EQ on or off.`,
|
|
Use: "eq",
|
|
Run: func(cmd *cobra.Command, _ []string) {
|
|
cmd.Help()
|
|
},
|
|
}
|
|
|
|
// busEqOnCmd represents the bus EQ on/off command.
|
|
var busEqOnCmd = &cobra.Command{
|
|
Short: "Get or set the bus EQ on/off status",
|
|
Long: `Get or set the EQ on/off status of a specific bus.`,
|
|
Use: "on [bus number] [true|false]",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
client := ClientFromContext(cmd.Context())
|
|
if client == nil {
|
|
return fmt.Errorf("OSC client not found in context")
|
|
}
|
|
|
|
if len(args) < 2 {
|
|
return fmt.Errorf("Please provide bus number and EQ on status (true/false)")
|
|
}
|
|
|
|
busNum := mustConvToInt(args[0])
|
|
var eqOn bool
|
|
switch args[1] {
|
|
case "true", "1":
|
|
eqOn = true
|
|
case "false", "0":
|
|
eqOn = false
|
|
default:
|
|
return fmt.Errorf("Invalid EQ on status. Use true/false or 1/0")
|
|
}
|
|
|
|
err := client.Bus.Eq.SetOn(busNum, eqOn)
|
|
if err != nil {
|
|
return fmt.Errorf("Error setting bus EQ on status: %w", err)
|
|
}
|
|
|
|
cmd.Printf("Bus %d EQ on set to %v\n", busNum, eqOn)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(busCmd)
|
|
|
|
busCmd.AddCommand(busMuteCmd)
|
|
busCmd.AddCommand(busFaderCmd)
|
|
busCmd.AddCommand(busFadeOutCmd)
|
|
busFadeOutCmd.Flags().DurationP("duration", "d", 5*time.Second, "Duration for fade out in seconds")
|
|
busCmd.AddCommand(busFadeInCmd)
|
|
busFadeInCmd.Flags().DurationP("duration", "d", 5*time.Second, "Duration for fade in in seconds")
|
|
busCmd.AddCommand(busNameCmd)
|
|
|
|
busCmd.AddCommand(busEqCmd)
|
|
busEqCmd.AddCommand(busEqOnCmd)
|
|
}
|