update strip, bus

set channel properties according to layout
This commit is contained in:
onyx-and-iris 2022-01-08 16:10:14 +00:00
parent acbc2c52cc
commit c31f169b0b
2 changed files with 23 additions and 8 deletions

View File

@ -1,7 +1,7 @@
. $PSScriptRoot\meta.ps1 . $PSScriptRoot\meta.ps1
class Bus { class Bus {
[int32]$id [Int]$id
[Array]$bool_params [Array]$bool_params
[Array]$float_params [Array]$float_params

View File

@ -1,23 +1,27 @@
. $PSScriptRoot\meta.ps1 . $PSScriptRoot\meta.ps1
class Strip { class Strip {
[int32]$id [Int]$id
[Array]$string_params [Array]$string_params
[Array]$float_params [Array]$float_params
[Array]$bool_params [Array]$bool_params
[Array]$int_params [Array]$int_params
[Int]$num_strip
[Int]$num_bus
# Constructor # Constructor
Strip ([Int]$id) Strip ([Int]$id, [Int]$num_strip, [Int]$num_bus)
{ {
$this.id = $id $this.id = $id
$this.num_strip = $num_strip
$this.num_bus = $num_bus
$this.string_params = @('label') $this.string_params = @('label')
$this.bool_params = @('mono', 'solo', 'mute', $this.bool_params = @('mono', 'solo', 'mute')
'A1', 'A2', 'A3', 'A4', 'A5',
'B1', 'B2', 'B3')
$this.float_params = @('gain', 'comp', 'gate') $this.float_params = @('gain', 'comp', 'gate')
$this.int_params = @('limit') $this.int_params = @('limit')
AddPublicMembers($this)
$this.SetChannelLayout()
AddPublicMembers($this)
} }
[void] Setter($cmd, $set) { [void] Setter($cmd, $set) {
@ -38,12 +42,23 @@ class Strip {
[String] cmd ($arg) { [String] cmd ($arg) {
return "Strip[" + $this.id + "].$arg" return "Strip[" + $this.id + "].$arg"
} }
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 $_
}
}
} }
Function Strips { Function Strips {
[System.Collections.ArrayList]$strip = @() [System.Collections.ArrayList]$strip = @()
0..$($layout.Strip-1) | ForEach-Object { 0..$($layout.Strip-1) | ForEach-Object {
[void]$strip.Add([Strip]::new($_)) [void]$strip.Add([Strip]::new($_, $layout.Strip, $layout.Bus))
} }
$strip $strip
} }