mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 13:20:47 +00:00
RunVoicemeeter function added
All CAPIErrors are now logged and rethrown
This commit is contained in:
parent
a40adf27be
commit
a78cdf9a99
175
lib/base.ps1
175
lib/base.ps1
@ -7,36 +7,22 @@ function Login {
|
|||||||
)
|
)
|
||||||
try {
|
try {
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_Login()
|
$retval = [int][Voicemeeter.Remote]::VBVMR_Login()
|
||||||
if ($retval -ne 0) {
|
if ($retval -notin @(0, 1, -2)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_Login")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch [CAPIError] {
|
||||||
|
$_.Exception.ToString() | Write-Warning
|
||||||
|
throw
|
||||||
|
}
|
||||||
|
|
||||||
switch ($retval) {
|
switch ($retval) {
|
||||||
1 {
|
1 {
|
||||||
New-Variable -Name vmExe -Value 0
|
RunVoicemeeter -kindId $kindId
|
||||||
|
|
||||||
if ( $kindId -eq "basic" ) { $vmExe = 1 }
|
|
||||||
elseif ( $kindId -eq "banana" ) { $vmExe = 2 }
|
|
||||||
elseif ( $kindId -eq "potato" ) {
|
|
||||||
$vmExe = $(if ([Environment]::Is64BitOperatingSystem) { 6 } else { 3 })
|
|
||||||
}
|
|
||||||
|
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_RunVoicemeeter([int64]$vmExe)
|
|
||||||
if (-not $retval) {
|
|
||||||
"Voicemeeter Engine running but GUI not launched. Launching GUI now." | Write-Verbose
|
|
||||||
Start-Sleep -s 1
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
throw [CAPIError]::new($retval, $MyInvocation.MyCommand)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
-2 {
|
-2 {
|
||||||
throw [LoginError]::new('Login may only be called once per session')
|
throw [LoginError]::new("Login may only be called once per session. Fatal error... exiting.")
|
||||||
}
|
}
|
||||||
default { throw [CAPIError]::new($retval, $MyInvocation.MyCommand) }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch [LoginError] {
|
|
||||||
"$($_.Exception.ErrorMessage()). Fatal error, exiting..." | Write-Warning
|
|
||||||
exit -2
|
|
||||||
}
|
}
|
||||||
|
|
||||||
while (P_Dirty -or M_Dirty) { Start-Sleep -m 1 }
|
while (P_Dirty -or M_Dirty) { Start-Sleep -m 1 }
|
||||||
@ -45,22 +31,83 @@ function Login {
|
|||||||
|
|
||||||
function Logout {
|
function Logout {
|
||||||
Start-Sleep -m 20
|
Start-Sleep -m 20
|
||||||
|
try {
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_Logout()
|
$retval = [int][Voicemeeter.Remote]::VBVMR_Logout()
|
||||||
|
if ($retval -notin @(0)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_Logout")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch [CAPIError] {
|
||||||
|
$_.Exception.ToString() | Write-Warning
|
||||||
|
throw
|
||||||
|
}
|
||||||
if ($retval -eq 0) { "Sucessfully logged out" | Write-Verbose }
|
if ($retval -eq 0) { "Sucessfully logged out" | Write-Verbose }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function RunVoicemeeter {
|
||||||
|
param(
|
||||||
|
[string]$kindId
|
||||||
|
)
|
||||||
|
$kinds = @{
|
||||||
|
"basic" = 1
|
||||||
|
"banana" = 2
|
||||||
|
"potato" = $(if ([Environment]::Is64BitOperatingSystem) { 6 } else { 3 })
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
$retval = [int][Voicemeeter.Remote]::VBVMR_RunVoicemeeter([int64]$kinds[$kindId])
|
||||||
|
if ($retval -notin @(0)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_RunVoicemeeter")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch [CAPIError] {
|
||||||
|
$_.Exception.ToString() | Write-Warning
|
||||||
|
throw
|
||||||
|
}
|
||||||
|
"Voicemeeter Engine running but GUI not launched. Launching GUI now." | Write-Verbose
|
||||||
|
Start-Sleep -s 1
|
||||||
|
}
|
||||||
|
|
||||||
function P_Dirty {
|
function P_Dirty {
|
||||||
[bool][Voicemeeter.Remote]::VBVMR_IsParametersDirty()
|
try {
|
||||||
|
$retval = [Voicemeeter.Remote]::VBVMR_IsParametersDirty()
|
||||||
|
if ($retval -notin @(0, 1)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_RunVoicemeeter")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch [CAPIError] {
|
||||||
|
$_.Exception.ToString() | Write-Warning
|
||||||
|
throw
|
||||||
|
}
|
||||||
|
[bool]$retval
|
||||||
}
|
}
|
||||||
|
|
||||||
function M_Dirty {
|
function M_Dirty {
|
||||||
[bool][Voicemeeter.Remote]::VBVMR_MacroButton_IsDirty()
|
try {
|
||||||
|
$retval = [Voicemeeter.Remote]::VBVMR_MacroButton_IsDirty()
|
||||||
|
if ($retval -notin @(0, 1)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_RunVoicemeeter")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch [CAPIError] {
|
||||||
|
$_.Exception.ToString() | Write-Warning
|
||||||
|
throw
|
||||||
|
}
|
||||||
|
[bool]$retval
|
||||||
}
|
}
|
||||||
|
|
||||||
function VmType {
|
function VmType {
|
||||||
New-Variable -Name ptr -Value 0
|
New-Variable -Name ptr -Value 0
|
||||||
|
try {
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_GetVoicemeeterType([ref]$ptr)
|
$retval = [int][Voicemeeter.Remote]::VBVMR_GetVoicemeeterType([ref]$ptr)
|
||||||
if ($retval) { throw [CAPIError]::new($retval, $MyInvocation.MyCommand) }
|
if ($retval -notin @(0)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_GetVoicemeeterType")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch [CAPIError] {
|
||||||
|
$_.Exception.ToString() | Write-Warning
|
||||||
|
throw
|
||||||
|
}
|
||||||
switch ($ptr) {
|
switch ($ptr) {
|
||||||
1 { return "basic" }
|
1 { return "basic" }
|
||||||
2 { return "banana" }
|
2 { return "banana" }
|
||||||
@ -70,8 +117,16 @@ function VmType {
|
|||||||
|
|
||||||
function VmVersion {
|
function VmVersion {
|
||||||
New-Variable -Name ptr -Value 0
|
New-Variable -Name ptr -Value 0
|
||||||
|
try {
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_GetVoicemeeterVersion([ref]$ptr)
|
$retval = [int][Voicemeeter.Remote]::VBVMR_GetVoicemeeterVersion([ref]$ptr)
|
||||||
if ($retval) { throw [CAPIError]::new($retval, $MyInvocation.MyCommand) }
|
if ($retval -notin @(0)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_GetVoicemeeterVersion")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch [CAPIError] {
|
||||||
|
$_.Exception.ToString() | Write-Warning
|
||||||
|
throw
|
||||||
|
}
|
||||||
$v1 = ($ptr -band 0xFF000000) -shr 24
|
$v1 = ($ptr -band 0xFF000000) -shr 24
|
||||||
$v2 = ($ptr -band 0x00FF0000) -shr 16
|
$v2 = ($ptr -band 0x00FF0000) -shr 16
|
||||||
$v3 = ($ptr -band 0x0000FF00) -shr 8
|
$v3 = ($ptr -band 0x0000FF00) -shr 8
|
||||||
@ -84,31 +139,31 @@ function Param_Get {
|
|||||||
param(
|
param(
|
||||||
[string]$PARAM, [bool]$IS_STRING = $false
|
[string]$PARAM, [bool]$IS_STRING = $false
|
||||||
)
|
)
|
||||||
Start-Sleep -m 50
|
Start-Sleep -m 20
|
||||||
while (P_Dirty) { Start-Sleep -m 1 }
|
while (P_Dirty) { Start-Sleep -m 1 }
|
||||||
|
|
||||||
|
try {
|
||||||
if ($IS_STRING) {
|
if ($IS_STRING) {
|
||||||
$BYTES = [System.Byte[]]::new(512)
|
$BYTES = [System.Byte[]]::new(512)
|
||||||
try {
|
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_GetParameterStringA($PARAM, $BYTES)
|
$retval = [int][Voicemeeter.Remote]::VBVMR_GetParameterStringA($PARAM, $BYTES)
|
||||||
if ($retval) { throw [CAPIError]::new($retval, $MyInvocation.MyCommand) }
|
if ($retval -notin @(0)) {
|
||||||
}
|
throw [CAPIError]::new($retval, "VBVMR_GetParameterStringA")
|
||||||
catch [CAPIError] {
|
|
||||||
Write-Warning $_.Exception.ErrorMessage()
|
|
||||||
}
|
}
|
||||||
[System.Text.Encoding]::ASCII.GetString($BYTES).Trim([char]0)
|
[System.Text.Encoding]::ASCII.GetString($BYTES).Trim([char]0)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
New-Variable -Name ptr -Value 0.0
|
New-Variable -Name ptr -Value 0.0
|
||||||
try {
|
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_GetParameterFloat($PARAM, [ref]$ptr)
|
$retval = [int][Voicemeeter.Remote]::VBVMR_GetParameterFloat($PARAM, [ref]$ptr)
|
||||||
if ($retval) { throw [CAPIError]::new($retval, $MyInvocation.MyCommand) }
|
if ($retval -notin @(0)) {
|
||||||
}
|
throw [CAPIError]::new($retval, "VBVMR_GetParameterFloat")
|
||||||
catch [CAPIError] {
|
|
||||||
Write-Warning $_.Exception.ErrorMessage()
|
|
||||||
}
|
}
|
||||||
[single]$ptr
|
[single]$ptr
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
catch [CAPIError] {
|
||||||
|
$_.Exception.ToString() | Write-Warning
|
||||||
|
throw
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function Param_Set {
|
function Param_Set {
|
||||||
@ -118,14 +173,20 @@ function Param_Set {
|
|||||||
try {
|
try {
|
||||||
if ($VALUE -is [string]) {
|
if ($VALUE -is [string]) {
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_SetParameterStringA($PARAM, $VALUE)
|
$retval = [int][Voicemeeter.Remote]::VBVMR_SetParameterStringA($PARAM, $VALUE)
|
||||||
|
if ($retval -notin @(0)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_SetParameterStringA")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_SetParameterFloat($PARAM, $VALUE)
|
$retval = [int][Voicemeeter.Remote]::VBVMR_SetParameterFloat($PARAM, $VALUE)
|
||||||
|
if ($retval -notin @(0)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_SetParameterFloat")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if ($retval) { throw [CAPIError]::new($retval, $MyInvocation.MyCommand) }
|
|
||||||
}
|
}
|
||||||
catch [CAPIError] {
|
catch [CAPIError] {
|
||||||
Write-Warning $_.Exception.ErrorMessage()
|
$_.Exception.ToString() | Write-Warning
|
||||||
|
throw
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -135,10 +196,13 @@ function MB_Set {
|
|||||||
)
|
)
|
||||||
try {
|
try {
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_MacroButton_SetStatus($ID, $SET, $MODE)
|
$retval = [int][Voicemeeter.Remote]::VBVMR_MacroButton_SetStatus($ID, $SET, $MODE)
|
||||||
if ($retval) { throw [CAPIError]::new($retval, $MyInvocation.MyCommand) }
|
if ($retval -notin @(0)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_MacroButton_SetStatus")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch [CAPIError] {
|
catch [CAPIError] {
|
||||||
Write-Warning $_.Exception.ErrorMessage()
|
$_.Exception.ToString() | Write-Warning
|
||||||
|
throw
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -146,16 +210,19 @@ function MB_Get {
|
|||||||
param(
|
param(
|
||||||
[int64]$ID, [int64]$MODE
|
[int64]$ID, [int64]$MODE
|
||||||
)
|
)
|
||||||
Start-Sleep -m 50
|
Start-Sleep -m 30
|
||||||
while (M_Dirty) { Start-Sleep -m 1 }
|
while (M_Dirty) { Start-Sleep -m 1 }
|
||||||
|
|
||||||
New-Variable -Name ptr -Value 0.0
|
New-Variable -Name ptr -Value 0.0
|
||||||
try {
|
try {
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_MacroButton_GetStatus($ID, [ref]$ptr, $MODE)
|
$retval = [int][Voicemeeter.Remote]::VBVMR_MacroButton_GetStatus($ID, [ref]$ptr, $MODE)
|
||||||
if ($retval) { throw [CAPIError]::new($retval, $MyInvocation.MyCommand) }
|
if ($retval -notin @(0)) {
|
||||||
|
throw [CAPIError]::new($retval, $MyInvocation.MyCommand)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch [CAPIError] {
|
catch [CAPIError] {
|
||||||
Write-Warning $_.Exception.ErrorMessage()
|
Write-Warning $_.Exception.ToString()
|
||||||
|
throw
|
||||||
}
|
}
|
||||||
[int]$ptr
|
[int]$ptr
|
||||||
}
|
}
|
||||||
@ -189,10 +256,13 @@ function Set_By_Script {
|
|||||||
)
|
)
|
||||||
try {
|
try {
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_SetParameters($script)
|
$retval = [int][Voicemeeter.Remote]::VBVMR_SetParameters($script)
|
||||||
if ($retval) { throw [CAPIError]::new($retval, $MyInvocation.MyCommand) }
|
if ($retval -notin @(0)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_SetParameters")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch [CAPIError] {
|
catch [CAPIError] {
|
||||||
Write-Warning $_.Exception.ErrorMessage()
|
Write-Warning $_.Exception.ToString()
|
||||||
|
throw
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -203,10 +273,13 @@ function Get_Level {
|
|||||||
New-Variable -Name ptr -Value 0.0
|
New-Variable -Name ptr -Value 0.0
|
||||||
try {
|
try {
|
||||||
$retval = [int][Voicemeeter.Remote]::VBVMR_GetLevel($MODE, $INDEX, [ref]$ptr)
|
$retval = [int][Voicemeeter.Remote]::VBVMR_GetLevel($MODE, $INDEX, [ref]$ptr)
|
||||||
if ($retval) { throw [CAPIError]::new($retval, $MyInvocation.MyCommand) }
|
if ($retval -notin @(0)) {
|
||||||
|
throw [CAPIError]::new($retval, "VBVMR_GetLevel")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch [CAPIError] {
|
catch [CAPIError] {
|
||||||
Write-Warning $_.Exception.ErrorMessage()
|
Write-Warning $_.Exception.ToString()
|
||||||
|
throw
|
||||||
}
|
}
|
||||||
[float]$ptr
|
[float]$ptr
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user