2022-01-06 15:27:11 +00:00
|
|
|
. $PSScriptRoot\meta.ps1
|
|
|
|
|
2021-04-28 17:38:36 +01:00
|
|
|
class Strip {
|
2022-01-08 16:10:14 +00:00
|
|
|
[Int]$id
|
2021-05-16 00:14:51 +01:00
|
|
|
[Array]$string_params
|
|
|
|
[Array]$float_params
|
|
|
|
[Array]$bool_params
|
2022-01-06 15:27:11 +00:00
|
|
|
[Array]$int_params
|
2022-01-08 16:10:14 +00:00
|
|
|
[Int]$num_strip
|
|
|
|
[Int]$num_bus
|
2021-04-28 17:38:36 +01:00
|
|
|
|
|
|
|
# Constructor
|
2022-01-08 16:10:14 +00:00
|
|
|
Strip ([Int]$id, [Int]$num_strip, [Int]$num_bus)
|
2021-04-28 17:38:36 +01:00
|
|
|
{
|
|
|
|
$this.id = $id
|
2022-01-08 16:10:14 +00:00
|
|
|
$this.num_strip = $num_strip
|
|
|
|
$this.num_bus = $num_bus
|
2021-05-16 00:14:51 +01:00
|
|
|
$this.string_params = @('label')
|
2022-01-08 16:10:14 +00:00
|
|
|
$this.bool_params = @('mono', 'solo', 'mute')
|
2022-01-06 15:27:11 +00:00
|
|
|
$this.float_params = @('gain', 'comp', 'gate')
|
|
|
|
$this.int_params = @('limit')
|
2022-01-08 16:10:14 +00:00
|
|
|
|
|
|
|
$this.SetChannelLayout()
|
|
|
|
AddPublicMembers($this)
|
2021-04-28 17:38:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
[void] Setter($cmd, $set) {
|
2021-05-16 00:14:51 +01:00
|
|
|
if( $this.string_params.Contains($cmd.Split('.')[1]) ) {
|
|
|
|
Param_Set_String -PARAM $cmd -VALUE $set
|
2021-05-11 19:09:57 +01:00
|
|
|
}
|
|
|
|
else { Param_Set -PARAM $cmd -VALUE $set }
|
2021-04-28 17:38:36 +01:00
|
|
|
}
|
|
|
|
|
2021-04-28 18:21:32 +01:00
|
|
|
[Single] Getter($cmd) {
|
2021-04-28 17:38:36 +01:00
|
|
|
return Param_Get -PARAM $cmd
|
|
|
|
}
|
|
|
|
|
2021-05-11 19:09:57 +01:00
|
|
|
[String] Getter_String($cmd) {
|
|
|
|
return Param_Get_String -PARAM $cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
[String] cmd ($arg) {
|
2021-04-28 17:38:36 +01:00
|
|
|
return "Strip[" + $this.id + "].$arg"
|
|
|
|
}
|
2022-01-08 16:10:14 +00:00
|
|
|
|
|
|
|
SetChannelLayout() {
|
|
|
|
$this.bool_params
|
|
|
|
0..($this.num_strip -1) | ForEach-Object {
|
|
|
|
$this.bool_params += "A{0}" -f $_
|
|
|
|
}
|
|
|
|
0..($this.num_bus -1) | ForEach-Object {
|
|
|
|
$this.bool_params += "B{0}" -f $_
|
|
|
|
}
|
|
|
|
}
|
2021-04-28 17:38:36 +01:00
|
|
|
}
|
|
|
|
|
2022-01-08 16:10:14 +00:00
|
|
|
|
2021-04-28 17:38:36 +01:00
|
|
|
Function Strips {
|
|
|
|
[System.Collections.ArrayList]$strip = @()
|
|
|
|
0..$($layout.Strip-1) | ForEach-Object {
|
2022-01-08 16:10:14 +00:00
|
|
|
[void]$strip.Add([Strip]::new($_, $layout.Strip, $layout.Bus))
|
2021-04-28 17:38:36 +01:00
|
|
|
}
|
|
|
|
$strip
|
|
|
|
}
|