forked from rogerlinndesign/linnstrument-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ls_channelbucket.h
216 lines (175 loc) · 7.46 KB
/
ls_channelbucket.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
/********************** ls_channelbucket: LinnStrument ChannelBucket class ************************
This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/
or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
***************************************************************************************************
Handles the handing out of MIDI channels from a bucket of allowed channel numbers.
The available channels are added to the bucket in the beginning.
When a note needs a new channel, it just takes it. The channel will move to the bottom of the
bucket and will be reused when all the other channels have been taken also. This makes it
possible for the same channel number to be in use by different note, depending on the number of
channels that were added to the bucket and the polyphony of the notes that are being played.
At the same time, the bucket keeps track of which channels are taken and which channels are
released and free from any touched. This is achieved by dividing the bucket in two sections, an
upper section with all the released channels and a bottom section with all the channels that are
already taken.
When a note is released, it should release its channel. If the channel is still in use by another
note since the polyphony was exceeded, the channel will move to the bottom of the taken section.
If no other notes are using the channel, the channel will be moved to the bottom of the released
section, somewhere in the middle of the whole bucket.
This whole approach ensures that channels are reused as late as possible, while attempting to
prevent handing out the same channel for multiple notes. Postponing the reuse of a channel as much
as possible is important for sounds that have long releases.
**************************************************************************************************/
#ifndef CHANNELBUCKET_H_
#define CHANNELBUCKET_H_
#include <Arduino.h>
class ChannelBucket {
public:
ChannelBucket() {
clear();
}
~ChannelBucket() {}
void add(byte channel) {
// we can't add a MIDI channel that exceeds 16
if (channel > 16) return;
// offset the channel for a 0-based array
channel -= 1;
// don't add a channel several times
if (next_[channel] != -1) return;
// this is the first channel to be added to the bucket
if (-1 == top_) {
top_ = channel;
previous_[channel] = channel;
next_[channel] = channel;
taken_[channel] = 0;
bottomReleased_ = channel;
}
// add the channel to right after the current bottom-most released channel
// and make the new channel the bottom-most released one
else {
previous_[channel] = bottomReleased_;
previous_[next_[bottomReleased_]] = channel;
next_[channel] = next_[bottomReleased_];
next_[bottomReleased_] = channel;
taken_[channel] = 0;
bottomReleased_ = channel;
}
}
byte take() {
// return an invalid channel if none have been added
if (-1 == top_) return 0;
// get the channel at the top of the bucket
byte channel = top_;
// sink the channel to the bottom of the entire bucket, also crossing
// the release/taken marker. Essentially the channel goes to the bottom
// of the taken section. Since the channel was already at the top of the
// bucket, this is very simply done by adjusting the top marker to the
// next channel available
top_ = next_[channel];
// indicate that the channel was taken once more
taken_[channel]++;
// if this channel was the last of the released section, indicate that
// the released marker has become invalid
if (channel == bottomReleased_) {
bottomReleased_ = -1;
}
// adjust for 1-base channel numbers
return channel+1;
}
void release(byte channel) {
// we can't release a MIDI channel that exceeds 16, nor can we work with an empty bucket
// we expect this channel to also be already in the bucket
if (channel > 16 || -1 == top_ || -1 == next_[channel-1]) return;
// offset the channel for a 0-based array
channel -= 1;
// indicate that the channel was taken one less time
taken_[channel]--;
// if the channel is still taken, ensure it goes to the bottom of the taken section
if (taken_[channel] > 0) {
extremize(channel);
top_ = next_[channel];
}
// if this release was the one using the channel, ensure that the channel goes at the bottom of the released section
else {
// if the released section doesn't exist anymore (all channels were taken),
// put the channel at the extremes of the bucket and mark it as being the new
// top channel
if (bottomReleased_ == -1) {
extremize(channel);
top_ = channel;
}
// put the channel at the bottom of the released section
else {
// however, if the channel happens to be at the top of the
// taken section (right after the released section), we don't need to do anything
// besides readjusting the marker of the released section
if (next_[bottomReleased_] != channel) {
// determine the edges of both the released and the taken sections
int releasedEdge = bottomReleased_;
int takenEdge = next_[bottomReleased_];
// extract the channel from the bucket so that nothing is pointing
// towards it anymore
extract(channel);
// re-insert the channel between the current released and taken sections
previous_[channel] = releasedEdge;
next_[releasedEdge] = channel;
previous_[takenEdge] = channel;
next_[channel] = takenEdge;
}
}
// this channel is the last released one now
bottomReleased_ = channel;
}
}
// remove all channels from the bucket
void clear() {
top_ = -1;
for (int ch = 0; ch < 16; ++ch) {
previous_[ch] = -1;
next_[ch] = -1;
taken_[ch] = 0;
}
}
private:
void extract(byte channel) {
if (next_[channel] != -1) {
next_[previous_[channel]] = next_[channel];
previous_[next_[channel]] = previous_[channel];
previous_[channel] = -1;
next_[channel] = -1;
}
}
void extremize(byte channel) {
int bottom = previous_[top_];
if (bottom == channel) {
bottom = previous_[channel];
}
int top = top_;
if (top == channel) {
top = next_[channel];
}
extract(channel);
previous_[channel] = bottom;
next_[bottom] = channel;
previous_[top] = channel;
next_[channel] = top;
}
void debugBucket() {
Serial.print("top="); Serial.print(top_);
Serial.print(" bottomReleased="); Serial.print(bottomReleased_);
for (int ch = 0; ch < 16; ++ch) {
Serial.print("\nchannel="); Serial.print(ch);
Serial.print(" previous="); Serial.print(previous_[ch]);
Serial.print(" next="); Serial.print(next_[ch]);
Serial.print(" taken="); Serial.print(taken_[ch]);
}
Serial.print("\n");
}
int top_; // the channel number of the top one in the bucket
int previous_[16]; // the channel number of the previous channel in the bucket for each individual channel
int next_[16]; // the channel number of the next channel in the bucket for each individual channel
byte taken_[16]; // counts how many times each channel is still taken
int bottomReleased_; // marks the bottom of the released section
};
#endif