forked from pichenettes/eurorack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmidi_handler.h
executable file
·248 lines (212 loc) · 6.61 KB
/
midi_handler.h
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
// Copyright 2012 Emilie Gillet.
//
// Author: Emilie Gillet ([email protected])
//
// This program 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
// (at your option) any later version.
// This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
//
// -----------------------------------------------------------------------------
#ifndef EDGES_MIDI_HANDLER_H_
#define EDGES_MIDI_HANDLER_H_
#include "avrlibx/avrlibx.h"
#include "edges/hardware_config.h"
#include "edges/midi.h"
#include "edges/note_stack.h"
#include "edges/settings.h"
#include "edges/voice_allocator.h"
namespace edges {
class MidiHandler : public midi::MidiDevice {
public:
MidiHandler() { }
static inline void Init() {
uint8_t num_poly = (midi_mode() == MIDI_MODE_3_1) ? 3 : 4;
for (uint8_t channel = 0; channel < kNumChannels; ++channel) {
stack_[channel].Init();
}
allocator_.Init();
allocator_.set_size(num_poly);
learning_ = false;
gate_ = 0;
memset(pitch_, -1, sizeof(pitch_));
}
static void ToggleMidiMode() {
settings.ToggleMidiMode();
Init();
}
static void DisableMidiCoupling() {
Init();
}
static void ResetAllControllers(uint8_t channel) {
channel = (channel - base_channel()) & 0xf;
pitch_bend_[channel] = 0;
}
static inline void NoteOn(uint8_t channel, uint8_t note, uint8_t velocity) {
channel = (channel - base_channel()) & 0xf;
if (velocity == 0) {
NoteOff(channel, note, 0);
}
switch (midi_mode()) {
case MIDI_MODE_MULTITIMBRAL:
stack_[channel].NoteOn(note, velocity);
pitch_[channel] = stack_[channel].most_recent_note().note << 7;
break;
case MIDI_MODE_POLYPHONIC:
channel = allocator_.NoteOn(note);
pitch_[channel] = note << 7;
break;
case MIDI_MODE_3_1:
if (channel == 0) {
channel = allocator_.NoteOn(note);
pitch_[channel] = note << 7;
} else {
channel = 3;
stack_[channel].NoteOn(note, velocity);
pitch_[channel] = stack_[channel].most_recent_note().note << 7;
}
break;
case MIDI_MODE_CHORDS:
stack_[0].NoteOn(note, velocity);
for (uint8_t i = 0; i < kNumChannels; ++i) {
pitch_[i] = stack_[0].most_recent_note().note << 7;
}
gate_ = 0xf;
break;
}
gate_ |= (1 << channel);
}
static inline void NoteOff(uint8_t channel, uint8_t note, uint8_t velocity) {
channel = (channel - base_channel()) & 0xf;
switch (midi_mode()) {
case MIDI_MODE_MULTITIMBRAL:
stack_[channel].NoteOff(note);
if (stack_[channel].size()) {
pitch_[channel] = stack_[channel].most_recent_note().note << 7;
}
(stack_[channel].size() != 0) ? gate_ |= (1 << channel) : gate_ &= ~(1 << channel);
break;
case MIDI_MODE_POLYPHONIC:
channel = allocator_.NoteOff(note);
if (channel != 0xff) {
gate_ &= ~(1 << channel);
}
break;
case MIDI_MODE_3_1:
if (channel == 0) {
channel = allocator_.NoteOff(note);
if (channel != 0xff) {
gate_ &= ~(1 << channel);
}
} else {
channel = 3;
stack_[channel].NoteOff(note);
if (stack_[channel].size()) {
pitch_[channel] = stack_[channel].most_recent_note().note << 7;
}
(stack_[channel].size() != 0) ? gate_ |= (1 << channel) : gate_ &= ~(1 << channel);
}
break;
case MIDI_MODE_CHORDS:
stack_[0].NoteOff(note);
for (uint8_t i = 0; i < kNumChannels; ++i) {
if (stack_[0].size()) {
pitch_[channel] = stack_[0].most_recent_note().note << 7;
}
}
(stack_[0].size() != 0) ? gate_ = 0xf : gate_ = 0;
break;
}
}
static inline void PitchBend(uint8_t channel, uint16_t value) {
channel = (channel - base_channel()) & 0xf;
int16_t v = value;
v -= 8192;
v >>= 5;
switch (midi_mode()) {
case MIDI_MODE_MULTITIMBRAL:
pitch_bend_[channel] = v;
break;
case MIDI_MODE_POLYPHONIC:
case MIDI_MODE_CHORDS:
for (uint8_t i = 0; i < kNumChannels; ++i) {
pitch_bend_[i] = v;
}
break;
case MIDI_MODE_3_1:
if (channel == 0) {
for (uint8_t i = 0; i < 3; ++i) {
pitch_bend_[i] = v;
}
} else {
pitch_bend_[3] = v;
}
break;
}
}
static inline void RawMidiData(
uint8_t status,
uint8_t* data,
uint8_t data_size,
uint8_t accepted_channel) {
if (learning_ && (status & 0xf0) == 0x90) {
settings.set_midi_channel(status & 0xf);
learning_ = false;
}
}
static uint8_t CheckChannel(uint8_t channel) {
switch (midi_mode()) {
case MIDI_MODE_MULTITIMBRAL:
return ((channel - base_channel()) & 0xf) < kNumChannels;
case MIDI_MODE_POLYPHONIC:
case MIDI_MODE_CHORDS:
return channel == base_channel();
case MIDI_MODE_3_1:
return ((channel - base_channel()) & 0xf) < 2;
}
}
static void Learn() {
learning_ = true;
}
static inline bool learning() { return learning_; }
static inline uint8_t gate() { return gate_; }
static int16_t shift_pitch(uint8_t channel, int16_t pitch) {
if (pitch_[channel] == -1) {
return pitch;
} else {
pitch -= (60 << 7);
pitch += pitch_[channel];
pitch += pitch_bend_[channel];
if (pitch < 0) {
pitch = 0;
} else if (pitch > 16383) {
pitch = 16383;
}
return pitch;
}
return pitch;
}
static inline uint8_t base_channel() {
return settings.midi_channel();
}
static inline MidiMode midi_mode() {
return static_cast<MidiMode>(settings.midi_mode());
}
private:
static bool learning_;
static uint8_t gate_;
static int16_t pitch_[kNumChannels];
static int16_t pitch_bend_[kNumChannels];
static NoteStack<10> stack_[kNumChannels];
static VoiceAllocator allocator_;
DISALLOW_COPY_AND_ASSIGN(MidiHandler);
};
extern MidiHandler midi_handler;
} // namespace edges
#endif // EDGES_MIDI_HANDLER_H_