-
Notifications
You must be signed in to change notification settings - Fork 20
/
chord.c
260 lines (231 loc) · 8.1 KB
/
chord.c
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
249
250
251
252
253
254
255
256
257
258
259
260
MFD_FILTER(midichord)
#ifdef MX_TTF
mflt:midichord
TTF_DEFAULTDEF("MIDI Chord", "MIDI Chord")
, TTF_IPORT(0, "channelf", "Filter Channel", 0, 16, 0,
PORTENUMZ("Any")
DOC_CHANF)
, TTF_IPORT(1, "scale", "Scale", 0, 11, 0,
lv2:portProperty lv2:integer; lv2:portProperty lv2:enumeration;
lv2:scalePoint [ rdfs:label "C Major" ; rdf:value 0 ] ;
lv2:scalePoint [ rdfs:label "C#/Db Major" ; rdf:value 1 ] ;
lv2:scalePoint [ rdfs:label "D Major" ; rdf:value 2 ] ;
lv2:scalePoint [ rdfs:label "D#/Eb Major" ; rdf:value 3 ] ;
lv2:scalePoint [ rdfs:label "E Major" ; rdf:value 4 ] ;
lv2:scalePoint [ rdfs:label "F Major" ; rdf:value 5 ] ;
lv2:scalePoint [ rdfs:label "F#/Gb Major" ; rdf:value 6 ] ;
lv2:scalePoint [ rdfs:label "G Major" ; rdf:value 7 ] ;
lv2:scalePoint [ rdfs:label "G#/Ab Major" ; rdf:value 8 ] ;
lv2:scalePoint [ rdfs:label "A Major" ; rdf:value 9 ] ;
lv2:scalePoint [ rdfs:label "A#/Bb Major" ; rdf:value 10 ] ;
lv2:scalePoint [ rdfs:label "B Major" ; rdf:value 11 ] ;
rdfs:comment "Scale for the Chords."
)
, TTF_IPORT(2, "hold", "Hold Chord", 0, 11, 0,
lv2:portProperty lv2:integer; lv2:portProperty lv2:enumeration;
lv2:scalePoint [ rdfs:label "Off" ; rdf:value 0 ] ;
lv2:scalePoint [ rdfs:label "On" ; rdf:value 1 ] ;
rdfs:comment "When enabled, parameter changes apply to new chords only."
)
, TTF_IPORTTOGGLE( 3, "c1", "prime", 1)
, TTF_IPORTTOGGLE( 4, "c2", "2nd", 0)
, TTF_IPORTTOGGLE( 5, "c3", "3rd", 1)
, TTF_IPORTTOGGLE( 6, "c4", "4th", 0)
, TTF_IPORTTOGGLE( 7, "c5", "5th", 1)
, TTF_IPORTTOGGLE( 8, "c6", "6th", 0)
, TTF_IPORTTOGGLE( 9, "c7", "7th", 0)
, TTF_IPORTTOGGLE(10, "c8", "octave", 1)
, TTF_IPORTTOGGLE(11, "c9", "9th", 0)
, TTF_IPORTTOGGLE(12, "c11", "11th", 0)
, TTF_IPORTTOGGLE(13, "c13", "13th", 0)
, TTF_IPORTTOGGLE(14, "_8", "bass", 0)
; rdfs:comment "Harmonizer - make chords from single (fundamental) note in a given musical scale. The scale as well as intervals can be automated freely (currently held chords will change). Note-ons are latched, for multiple/combined chords only single note-on/off will be triggered for the duration of the combined chords. If a off-scale note is given, it will be passed through - no chord is allocated. Note: Combine this effect with the 'MIDI Enforce Scale' filter to weed them out." ;
.
#elif defined MX_CODE
static inline int filter_midichord_isonscale(int base) {
const short major_scale[12] = {
1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1
};
return major_scale[base];
}
static inline int filter_midichord_halftoneoffset(int base, int interval) {
const short chord_scale[12][12] = {
/* 1 2 3 4 5 6 7 OC 9 11 13 BS */
{0, 2, 4, 5, 7, 9, 11, 12, 14, 17, 21, -12 }, // I
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{0, 2, 3, 5, 7, 9, 10, 12, 14, 17, 21, -12 }, // II
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{0, 1, 3, 5, 7, 8, 10, 12, 13, 17, 20, -12 }, // III
{0, 2, 4, 6, 7, 9, 11, 12, 14, 18, 21, -12 }, // IV
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{0, 2, 4, 5, 7, 9, 10, 12, 14, 17, 21, -12 }, // V
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{0, 2, 3, 5, 7, 8, 10, 12, 14, 17, 20, -12 }, // VI
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{0, 1, 3, 5, 6, 8, 10, 12, 13, 16, 19, -12 }, // VII
};
return chord_scale[base][interval];
}
static inline void filter_midichord_noteon(MidiFilter* self, uint32_t tme, uint8_t chn, int note, uint8_t vel) {
uint8_t buf[3];
if (!midi_valid(note)) return;
buf[0] = MIDI_NOTEON | chn;
buf[1] = note;
buf[2] = vel;
self->memCS[chn][note]++;
if (self->memCS[chn][note] == 1) {
forge_midimessage(self, tme, buf, 3);
}
}
static inline void filter_midichord_noteoff(MidiFilter* self, uint32_t tme, uint8_t chn, int note, uint8_t vel) {
uint8_t buf[3];
if (!midi_valid(note)) return;
buf[0] = MIDI_NOTEOFF | chn;
buf[1] = note;
buf[2] = vel;
if (self->memCS[chn][note] > 0) {
self->memCS[chn][note]--;
if (self->memCS[chn][note] == 0)
forge_midimessage(self, tme, buf, 3);
}
}
static inline void filter_midichord_panic(MidiFilter* self, const uint8_t c, const uint32_t tme) {
int k;
for (k=0; k < 127; ++k) {
if (self->memCS[c][k] > 0) {
uint8_t buf[3];
buf[0] = MIDI_NOTEOFF | c;
buf[1] = k;
buf[2] = 0;
forge_midimessage(self, tme, buf, 3);
}
self->memCI[c][k] = -1000; // current chord for this key
self->memCS[c][k] = 0; // count note-on per key
self->memCM[c][k] = 0; // last known velocity for this key
}
}
static void
filter_midi_midichord(MidiFilter* self,
uint32_t tme,
const uint8_t* const buffer,
uint32_t size)
{
int i;
const int chs = midi_limit_chn(floorf(*self->cfg[0]) -1);
const int scale = RAIL(floorf(*self->cfg[1]), 0, 11);
int chord = 0;
for (i=0; i < 12 ; ++i) {
if ((*self->cfg[i+3]) > 0) chord |= 1<<i;
}
const uint8_t chn = buffer[0] & 0x0f;
uint8_t mst = buffer[0] & 0xf0;
if (midi_is_panic(buffer, size)) {
filter_midichord_panic(self, chn, tme);
}
if (size != 3
|| !(mst == MIDI_NOTEON || mst == MIDI_NOTEOFF || mst == MIDI_POLYKEYPRESSURE)
|| !(floorf(*self->cfg[0]) == 0 || chs == chn)
)
{
forge_midimessage(self, tme, buffer, size);
return;
}
const uint8_t key = buffer[1] & 0x7f;
const uint8_t vel = buffer[2] & 0x7f;
const int tonika = (key + 12 - scale) % 12;
if (! filter_midichord_isonscale(tonika)) {
chord = 1;
}
switch (mst) {
case MIDI_NOTEON:
self->memCI[chn][key] = chord;
self->memCM[chn][key] = vel;
for (i=0; i < 12 ; ++i) {
if (!(chord & (1<<i))) continue;
filter_midichord_noteon(self, tme, chn, key + filter_midichord_halftoneoffset(tonika, i), vel);
}
break;
case MIDI_NOTEOFF:
chord = self->memCI[chn][key];
for (i=0; i < 12 ; ++i) {
if (!(chord & (1<<i))) continue;
filter_midichord_noteoff(self, tme, chn, key + filter_midichord_halftoneoffset(tonika, i), vel);
}
self->memCI[chn][key] = -1000;
self->memCM[chn][key] = 0;
break;
case MIDI_POLYKEYPRESSURE:
for (i=0; i < 12 ; ++i) {
uint8_t buf[3];
if (!(chord & (1<<i))) continue;
int note = key + filter_midichord_halftoneoffset(tonika, i);
if (midi_valid(note)) {
buf[0] = buffer[0];
buf[1] = note;
buf[2] = buffer[2];
forge_midimessage(self, tme, buf, size);
}
}
break;
}
}
static void filter_preproc_midichord(MidiFilter* self) {
int c,k,i;
int identical_cfg = 1;
int newchord = 0;
for (i=0; i < 12; ++i) {
if ((*self->cfg[i+3]) != 0) newchord |= 1<<i;
if (floorf(self->lcfg[i+3]) != floorf(*self->cfg[i+3])) {
identical_cfg = 0;
}
}
if (floorf(self->lcfg[1]) != floorf(*self->cfg[1])) {
identical_cfg = 0;
}
if (identical_cfg) return;
if (floorf(*self->cfg[2])) return;
const int newscale = RAIL(floorf(*self->cfg[1]), 0, 11);
const int oldscale = RAIL(floorf(self->lcfg[1]), 0, 11);
for (c=0; c < 16; ++c) {
for (k=0; k < 127; ++k) {
if (self->memCM[c][k] == 0) continue;
if (self->memCI[c][k] == -1000) continue;
const uint8_t vel = self->memCM[c][k];
const int t0 = (k + 12 - oldscale) % 12;
const int t1 = (k + 12 - newscale) % 12;
const int oldchord = self->memCI[c][k];
int chord = newchord;
if (! filter_midichord_isonscale(t1)) {
chord = 1;
}
for (i=0; i < 12 ; ++i) {
if ((chord & (1<<i)) == (oldchord & (1<<i))
&& !(chord & (1<<i))) {
continue;
}
if ((chord & (1<<i)) == (oldchord & (1<<i))
&& (filter_midichord_halftoneoffset(t0, i) == filter_midichord_halftoneoffset(t1, i))
&& t0 == t1) {
continue;
}
if (oldchord & (1<<i)) {
filter_midichord_noteoff(self, 0, c, k + filter_midichord_halftoneoffset(t0, i), 0);
}
if (chord & (1<<i)) {
filter_midichord_noteon(self, 0, c, k + filter_midichord_halftoneoffset(t1, i), vel);
}
}
self->memCI[c][k] = chord;
}
}
}
static void filter_init_midichord(MidiFilter* self) {
int c,k;
for (c=0; c < 16; ++c) for (k=0; k < 127; ++k) {
self->memCI[c][k] = -1000; // current chord for this key
self->memCS[c][k] = 0; // count note-on per key
self->memCM[c][k] = 0; // last known velocity for this key
}
self->preproc_fn = filter_preproc_midichord;
}
#endif