2022-06-23 14:03:00 +01:00
|
|
|
package voicemeeter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2022-07-10 23:08:14 +01:00
|
|
|
// iRemote provides an interface between higher methods and lower functions
|
|
|
|
// expected to be embedded
|
2022-06-23 14:03:00 +01:00
|
|
|
type iRemote struct {
|
|
|
|
_identifier string
|
|
|
|
index int
|
|
|
|
}
|
|
|
|
|
2022-07-10 23:08:14 +01:00
|
|
|
// identifier returns a string identifier
|
2022-06-28 14:34:03 +01:00
|
|
|
func (ir *iRemote) identifier() string {
|
|
|
|
return ir._identifier
|
2022-06-23 14:03:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// getter_bool returns the value of a boolean parameter
|
2022-06-28 14:34:03 +01:00
|
|
|
func (ir *iRemote) getter_bool(p string) bool {
|
|
|
|
param := fmt.Sprintf("%s.%s", ir.identifier(), p)
|
2022-06-23 14:03:00 +01:00
|
|
|
return getParameterFloat(param) == 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// setter_bool sets the value of a boolean parameter
|
2022-06-28 14:34:03 +01:00
|
|
|
func (ir *iRemote) setter_bool(p string, v bool) {
|
|
|
|
param := fmt.Sprintf("%s.%s", ir.identifier(), p)
|
2022-06-23 14:03:00 +01:00
|
|
|
var value float32
|
|
|
|
if v {
|
|
|
|
value = 1
|
|
|
|
} else {
|
|
|
|
value = 0
|
|
|
|
}
|
|
|
|
setParameterFloat(param, float32(value))
|
|
|
|
}
|
|
|
|
|
|
|
|
// getter_int returns the value of an int parameter p
|
2022-06-28 14:34:03 +01:00
|
|
|
func (ir *iRemote) getter_int(p string) int {
|
|
|
|
param := fmt.Sprintf("%s.%s", ir.identifier(), p)
|
2022-06-23 14:03:00 +01:00
|
|
|
return int(getParameterFloat(param))
|
|
|
|
}
|
|
|
|
|
|
|
|
// setter_int sets the value v of an int parameter p
|
2022-06-28 14:34:03 +01:00
|
|
|
func (ir *iRemote) setter_int(p string, v int) {
|
|
|
|
param := fmt.Sprintf("%s.%s", ir.identifier(), p)
|
2022-06-23 14:03:00 +01:00
|
|
|
setParameterFloat(param, float32(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
// getter_float returns the value of an int parameter p
|
2022-06-28 14:34:03 +01:00
|
|
|
func (ir *iRemote) getter_float(p string) float64 {
|
|
|
|
param := fmt.Sprintf("%s.%s", ir.identifier(), p)
|
2022-06-23 14:03:00 +01:00
|
|
|
return getParameterFloat(param)
|
|
|
|
}
|
|
|
|
|
|
|
|
// setter_float sets the value v of an int parameter p
|
2022-06-28 14:34:03 +01:00
|
|
|
func (ir *iRemote) setter_float(p string, v float32) {
|
|
|
|
param := fmt.Sprintf("%s.%s", ir.identifier(), p)
|
2022-06-23 14:03:00 +01:00
|
|
|
setParameterFloat(param, float32(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
// getter_string returns the value of a string parameter p
|
2022-06-28 14:34:03 +01:00
|
|
|
func (ir *iRemote) getter_string(p string) string {
|
|
|
|
param := fmt.Sprintf("%s.%s", ir.identifier(), p)
|
2022-06-23 14:03:00 +01:00
|
|
|
return getParameterString(param)
|
|
|
|
}
|
|
|
|
|
|
|
|
// setter_string sets the value v of a string parameter p
|
2022-06-28 14:34:03 +01:00
|
|
|
func (ir *iRemote) setter_string(p, v string) {
|
|
|
|
param := fmt.Sprintf("%s.%s", ir.identifier(), p)
|
2022-06-23 14:03:00 +01:00
|
|
|
setParameterString(param, v)
|
|
|
|
}
|