mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 21:30:46 +00:00
12b0085ab6
Added gain param for strip/bus. Getter now returns type single instead of int.
80 lines
1.5 KiB
PowerShell
80 lines
1.5 KiB
PowerShell
class MacroButton {
|
|
[int32]$id
|
|
|
|
# Constructor
|
|
MacroButton ([Int]$id)
|
|
{
|
|
$this.id = $id
|
|
}
|
|
|
|
[void] Setter($set, $mode) {
|
|
MB_Set -ID $this.id -SET $set -MODE $mode
|
|
}
|
|
|
|
[int] Getter($mode) {
|
|
return MB_Get -ID $this.id -MODE $mode
|
|
}
|
|
|
|
hidden $_state = $($this | Add-Member ScriptProperty 'state' `
|
|
{
|
|
# get
|
|
$this.Getter(1)
|
|
}`
|
|
{
|
|
# set
|
|
param ( $arg )
|
|
$this._state = $this.Setter($arg, 1)
|
|
}
|
|
)
|
|
|
|
hidden $_stateonly = $($this | Add-Member ScriptProperty 'stateonly' `
|
|
{
|
|
# get
|
|
$this.Getter(2)
|
|
}`
|
|
{
|
|
# set
|
|
param ( $arg )
|
|
$this._stateonly = $this.Setter($arg, 2)
|
|
}
|
|
)
|
|
|
|
hidden $_trigger = $($this | Add-Member ScriptProperty 'trigger' `
|
|
{
|
|
# get
|
|
$this.Getter(3)
|
|
}`
|
|
{
|
|
# set
|
|
param ( $arg )
|
|
$this._trigger = $this.Setter($arg, 3)
|
|
}
|
|
)
|
|
}
|
|
|
|
Function Buttons {
|
|
[System.Collections.ArrayList]$button = @()
|
|
0..69 | ForEach-Object {
|
|
[void]$button.Add([MacroButton]::new($_))
|
|
}
|
|
$button
|
|
}
|
|
|
|
if ($MyInvocation.InvocationName -ne '.')
|
|
{
|
|
. .\voicemeeter.ps1
|
|
|
|
$vmr = [Remote]::new('potato')
|
|
|
|
$vmr.Login()
|
|
|
|
$vmr.button = Buttons
|
|
|
|
$vmr.button[0].state = 1
|
|
$vmr.button[0].state
|
|
$vmr.button[0].state = 0
|
|
$vmr.button[0].state
|
|
|
|
$vmr.Logout()
|
|
}
|