1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
//
// dolmetschctl
//
//
// Copyright (C) 2019 Christian Pointner <equinox@spreadspace.org>
//
// This file is part of dolmetschctl.
//
// dolmetschctl is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// any later version.
//
// dolmetschctl is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with dolmetschctl. If not, see <http://www.gnu.org/licenses/>.
//
package mixer
import (
"errors"
"strings"
"github.com/scgolang/midi"
)
type Channel uint8
type FaderLevel uint8
type Mixer struct {
DevIn *midi.Device
DevOut *midi.Device
}
// TODO: make this confgurabel
const (
CC_MUTE = byte(0xB1)
CC_FADER = byte(0xB0)
FaderLevelMax = FaderLevel(0x7F)
FaderLevel0db = FaderLevel(0x60)
FaderLevelOff = FaderLevel(0x00)
)
func openDevice(devices []*midi.Device, prefix string) (d *midi.Device, err error) {
for _, device := range devices {
if strings.HasPrefix(device.Name, prefix) {
d = device
}
}
if d == nil {
return nil, errors.New("could not find device with prefix " + prefix)
}
return d, d.Open()
}
func NewMixer(c Config) (*Mixer, error) {
devices, err := midi.Devices()
if err != nil {
return nil, err
}
m := &Mixer{}
if m.DevIn, err = openDevice(devices, c.DevIn); err != nil {
return nil, err
}
if m.DevOut, err = openDevice(devices, c.DevOut); err != nil {
return nil, err
}
return m, nil
}
func (m *Mixer) Init() error {
// TODO: sync state
return nil
}
func (m *Mixer) Shutdown() error {
if m.DevIn != nil {
m.DevIn.Close()
}
if m.DevOut != nil {
m.DevOut.Close()
}
return nil
}
func (m *Mixer) sendMute(channel byte, value byte) error {
n, err := m.DevOut.Write([]byte{CC_MUTE, channel, value})
if err != nil {
return err
}
if n != 3 {
return errors.New("sending mute command failed.")
}
return nil
}
func (m *Mixer) Mute(ch Channel) error {
return m.sendMute(byte(ch), 0x7F)
}
func (m *Mixer) UnMute(ch Channel) error {
return m.sendMute(byte(ch), 0x00)
}
func (m *Mixer) SetLevel(ch Channel, level FaderLevel) error {
if level > FaderLevelMax {
level = FaderLevelMax
}
n, err := m.DevOut.Write([]byte{CC_FADER, byte(ch), byte(level)})
if err != nil {
return err
}
if n != 3 {
return errors.New("setting fader level failed.")
}
return nil
}
|