mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2024-11-15 17:40:51 +00:00
1efac19b12
CHANGELOG first update pre-commit updated to look in root of repo. version retraction added to go.mod README updated to reflect changes
65 lines
1.3 KiB
Go
65 lines
1.3 KiB
Go
package voicemeeter
|
|
|
|
import "fmt"
|
|
|
|
// button represents a single macrobuttton
|
|
type button struct {
|
|
index int
|
|
}
|
|
|
|
// newButton returns a button type
|
|
func newButton(i int) button {
|
|
return button{i}
|
|
}
|
|
|
|
// getter returns the value of a macrobutton parameter
|
|
func (m *button) getter(mode int) bool {
|
|
return getMacroStatus(m.index, mode) == 1
|
|
}
|
|
|
|
// setter sets the value of a macrobutton parameter
|
|
func (m *button) setter(v bool, mode int) {
|
|
var value int
|
|
if v {
|
|
value = 1
|
|
} else {
|
|
value = 0
|
|
}
|
|
setMacroStatus(m.index, value, mode)
|
|
}
|
|
|
|
// String implements the fmt.stringer interface
|
|
func (m *button) String() string {
|
|
return fmt.Sprintf("MacroButton%d", m.index)
|
|
}
|
|
|
|
// GetState returns the value of the State parameter
|
|
func (m *button) GetState() bool {
|
|
return m.getter(1)
|
|
}
|
|
|
|
// SetState sets the value of the State parameter
|
|
func (m *button) SetState(val bool) {
|
|
m.setter(val, 1)
|
|
}
|
|
|
|
// GetStateOnly returns the value of the StateOnly parameter
|
|
func (m *button) GetStateOnly() bool {
|
|
return m.getter(2)
|
|
}
|
|
|
|
// SetStateOnly sets the value of the StateOnly parameter
|
|
func (m *button) SetStateOnly(val bool) {
|
|
m.setter(val, 2)
|
|
}
|
|
|
|
// GetTrigger returns the value of the Trigger parameter
|
|
func (m *button) GetTrigger() bool {
|
|
return m.getter(2)
|
|
}
|
|
|
|
// SetTrigger returns the value of the Trigger parameter
|
|
func (m *button) SetTrigger(val bool) {
|
|
m.setter(val, 2)
|
|
}
|