mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 21:30:46 +00:00
8a3b8da635
Added $this.Login() into Remote constructor to automatically log user in. Updated test codes accordingly. Boolean params take $true and $false Updated readme to reflect changes.
76 lines
1.5 KiB
PowerShell
76 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
|
|
try {
|
|
$vmr = [Remote]::new('potato')
|
|
|
|
$vmr.button[0].state = $true
|
|
$vmr.button[0].state
|
|
$vmr.button[0].state = $false
|
|
$vmr.button[0].state
|
|
}
|
|
finally { $vmr.Logout() }
|
|
}
|