Chris@35
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@35
|
2
|
Chris@35
|
3 /*
|
Chris@35
|
4 NNLS-Chroma / Chordino
|
Chris@35
|
5
|
Chris@35
|
6 Audio feature extraction plugins for chromagram and chord
|
Chris@35
|
7 estimation.
|
Chris@35
|
8
|
Chris@35
|
9 Centre for Digital Music, Queen Mary University of London.
|
Chris@35
|
10 This file copyright 2008-2010 Matthias Mauch and QMUL.
|
Chris@35
|
11
|
Chris@35
|
12 This program is free software; you can redistribute it and/or
|
Chris@35
|
13 modify it under the terms of the GNU General Public License as
|
Chris@35
|
14 published by the Free Software Foundation; either version 2 of the
|
Chris@35
|
15 License, or (at your option) any later version. See the file
|
Chris@35
|
16 COPYING included with this distribution for more information.
|
Chris@35
|
17 */
|
Chris@35
|
18
|
Chris@27
|
19 #include "chromamethods.h"
|
Chris@27
|
20
|
Chris@27
|
21 #include <cmath>
|
Chris@27
|
22 #include <list>
|
Chris@27
|
23 #include <iostream>
|
Chris@27
|
24 #include <fstream>
|
Chris@27
|
25 #include <sstream>
|
Chris@27
|
26 #include <cassert>
|
Chris@27
|
27 #include <cstdlib>
|
Chris@27
|
28 #include <cstdio>
|
Chris@27
|
29 #include <boost/tokenizer.hpp>
|
Chris@27
|
30 #include <boost/iostreams/device/file.hpp>
|
Chris@27
|
31 #include <boost/iostreams/stream.hpp>
|
Chris@27
|
32 #include <boost/lexical_cast.hpp>
|
Chris@27
|
33
|
Chris@27
|
34 #include "chorddict.cpp"
|
Chris@27
|
35
|
Chris@27
|
36 using namespace std;
|
Chris@27
|
37 using namespace boost;
|
Chris@27
|
38
|
Chris@27
|
39
|
Chris@27
|
40 /** Special Convolution
|
Chris@27
|
41 special convolution is as long as the convolvee, i.e. the first argument. in the valid core part of the
|
Chris@27
|
42 convolution it contains the usual convolution values, but the pads at the beginning (ending) have the same values
|
Chris@27
|
43 as the first (last) valid convolution bin.
|
Chris@27
|
44 **/
|
Chris@27
|
45
|
Chris@27
|
46 vector<float> SpecialConvolution(vector<float> convolvee, vector<float> kernel)
|
Chris@27
|
47 {
|
Chris@27
|
48 float s;
|
Chris@27
|
49 int m, n;
|
Chris@27
|
50 int lenConvolvee = convolvee.size();
|
Chris@27
|
51 int lenKernel = kernel.size();
|
Chris@27
|
52
|
mail@77
|
53 vector<float> Z(nNote,0);
|
Chris@27
|
54 assert(lenKernel % 2 != 0); // no exception handling !!!
|
Chris@27
|
55
|
Chris@27
|
56 for (n = lenKernel - 1; n < lenConvolvee; n++) {
|
Chris@27
|
57 s=0.0;
|
Chris@27
|
58 for (m = 0; m < lenKernel; m++) {
|
Chris@27
|
59 // cerr << "m = " << m << ", n = " << n << ", n-m = " << (n-m) << '\n';
|
Chris@27
|
60 s += convolvee[n-m] * kernel[m];
|
Chris@27
|
61 // if (debug_on) cerr << "--> s = " << s << '\n';
|
Chris@27
|
62 }
|
Chris@27
|
63 // cerr << n - lenKernel/2 << endl;
|
Chris@27
|
64 Z[n -lenKernel/2] = s;
|
Chris@27
|
65 }
|
Chris@27
|
66
|
Chris@27
|
67 // fill upper and lower pads
|
Chris@27
|
68 for (n = 0; n < lenKernel/2; n++) Z[n] = Z[lenKernel/2];
|
Chris@27
|
69 for (n = lenConvolvee; n < lenConvolvee +lenKernel/2; n++) Z[n - lenKernel/2] =
|
Chris@27
|
70 Z[lenConvolvee - lenKernel/2 - 1];
|
Chris@27
|
71 return Z;
|
Chris@27
|
72 }
|
Chris@27
|
73
|
Chris@27
|
74 // vector<float> FftBin2Frequency(vector<float> binnumbers, int fs, int blocksize)
|
Chris@27
|
75 // {
|
Chris@27
|
76 // vector<float> freq(binnumbers.size, 0.0);
|
Chris@27
|
77 // for (unsigned i = 0; i < binnumbers.size; ++i) {
|
Chris@27
|
78 // freq[i] = (binnumbers[i]-1.0) * fs * 1.0 / blocksize;
|
Chris@27
|
79 // }
|
Chris@27
|
80 // return freq;
|
Chris@27
|
81 // }
|
Chris@27
|
82
|
Chris@27
|
83 float cospuls(float x, float centre, float width)
|
Chris@27
|
84 {
|
Chris@27
|
85 float recipwidth = 1.0/width;
|
Chris@27
|
86 if (abs(x - centre) <= 0.5 * width) {
|
Chris@27
|
87 return cos((x-centre)*2*M_PI*recipwidth)*.5+.5;
|
Chris@27
|
88 }
|
Chris@27
|
89 return 0.0;
|
Chris@27
|
90 }
|
Chris@27
|
91
|
Chris@27
|
92 float pitchCospuls(float x, float centre, int binsperoctave)
|
Chris@27
|
93 {
|
Chris@27
|
94 float warpedf = -binsperoctave * (log2(centre) - log2(x));
|
Chris@27
|
95 float out = cospuls(warpedf, 0.0, 2.0);
|
Chris@27
|
96 // now scale to correct for note density
|
Chris@27
|
97 float c = log(2.0)/binsperoctave;
|
Chris@27
|
98 if (x > 0) {
|
Chris@27
|
99 out = out / (c * x);
|
Chris@27
|
100 } else {
|
Chris@27
|
101 out = 0;
|
Chris@27
|
102 }
|
Chris@27
|
103 return out;
|
Chris@27
|
104 }
|
Chris@27
|
105
|
Chris@27
|
106 bool logFreqMatrix(int fs, int blocksize, float *outmatrix) {
|
Chris@27
|
107
|
mail@80
|
108 int binspersemitone = nBPS;
|
Chris@27
|
109 int minoctave = 0; // this must be 0
|
Chris@27
|
110 int maxoctave = 7; // this must be 7
|
Chris@27
|
111 int oversampling = 80;
|
Chris@27
|
112
|
Chris@27
|
113 // linear frequency vector
|
Chris@27
|
114 vector<float> fft_f;
|
Chris@27
|
115 for (int i = 0; i < blocksize/2; ++i) {
|
Chris@27
|
116 fft_f.push_back(i * (fs * 1.0 / blocksize));
|
Chris@27
|
117 }
|
Chris@27
|
118 float fft_width = fs * 2.0 / blocksize;
|
Chris@27
|
119
|
Chris@27
|
120 // linear oversampled frequency vector
|
Chris@27
|
121 vector<float> oversampled_f;
|
Chris@91
|
122 for (int i = 0; i < oversampling * blocksize/2; ++i) {
|
Chris@27
|
123 oversampled_f.push_back(i * ((fs * 1.0 / blocksize) / oversampling));
|
Chris@27
|
124 }
|
Chris@27
|
125
|
Chris@27
|
126 // pitch-spaced frequency vector
|
Chris@27
|
127 int minMIDI = 21 + minoctave * 12 - 1; // this includes one additional semitone!
|
Chris@27
|
128 int maxMIDI = 21 + maxoctave * 12; // this includes one additional semitone!
|
Chris@27
|
129 vector<float> cq_f;
|
Chris@27
|
130 float oob = 1.0/binspersemitone; // one over binspersemitone
|
mail@80
|
131 // cq_f.push_back(440 * pow(2.0,0.083333 * (minMIDI-69))); // 0.083333 is approx 1/12
|
mail@80
|
132 // cq_f.push_back(440 * pow(2.0,0.083333 * (minMIDI+oob-69)));
|
mail@80
|
133 for (int i = minMIDI; i < maxMIDI; ++i) {
|
mail@80
|
134 for (int k = 0; k < binspersemitone; ++k) {
|
Chris@27
|
135 cq_f.push_back(440 * pow(2.0,0.083333333333 * (i+oob*k-69)));
|
Chris@27
|
136 }
|
Chris@27
|
137 }
|
mail@80
|
138 // cq_f.push_back(440 * pow(2.0,0.083333 * (minMIDI-oob-69)));
|
Chris@27
|
139 cq_f.push_back(440 * pow(2.0,0.083333 * (maxMIDI-69)));
|
Chris@27
|
140
|
Chris@27
|
141 int nFFT = fft_f.size();
|
Chris@27
|
142
|
Chris@27
|
143 vector<float> fft_activation;
|
Chris@27
|
144 for (int iOS = 0; iOS < 2 * oversampling; ++iOS) {
|
Chris@27
|
145 float cosp = cospuls(oversampled_f[iOS],fft_f[1],fft_width);
|
Chris@27
|
146 fft_activation.push_back(cosp);
|
Chris@27
|
147 // cerr << cosp << endl;
|
Chris@27
|
148 }
|
Chris@27
|
149
|
Chris@27
|
150 float cq_activation;
|
Chris@27
|
151 for (int iFFT = 1; iFFT < nFFT; ++iFFT) {
|
Chris@27
|
152 // find frequency stretch where the oversampled vector can be non-zero (i.e. in a window of width fft_width around the current frequency)
|
Chris@27
|
153 int curr_start = oversampling * iFFT - oversampling;
|
Chris@27
|
154 int curr_end = oversampling * iFFT + oversampling; // don't know if I should add "+1" here
|
Chris@27
|
155 // cerr << oversampled_f[curr_start] << " " << fft_f[iFFT] << " " << oversampled_f[curr_end] << endl;
|
Chris@27
|
156 for (unsigned iCQ = 0; iCQ < cq_f.size(); ++iCQ) {
|
Chris@27
|
157 outmatrix[iFFT + nFFT * iCQ] = 0;
|
Chris@27
|
158 if (cq_f[iCQ] * pow(2.0, 0.084) + fft_width > fft_f[iFFT] && cq_f[iCQ] * pow(2.0, -0.084 * 2) - fft_width < fft_f[iFFT]) { // within a generous neighbourhood
|
Chris@27
|
159 for (int iOS = curr_start; iOS < curr_end; ++iOS) {
|
Chris@27
|
160 cq_activation = pitchCospuls(oversampled_f[iOS],cq_f[iCQ],binspersemitone*12);
|
Chris@27
|
161 // cerr << oversampled_f[iOS] << " " << cq_f[iCQ] << " " << cq_activation << endl;
|
Chris@27
|
162 outmatrix[iFFT + nFFT * iCQ] += cq_activation * fft_activation[iOS-curr_start];
|
Chris@27
|
163 }
|
Chris@27
|
164 // if (iCQ == 1 || iCQ == 2) {
|
Chris@27
|
165 // cerr << " " << outmatrix[iFFT + nFFT * iCQ] << endl;
|
Chris@27
|
166 // }
|
Chris@27
|
167 }
|
Chris@27
|
168 }
|
Chris@27
|
169 }
|
Chris@27
|
170 return true;
|
Chris@27
|
171 }
|
Chris@27
|
172
|
mail@41
|
173 void dictionaryMatrix(float* dm, float s_param) {
|
mail@80
|
174 int binspersemitone = nBPS;
|
Chris@27
|
175 int minoctave = 0; // this must be 0
|
Chris@27
|
176 int maxoctave = 7; // this must be 7
|
mail@41
|
177 // float s_param = 0.7;
|
Chris@27
|
178
|
Chris@27
|
179 // pitch-spaced frequency vector
|
Chris@27
|
180 int minMIDI = 21 + minoctave * 12 - 1; // this includes one additional semitone!
|
Chris@27
|
181 int maxMIDI = 21 + maxoctave * 12; // this includes one additional semitone!
|
Chris@27
|
182 vector<float> cq_f;
|
Chris@27
|
183 float oob = 1.0/binspersemitone; // one over binspersemitone
|
mail@80
|
184 // cq_f.push_back(440 * pow(2.0,0.083333 * (minMIDI-69))); // 0.083333 is approx 1/12
|
mail@80
|
185 // cq_f.push_back(440 * pow(2.0,0.083333 * (minMIDI+oob-69)));
|
mail@80
|
186 for (int i = minMIDI; i < maxMIDI; ++i) {
|
mail@80
|
187 for (int k = 0; k < binspersemitone; ++k) {
|
Chris@27
|
188 cq_f.push_back(440 * pow(2.0,0.083333333333 * (i+oob*k-69)));
|
Chris@27
|
189 }
|
Chris@27
|
190 }
|
mail@80
|
191 // cq_f.push_back(440 * pow(2.0,0.083333 * (minMIDI-oob-69)));
|
Chris@27
|
192 cq_f.push_back(440 * pow(2.0,0.083333 * (maxMIDI-69)));
|
Chris@27
|
193
|
Chris@27
|
194 float curr_f;
|
Chris@27
|
195 float floatbin;
|
Chris@27
|
196 float curr_amp;
|
Chris@27
|
197 // now for every combination calculate the matrix element
|
Chris@91
|
198 for (int iOut = 0; iOut < 12 * (maxoctave - minoctave); ++iOut) {
|
Chris@27
|
199 // cerr << iOut << endl;
|
Chris@91
|
200 for (int iHarm = 1; iHarm <= 20; ++iHarm) {
|
Chris@27
|
201 curr_f = 440 * pow(2,(minMIDI-69+iOut)*1.0/12) * iHarm;
|
Chris@27
|
202 // if (curr_f > cq_f[nNote-1]) break;
|
Chris@27
|
203 floatbin = ((iOut + 1) * binspersemitone + 1) + binspersemitone * 12 * log2(iHarm);
|
Chris@27
|
204 // cerr << floatbin << endl;
|
Chris@27
|
205 curr_amp = pow(s_param,float(iHarm-1));
|
Chris@27
|
206 // cerr << "curramp" << curr_amp << endl;
|
Chris@91
|
207 for (int iNote = 0; iNote < nNote; ++iNote) {
|
Chris@27
|
208 if (abs(iNote+1.0-floatbin)<2) {
|
mail@77
|
209 dm[iNote + nNote * iOut] += cospuls(iNote+1.0, floatbin, binspersemitone + 0.0) * curr_amp;
|
Chris@27
|
210 // dm[iNote + nNote * iOut] += 1 * curr_amp;
|
Chris@27
|
211 }
|
Chris@27
|
212 }
|
Chris@27
|
213 }
|
Chris@27
|
214 }
|
Chris@27
|
215
|
Chris@27
|
216
|
Chris@27
|
217 }
|
Chris@27
|
218
|
Chris@30
|
219 static
|
Chris@30
|
220 std::vector<std::string>
|
Chris@30
|
221 getPluginPath()
|
Chris@30
|
222 {
|
Chris@30
|
223 //!!! This is duplicated from PluginHostAdapter::getPluginPath,
|
Chris@30
|
224 //!!! which is not available to us in the plugin (only to the
|
Chris@30
|
225 //!!! host)
|
Chris@30
|
226
|
Chris@30
|
227 std::vector<std::string> path;
|
Chris@30
|
228 std::string envPath;
|
Chris@30
|
229
|
Chris@30
|
230 char *cpath = getenv("VAMP_PATH");
|
Chris@30
|
231 if (cpath) envPath = cpath;
|
Chris@30
|
232
|
Chris@30
|
233 #ifdef _WIN32
|
Chris@30
|
234 #define PATH_SEPARATOR ';'
|
Chris@30
|
235 #define DEFAULT_VAMP_PATH "%ProgramFiles%\\Vamp Plugins"
|
Chris@30
|
236 #else
|
Chris@30
|
237 #define PATH_SEPARATOR ':'
|
Chris@30
|
238 #ifdef __APPLE__
|
Chris@30
|
239 #define DEFAULT_VAMP_PATH "$HOME/Library/Audio/Plug-Ins/Vamp:/Library/Audio/Plug-Ins/Vamp"
|
Chris@30
|
240 #else
|
Chris@30
|
241 #define DEFAULT_VAMP_PATH "$HOME/vamp:$HOME/.vamp:/usr/local/lib/vamp:/usr/lib/vamp"
|
Chris@30
|
242 #endif
|
Chris@30
|
243 #endif
|
Chris@30
|
244
|
Chris@30
|
245 if (envPath == "") {
|
Chris@30
|
246 envPath = DEFAULT_VAMP_PATH;
|
Chris@30
|
247 char *chome = getenv("HOME");
|
Chris@30
|
248 if (chome) {
|
Chris@30
|
249 std::string home(chome);
|
Chris@30
|
250 std::string::size_type f;
|
Chris@30
|
251 while ((f = envPath.find("$HOME")) != std::string::npos &&
|
Chris@30
|
252 f < envPath.length()) {
|
Chris@30
|
253 envPath.replace(f, 5, home);
|
Chris@30
|
254 }
|
Chris@30
|
255 }
|
Chris@30
|
256 #ifdef _WIN32
|
Chris@30
|
257 char *cpfiles = getenv("ProgramFiles");
|
Chris@30
|
258 if (!cpfiles) cpfiles = (char *)"C:\\Program Files";
|
Chris@30
|
259 std::string pfiles(cpfiles);
|
Chris@30
|
260 std::string::size_type f;
|
Chris@30
|
261 while ((f = envPath.find("%ProgramFiles%")) != std::string::npos &&
|
Chris@30
|
262 f < envPath.length()) {
|
Chris@30
|
263 envPath.replace(f, 14, pfiles);
|
Chris@30
|
264 }
|
Chris@30
|
265 #endif
|
Chris@30
|
266 }
|
Chris@30
|
267
|
Chris@30
|
268 std::string::size_type index = 0, newindex = 0;
|
Chris@30
|
269
|
Chris@30
|
270 while ((newindex = envPath.find(PATH_SEPARATOR, index)) < envPath.size()) {
|
Chris@30
|
271 path.push_back(envPath.substr(index, newindex - index));
|
Chris@30
|
272 index = newindex + 1;
|
Chris@30
|
273 }
|
Chris@30
|
274
|
Chris@30
|
275 path.push_back(envPath.substr(index));
|
Chris@30
|
276
|
Chris@30
|
277 return path;
|
Chris@30
|
278 }
|
Chris@27
|
279
|
mail@90
|
280
|
mail@90
|
281
|
mail@90
|
282 static vector<string> staticChordnames() {
|
mail@90
|
283 vector<string> chordnames;
|
mail@90
|
284 chordnames.push_back("");//=1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0
|
mail@90
|
285 chordnames.push_back("");// =0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0
|
mail@90
|
286 chordnames.push_back("m");//=1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0
|
mail@90
|
287 chordnames.push_back("m");//=0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0
|
mail@90
|
288 chordnames.push_back("dim7");//=0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,1,0
|
mail@90
|
289 chordnames.push_back("dim7");//=1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0
|
mail@90
|
290 chordnames.push_back("6");//=1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0
|
mail@90
|
291 chordnames.push_back("7");//=1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0
|
mail@90
|
292 chordnames.push_back("maj7");//=1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1
|
mail@90
|
293 chordnames.push_back("m7");//=1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0
|
mail@90
|
294 chordnames.push_back("m6");//=1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0
|
mail@90
|
295 chordnames.push_back("");//=0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0
|
mail@90
|
296 chordnames.push_back("");//=0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0
|
mail@90
|
297 chordnames.push_back("");//=1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0
|
mail@90
|
298 chordnames.push_back("aug");//=1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0
|
mail@90
|
299 chordnames.push_back("");//=0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0
|
mail@90
|
300 chordnames.push_back("");//=0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,0
|
mail@90
|
301 chordnames.push_back("7");//=0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0
|
mail@90
|
302 return chordnames;
|
mail@90
|
303 }
|
mail@90
|
304
|
mail@90
|
305 static vector<float> staticChordvalues() {
|
mail@90
|
306 vector<float> chordvalues;
|
mail@90
|
307 float chordvaluearray[] = {1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,
|
mail@90
|
308 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,
|
mail@90
|
309 1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,
|
mail@90
|
310 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,
|
mail@90
|
311 0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,1,0,
|
mail@90
|
312 1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,
|
mail@90
|
313 1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,
|
mail@90
|
314 1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,
|
mail@90
|
315 1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,
|
mail@90
|
316 1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,
|
mail@90
|
317 1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,
|
mail@90
|
318 0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,
|
mail@90
|
319 0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,
|
mail@90
|
320 1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,
|
mail@90
|
321 1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,
|
mail@90
|
322 0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,
|
mail@90
|
323 0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,0,
|
mail@90
|
324 0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0};
|
mail@90
|
325 for (int iChord = 0; iChord < 18; ++iChord) {
|
mail@90
|
326 for (int iNote = 0; iNote < 24; iNote++) {
|
mail@90
|
327 chordvalues.push_back(chordvaluearray[24*iChord+iNote]);
|
mail@90
|
328 }
|
mail@90
|
329 }
|
mail@90
|
330 return chordvalues;
|
mail@90
|
331 }
|
mail@90
|
332
|
mail@89
|
333 vector<string> chordDictionary(vector<float> *mchorddict, vector<vector<int> > *m_chordnotes, float boostN) {
|
matthiasm@86
|
334
|
Chris@27
|
335 typedef tokenizer<char_separator<char> > Tok;
|
Chris@27
|
336 char_separator<char> sep(",; ","=");
|
Chris@30
|
337
|
Chris@30
|
338 string chordDictBase("chord.dict");
|
Chris@30
|
339 string chordDictFilename;
|
Chris@30
|
340
|
Chris@30
|
341 vector<string> ppath = getPluginPath();
|
mail@90
|
342
|
mail@90
|
343 bool hasExternalDictinoary = true;
|
mail@90
|
344
|
Chris@91
|
345 for (size_t i = 0; i < ppath.size(); ++i) {
|
mail@61
|
346 chordDictFilename = ppath[i] + "/" + chordDictBase;
|
mail@61
|
347 cerr << "Looking for chord.dict in " << chordDictFilename << "..." ;
|
mail@61
|
348 fstream fin;
|
mail@61
|
349 fin.open(chordDictFilename.c_str(),ios::in);
|
mail@61
|
350 if( fin.is_open() )
|
mail@61
|
351 {
|
mail@61
|
352 fin.close();
|
mail@61
|
353 cerr << " success." << endl;
|
mail@61
|
354 break;
|
mail@61
|
355 } else {
|
Chris@91
|
356 if (i+1 < ppath.size()) cerr << " (not found yet) ..." << endl;
|
mail@90
|
357 else {
|
mail@90
|
358 cerr << "* ERROR: failed to find chord dictionary." << endl;
|
mail@90
|
359 hasExternalDictinoary = false;
|
mail@90
|
360 }
|
mail@61
|
361 }
|
Chris@30
|
362 }
|
Chris@30
|
363
|
Chris@30
|
364 iostreams::stream<iostreams::file_source> chordDictFile(chordDictFilename);
|
Chris@27
|
365 string line;
|
mail@89
|
366 // int iElement = 0;
|
Chris@27
|
367 int nChord = 0;
|
Chris@27
|
368
|
Chris@91
|
369 vector<string> tempChordNames = staticChordnames();
|
Chris@91
|
370 vector<float> tempChordDict = staticChordvalues();
|
Chris@27
|
371 vector<string> loadedChordNames;
|
Chris@27
|
372 vector<float> loadedChordDict;
|
mail@90
|
373 if (hasExternalDictinoary && chordDictFile.is_open()) {
|
mail@90
|
374 cerr << "-----------------> " << tempChordNames.size() << endl;
|
mail@90
|
375 tempChordDict.clear();
|
mail@90
|
376 tempChordNames.clear();
|
matthiasm@86
|
377 while (std::getline(chordDictFile, line)) { // loop over lines in chord.dict file
|
Chris@27
|
378 // first, get the chord definition
|
Chris@27
|
379 string chordType;
|
Chris@27
|
380 vector<float> tempPCVector;
|
Chris@27
|
381 // cerr << line << endl;
|
Chris@27
|
382 if (!line.empty() && line.substr(0,1) != "#") {
|
Chris@27
|
383 Tok tok(line, sep);
|
Chris@27
|
384 for(Tok::iterator tok_iter = tok.begin(); tok_iter != tok.end(); ++tok_iter) { // loop over line elements
|
Chris@27
|
385 string tempString = *tok_iter;
|
Chris@27
|
386 // cerr << tempString << endl;
|
mail@90
|
387 if (tok_iter == tok.begin()) { // either the chord name or a colon
|
Chris@27
|
388 if (tempString == "=") {
|
Chris@27
|
389 chordType = "";
|
Chris@27
|
390 } else {
|
Chris@27
|
391 chordType = tempString;
|
mail@90
|
392 tok_iter++;
|
Chris@27
|
393 }
|
Chris@27
|
394 } else {
|
mail@90
|
395 tempChordDict.push_back(lexical_cast<float>(*tok_iter));
|
Chris@27
|
396 }
|
mail@90
|
397 }
|
mail@90
|
398 tempChordNames.push_back(chordType);
|
mail@90
|
399 }
|
mail@90
|
400 }
|
mail@90
|
401 }
|
mail@90
|
402
|
mail@90
|
403
|
Chris@91
|
404 for (int iType = 0; iType < (int)tempChordNames.size(); ++iType) {
|
mail@90
|
405 // now make all 12 chords of every type
|
Chris@91
|
406 for (int iSemitone = 0; iSemitone < 12; iSemitone++) {
|
mail@90
|
407 vector<int> tempchordnotes;
|
mail@90
|
408 // add bass slash notation
|
mail@90
|
409 string slashNotation = "";
|
Chris@91
|
410 for (int kSemitone = 1; kSemitone < 12; kSemitone++) {
|
mail@90
|
411 if (tempChordDict[24*iType+(kSemitone) % 12] > 0.99) {
|
mail@90
|
412 slashNotation = bassnames[iSemitone][kSemitone];
|
Chris@27
|
413 }
|
Chris@27
|
414 }
|
mail@90
|
415 if (slashNotation=="") tempchordnotes.push_back(MIDI_basenote + (iSemitone+12) % 12);
|
Chris@91
|
416 for (int kSemitone = 0; kSemitone < 12; kSemitone++) { // bass pitch classes
|
mail@90
|
417 // cerr << ((kSemitone - iSemitone + 12) % 12) << endl;
|
mail@90
|
418 float bassValue = 0;
|
mail@90
|
419 if (tempChordDict[24*iType+(kSemitone - iSemitone + 12) % 12]==1) {
|
mail@90
|
420 bassValue = 1;
|
mail@90
|
421 tempchordnotes.push_back(MIDI_basenote + (kSemitone+12) % 12);
|
mail@90
|
422 } else {
|
mail@90
|
423 if (tempChordDict[24*iType+((kSemitone - iSemitone + 12) % 12) + 12] == 1) bassValue = 0.5;
|
mail@90
|
424 }
|
mail@90
|
425 loadedChordDict.push_back(bassValue);
|
mail@90
|
426 }
|
Chris@91
|
427 for (int kSemitone = 0; kSemitone < 12; kSemitone++) { // chord pitch classes
|
mail@90
|
428 loadedChordDict.push_back(tempChordDict[24*iType+((kSemitone - iSemitone + 12) % 12) + 12]);
|
mail@90
|
429 if (tempChordDict[24*iType+((kSemitone - iSemitone + 12) % 12) + 12] > 0) tempchordnotes.push_back(MIDI_basenote + (kSemitone+12+6) % 12 - 6 + 24);
|
mail@90
|
430 }
|
mail@90
|
431 ostringstream os;
|
mail@90
|
432 if (slashNotation.empty()) {
|
mail@90
|
433 os << notenames[12+iSemitone] << tempChordNames[iType];
|
mail@90
|
434 } else {
|
mail@90
|
435 os << notenames[12+iSemitone] << tempChordNames[iType] << "/" << slashNotation;
|
mail@90
|
436 }
|
mail@90
|
437 // cerr << os.str() << endl;
|
mail@90
|
438 loadedChordNames.push_back(os.str());
|
mail@90
|
439
|
mail@90
|
440 m_chordnotes->push_back(tempchordnotes);
|
mail@90
|
441 // for (int iNote = 0; iNote < tempchordnotes.size(); ++iNote) {
|
mail@90
|
442 // cerr << tempchordnotes[iNote] << " ";
|
mail@90
|
443 // }
|
mail@90
|
444 // cerr << endl;
|
Chris@27
|
445 }
|
mail@90
|
446 }
|
mail@90
|
447
|
mail@90
|
448
|
mail@90
|
449 // N type
|
mail@90
|
450 loadedChordNames.push_back("N");
|
mail@90
|
451 for (unsigned kSemitone = 0; kSemitone < 12; kSemitone++) loadedChordDict.push_back(0.5);
|
mail@90
|
452 for (unsigned kSemitone = 0; kSemitone < 12; kSemitone++) loadedChordDict.push_back(1.0);
|
mail@90
|
453 vector<int> tempchordvector;
|
mail@90
|
454 m_chordnotes->push_back(tempchordvector);
|
mail@90
|
455 float exponent = 2.0;
|
mail@90
|
456 // float m_boostN = 1.1;
|
mail@90
|
457 // cerr << " N BOOST : " << boostN << endl << endl;
|
Chris@91
|
458 for (int iChord = 0; iChord < (int)loadedChordDict.size()/24; iChord++) {
|
mail@90
|
459 float sum = 0;
|
mail@90
|
460 float stand = 0;
|
mail@90
|
461 for (int iST = 0; iST < 24; ++iST) {
|
mail@90
|
462 sum += loadedChordDict[24 * iChord + iST];
|
mail@90
|
463 }
|
mail@90
|
464 for (int iST = 0; iST < 24; ++iST) {
|
mail@90
|
465 // loadedChordDict[24 * iChord + iST] -= sum/24;
|
mail@90
|
466 stand += pow(abs(loadedChordDict[24 * iChord + iST]),exponent)/24;
|
mail@90
|
467 }
|
Chris@91
|
468 if (iChord < (int)loadedChordDict.size()/24 - 1) {
|
Chris@91
|
469 stand = powf(stand,1.0f/exponent);
|
mail@90
|
470 } else {
|
Chris@91
|
471 stand = powf(stand,1.0f/exponent) / boostN;
|
mail@90
|
472 }
|
mail@90
|
473 for (int iST = 0; iST < 24; ++iST) {
|
mail@90
|
474 loadedChordDict[24 * iChord + iST] /= stand;
|
Chris@27
|
475 }
|
matthiasm@44
|
476
|
mail@90
|
477 }
|
mail@90
|
478
|
mail@90
|
479
|
mail@90
|
480
|
mail@90
|
481 nChord = 0;
|
Chris@91
|
482 for (int i = 0; i < (int)loadedChordNames.size(); i++) {
|
mail@90
|
483 nChord++;
|
mail@90
|
484 }
|
mail@90
|
485 chordDictFile.close();
|
mail@90
|
486
|
mail@90
|
487
|
mail@90
|
488 // mchorddict = new float[nChord*24];
|
mail@90
|
489 for (int i = 0; i < nChord*24; i++) {
|
mail@90
|
490 mchorddict->push_back(loadedChordDict[i]);
|
mail@90
|
491 }
|
Chris@27
|
492
|
Chris@27
|
493 // cerr << "before leaving" << chordnames[1] << endl;
|
Chris@27
|
494 return loadedChordNames;
|
Chris@27
|
495 }
|
mail@90
|
496
|
Chris@91
|
497
|