mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 21:30:46 +00:00
62c65e1c08
GetType, GetVersion, SendText added to Remote class. Console output now written to Debug stream. ToString() method overriden for higher classes. formatter run through all files.
92 lines
2.0 KiB
PowerShell
92 lines
2.0 KiB
PowerShell
. $PSScriptRoot\kinds.ps1
|
|
. $PSScriptRoot\base.ps1
|
|
|
|
class Remote {
|
|
[Hashtable]$kind
|
|
[System.Collections.ArrayList]$strip
|
|
[System.Collections.ArrayList]$bus
|
|
[System.Collections.ArrayList]$button
|
|
[PSCustomObject]$vban
|
|
[Object]$command
|
|
[Object]$recorder
|
|
[Object]$profiles
|
|
|
|
# Constructor
|
|
Remote ([String]$kind_id) {
|
|
$this.kind = GetKind($kind_id)
|
|
$this.Setup()
|
|
}
|
|
|
|
[void] Setup() {
|
|
if (!(Setup_DLL)) {
|
|
Exit
|
|
}
|
|
Login -KIND $this.kind.name
|
|
$this.profiles = Get_Profiles($this.kind.name)
|
|
$this.strip = Make_Strips($this)
|
|
$this.bus = Make_Buses($this)
|
|
$this.button = Make_Buttons
|
|
$this.vban = Make_Vban($this)
|
|
$this.command = Make_Command
|
|
$this.recorder = Make_Recorder($this)
|
|
}
|
|
|
|
[string] ToString() {
|
|
return "Voicemeeter " + $this.kind.name.substring(0,1).toupper() + $this.kind.name.substring(1)
|
|
}
|
|
|
|
[void] Logout() {
|
|
Logout
|
|
}
|
|
|
|
[void] GetType() {
|
|
VmType
|
|
}
|
|
|
|
[String] GetVersion() {
|
|
return Version
|
|
}
|
|
|
|
[void] Set_Profile([String]$config) {
|
|
Set_Profile -DATA $this.profiles -CONF $config
|
|
}
|
|
|
|
[Single] Getter([String]$param) {
|
|
return Param_Get -PARAM $param
|
|
}
|
|
|
|
[String] Getter_String([String]$param) {
|
|
return Param_Get -PARAM $param -IS_STRING $true
|
|
}
|
|
|
|
[void] Setter([String]$param, [Object]$value) {
|
|
Param_Set -PARAM $param -VALUE $value
|
|
}
|
|
|
|
[void] Set_Multi([HashTable]$hash) {
|
|
Param_Set_Multi -HASH $hash
|
|
}
|
|
|
|
[void] SendText([String]$script) {
|
|
Set_By_Script -SCRIPT $script
|
|
}
|
|
|
|
[void] PDirty() { P_Dirty }
|
|
|
|
[void] MDirty() { M_Dirty }
|
|
}
|
|
|
|
Function Get-RemoteBasic {
|
|
return [Remote]::new('basic')
|
|
}
|
|
|
|
Function Get-RemoteBanana {
|
|
return [Remote]::new('banana')
|
|
}
|
|
|
|
Function Get-RemotePotato {
|
|
return [Remote]::new('potato')
|
|
}
|
|
|
|
Export-ModuleMember -Function Get-RemoteBasic, Get-RemoteBanana, Get-RemotePotato
|