-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.cpp
621 lines (511 loc) · 19.9 KB
/
Main.cpp
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
//---------------------------------------------------------------------------
#include <windows.h>
#include "tp_stub.h"
#include <math.h>
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// データ
//---------------------------------------------------------------------------
// このプラグインでは複数のスペアナを同時に表示することは考えない
tjs_int SampleBufferLen = 0; // SampleBuffer サイズ
tjs_int16 *SampleBuffer = NULL; // 入力 PCM バッファ
tjs_int FFTLen = 0; // FFT長
float *FFTData = NULL; // FFTデータ
float *WindowData = NULL; // 窓関数データ
int *fft_ip = NULL; // FFTワーク
float *fft_w = NULL; // FFTワーク
tjs_int BandCount = 0; // 帯域数
float BandCut = 0; // 低周波カットオフ
// (対数目盛上における) 低周波域の 1/BandCut 分の低周波領域を表示しない
tjs_int *BandData = NULL; // 帯域ごとの成分データ
tjs_int *BandPeakData = NULL; // 帯域ごとのピークデータ
tjs_int *BandPeakCount = NULL; // 最後にピークデータが更新された時からのカウント
tjs_int *BandStart = NULL; // 帯域ごとの開始周波数位置
tjs_int *BandEnd = NULL; // 帯域ごとの終了周波数位置
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// visualization 用のサンプルデータを取得
//---------------------------------------------------------------------------
static void GetVisBuffer(iTJSDispatch2 * obj, tjs_int numsamples,
tjs_int channels, tjs_int aheadsamples)
{
if(SampleBuffer == NULL || SampleBufferLen != channels * numsamples)
{
if(SampleBuffer) delete [] SampleBuffer;
SampleBuffer = new tjs_int16[SampleBufferLen = channels * numsamples];
}
tTJSVariant val[4];
tTJSVariant *pval[4] = { val, val +1, val +2, val +3 };
val[0] = (tjs_int64)(tjs_int)SampleBuffer;
val[1] = (tjs_int64)numsamples;
val[2] = (tjs_int64)channels;
val[3] = (tjs_int64)aheadsamples;
tTJSVariant res;
static tjs_uint32 getVisBuffer_hint = 0;
if(TJS_SUCCEEDED(obj->FuncCall(0, L"getVisBuffer", &getVisBuffer_hint,
&res, 4, pval, obj)))
{
tjs_int ret = res;
if(ret < numsamples)
{
ZeroMemory(SampleBuffer, sizeof(tjs_int16) * SampleBufferLen);
}
}
}
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// FFT
//---------------------------------------------------------------------------
extern "C"
{
void ddst(int n, int isgn, float *a, int *ip, float *w);
}
void DoFFT()
{
// SampleBuffer に高速離散フーリエ変換 (実際はサイン変換) を行い
// FFTData に格納する
tjs_int len = SampleBufferLen;
tjs_int len2 = len / 2;
if(FFTLen != len)
{
FFTLen = len;
// バッファの確保
if(FFTData) delete [] FFTData, FFTData = NULL;
if(WindowData) delete [] WindowData, WindowData = NULL;
if(fft_ip) delete [] fft_ip, fft_ip = NULL;
if(fft_w) delete[] fft_w, fft_w = NULL;
FFTData = new float[len];
WindowData = new float[len];
fft_ip = new int[(int)(2.0 + sqrt(len * (1.0 / 2.0)))];
fft_w = new float[(int)(len * (5.0 / 4.0))];
fft_ip[0] = 0;
// 窓関数の作成
float mul = (4.0/32768.0/len);
for(tjs_int i = 0; i < len; i++)
{
WindowData[i] = sin(3.14159265358979 * (i + 0.5) / len) * mul;
// (sin窓)
}
}
// FFTData に窓関数を適用しながらデータを転送
for(tjs_int i = 0; i < len2; i++)
{
FFTData[i] = SampleBuffer[i] * WindowData[i];
FFTData[i + len2] = SampleBuffer[i + len2] * WindowData[len2 - i - 1];
}
// 高速離散サイン変換
ddst(len, -1, FFTData, fft_ip, fft_w);
// 直流成分のカット
FFTData[0] = FFTData[1] = 0;
}
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// 帯域ごとの周波数成分を得る
//---------------------------------------------------------------------------
void GetBandSpectrum(int count, float cut, float mindb, int maxval, int falldown,
int peakholdtime, int peakfalldown)
{
if(count != BandCount || BandCut != cut)
{
BandCount = count;
BandCut = cut;
// バッファの確保
if(BandData) delete [] BandData, BandData = NULL;
if(BandPeakData) delete [] BandPeakData, BandPeakData = NULL;
if(BandPeakCount) delete [] BandPeakCount, BandPeakCount = NULL;
if(BandStart) delete [] BandStart, BandStart = NULL;
if(BandEnd) delete [] BandEnd, BandEnd = NULL;
BandData = new tjs_int[count];
BandPeakData = new tjs_int[count];
BandPeakCount = new tjs_int[count];
tjs_int i;
for(i = 0; i < count; i ++)
BandData[i] = BandPeakData[i] = BandPeakCount[i] = 0;
BandStart = new tjs_int[count];
BandEnd = new tjs_int[count];
// 帯域ごとの周波数開始位置と周波数終了位置の計算
for(i = 0; i < count; i++)
{
float j = (float)(i ) * ((cut-1) / cut) / (float)count + (1.0 / cut);
float k = (float)(i+1) * ((cut-1) / cut) / (float)count + (1.0 / cut);
int start = pow(FFTLen, j);
int end = pow(FFTLen, k);
if(start == end) end++;
if(end > FFTLen) end = FFTLen;
BandStart[i] = start;
BandEnd[i] = end;
}
}
// 帯域ごとに成分のピークを得てそれを dB にして格納
float max_mindb_1 = maxval * 1.0 / mindb;
for(tjs_int i = 0; i < count; i++)
{
float max = 0;
for(tjs_int j = BandStart[i]; j < BandEnd[i]; j++)
{
float v = FFTData[j];
if(v < 0) v = -v;
if(max < v) max = v;
}
float db;
if(max != 0) db = log10(max*max) * 10; else db = -1000000;
if(db > 0) db = 0;
if(db < mindb) db = mindb;
tjs_int vi = maxval - max_mindb_1 * db;
BandData[i] -= falldown;
if(BandData[i] < 0) BandData[i] = 0;
if(BandData[i] < vi) BandData[i] = vi;
if(BandData[i] > maxval) BandData[i] = maxval;
if(BandPeakCount[i] == peakholdtime)
{
BandPeakData[i] -= peakfalldown;
if(BandPeakData[i] < 0) BandPeakData[i] = 0;
}
else
{
BandPeakCount[i] ++;
}
if(BandPeakData[i] < vi)
{
BandPeakData[i] = vi;
BandPeakCount[i] = 0;
}
}
}
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// スペアナを描画するための関数
//---------------------------------------------------------------------------
struct FFTGraphParam
{
iTJSDispatch2 * sb;
tjs_uint8 * laybuf;
tjs_int laybufpitch;
tjs_int laywidth;
tjs_int layheight;
tjs_int left;
tjs_int top;
tjs_int width;
tjs_int height;
iTJSDispatch2 * options;
};
//---------------------------------------------------------------------------
static tjs_int GetValueFromOptions(iTJSDispatch2 *options, const tjs_char *name,
tjs_uint32 *hint, tjs_int defvalue)
{
tTJSVariant val;
if(!options) return defvalue;
if(TJS_FAILED(options->PropGet(TJS_MEMBERMUSTEXIST, name, hint, &val, options)))
{
return defvalue;
}
return val;
}
//---------------------------------------------------------------------------
void DrawBarGraph(const FFTGraphParam & param, tjs_int count, tjs_int thickness,
tjs_uint32 oncolor, tjs_uint32 offcolor, tjs_uint32 bgcolor, tjs_uint32 peakcolor)
{
tjs_int th = 1000 / (param.height / thickness);
GetBandSpectrum(count, 8, -70, 1000-th*2, 40, 40, 10);
tjs_uint8 *lbstart = param.laybuf +
(param.top + param.height - 1) * param.laybufpitch + param.left * sizeof(tjs_uint32);
tjs_int bw = param.width / count;
for(int i = 0; i < count; i++)
{
tjs_uint8 *lb = lbstart + i * bw * sizeof(tjs_uint32);
int y = 0;
int v = 0;
bool peakdrawn = false;
while(true)
{
for(int x = 0; x < bw; x++) *((tjs_uint32*)lb + x) = bgcolor;
lb -= param.laybufpitch;
if(!peakdrawn && BandPeakData[i] <= v && peakcolor != offcolor)
{
peakdrawn = true;
for(tjs_int yy = 1; yy < thickness; yy++)
{
*(tjs_uint32*)lb = bgcolor;
for(int x = 1; x < bw; x++) *((tjs_uint32*)lb + x) = peakcolor;
lb -= param.laybufpitch;
}
}
else if(BandData[i] >= v)
{
for(tjs_int yy = 1; yy < thickness; yy++)
{
*(tjs_uint32*)lb = bgcolor;
for(int x = 1; x < bw; x++) *((tjs_uint32*)lb + x) = oncolor;
lb -= param.laybufpitch;
}
}
else
{
for(tjs_int yy = 1; yy < thickness; yy++)
{
*(tjs_uint32*)lb = bgcolor;
for(int x = 1; x < bw; x++) *((tjs_uint32*)lb + x) = offcolor;
lb -= param.laybufpitch;
}
}
y += thickness;
v += th;
if(y + thickness > param.height) break;
}
}
}
//---------------------------------------------------------------------------
void DrawFFTGraph(const FFTGraphParam & param)
{
GetVisBuffer(param.sb, 2048, 1, 0);
DoFFT();
tjs_int type = 0;
static tjs_uint32 type_hint = 0;
type = GetValueFromOptions(param.options, L"type", &type_hint, type);
switch(type)
{
case 0: // winamp, fire風
{
#if 1
const static tjs_uint32 firecolors[16] =
{
0xff20ff00, 0xff40ff00, 0xff60ff00, 0xff80ff00,
0xffa0ff00, 0xffc0ff00, 0xffe0ff00, 0xffffff00,
0xffffe000, 0xffffc000, 0xffffa000, 0xffff8000,
0xffff6000, 0xffff4000, 0xffff2000, 0xffffff00
};
const tjs_uint32 peak_color = 0xff808080;
#else
/* あきさんモード */
const static tjs_uint32 firecolors[16] =
{
0xff11DDFF, 0xff11CCEE, 0xff11BBDD, 0xff11AACC,
0xff1199CC, 0xff1188BB, 0xff1177AA, 0xff0066AA,
0xff005599, 0xff004499, 0xff004488, 0xff003388,
0xff002277, 0xff001166, 0xff000066, 0xff000055
};
const tjs_uint32 peak_color = 0xff11eeff;
#endif
GetBandSpectrum(param.width, 3.7, -70, param.height - 1,
(param.height+15) / 16, 30, (param.height+31) / 32);
tjs_uint8 *lbstart = param.laybuf +
(param.top + param.height - 1) * param.laybufpitch +
param.left * sizeof(tjs_uint32);
for(int x = 0; x < param.width; x++)
{
tjs_uint8 *lb = lbstart + x * sizeof(tjs_uint32);
int y;
for(y = 0; y < BandData[x]; y ++)
{
int c = 15 - BandData[x] + y;
*(tjs_uint32*)lb = c < 0 ? 0xff00ff00 : firecolors[c];
lb -= param.laybufpitch;
}
for(; y < param.height; y++)
{
*(tjs_uint32*)lb = 0;
lb -= param.laybufpitch;
}
*(tjs_uint32*)
(lbstart + x * sizeof(tjs_uint32) - BandPeakData[x] * param.laybufpitch)
= peak_color;
}
}
break;
case 1: // LCD 風
{
tjs_int division = 16;
tjs_int thick = 2;
tjs_int oncolor = 0xff000000;
tjs_int offcolor = 0xffb0b0b0;
tjs_int bgcolor = 0xffc0c0c0;
tjs_int peakcolor = 0xff707070;
static tjs_uint32 hints[6];
division = GetValueFromOptions(param.options, L"division", hints + 0, division);
thick = GetValueFromOptions(param.options, L"thick", hints + 1, thick);
oncolor = GetValueFromOptions(param.options, L"oncolor", hints + 2, oncolor);
offcolor = GetValueFromOptions(param.options, L"offcolor", hints + 3, offcolor);
bgcolor = GetValueFromOptions(param.options, L"bgcolor", hints + 4, bgcolor);
peakcolor = GetValueFromOptions(param.options, L"peakcolor", hints + 5, peakcolor);
DrawBarGraph(param, division, thick, oncolor, offcolor, bgcolor, peakcolor);
}
break;
}
}
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// スペアナを描画するための TJS 関数
//---------------------------------------------------------------------------
class tDrawFFTGraphFunction : public tTJSDispatch
{
tjs_error TJS_INTF_METHOD FuncCall(
tjs_uint32 flag, const tjs_char * membername, tjs_uint32 *hint,
tTJSVariant *result,
tjs_int numparams, tTJSVariant **param, iTJSDispatch2 *objthis)
{
if(membername) return TJS_E_MEMBERNOTFOUND;
// 引数 : レイヤ, サウンドバッファ, 左端位置, 上端位置, 幅, 高さ,
// [, オプション]
if(numparams < 6) return TJS_E_BADPARAMCOUNT;
iTJSDispatch2 * layerobj = param[0]->AsObjectNoAddRef();
iTJSDispatch2 * sbobj = param[1]->AsObjectNoAddRef();
tjs_uint8 * bufferptr;
tjs_int bufferpitch;
tjs_int width;
tjs_int height;
// 画像のサイズ、ピクセルバッファへのポインタ、ピッチを得る
tTJSVariant val;
static tjs_uint32 imageWidth_hint = 0;
if(TJS_FAILED(layerobj->PropGet(0, TJS_W("imageWidth"), &imageWidth_hint, &val, layerobj)))
TVPThrowExceptionMessage(TJS_W("invoking of Layer.imageWidth failed."));
width = val;
static tjs_uint32 imageHeight_hint = 0;
if(TJS_FAILED(layerobj->PropGet(0, TJS_W("imageHeight"), &imageHeight_hint, &val, layerobj)))
TVPThrowExceptionMessage(TJS_W("invoking of Layer.imageHeight failed."));
height = val;
static tjs_uint32 mainImageBufferForWrite_hint = 0;
if(TJS_FAILED(layerobj->PropGet(0, TJS_W("mainImageBufferForWrite"), &mainImageBufferForWrite_hint,
&val, layerobj)))
TVPThrowExceptionMessage(TJS_W("invoking of Layer.mainImageBufferForWrite failed."));
bufferptr = (tjs_uint8 *)(tjs_int)val;
static tjs_uint32 mainImageBufferPitch_hint = 0;
if(TJS_FAILED(layerobj->PropGet(0, TJS_W("mainImageBufferPitch"), &mainImageBufferPitch_hint,
&val, layerobj)))
TVPThrowExceptionMessage(TJS_W("invoking of Layer.mainImageBufferPitch failed."));
bufferpitch = val;
/*
note:
PropGet 等の "hint" (ヒント) 引数には tjs_uint32 型の変数へのポインタを渡す。
TJS2 は、メンバ名を検索するときに、検索途中で算出された数値を hint に格納して返す。
2回目以降は、再び hint に渡された値を用いて検索を行うため、処理が高速になる。
実際はヒントはメンバ名のハッシュで、同じメンバ名ならば同じ数値になるが、
同じヒントの値だからといって同じメンバ名であるとは限らない。
ヒントの値が不正な場合は正しい値に自動的に修正されるが、初期値としては 0 を
指定することが推奨される。
*/
// パラメータを準備
FFTGraphParam fftparam;
fftparam.sb = sbobj;
fftparam.laybuf = bufferptr;
fftparam.laybufpitch = bufferpitch;
fftparam.laywidth = width;
fftparam.layheight = height;
fftparam.left = *param[2];
fftparam.top = *param[3];
fftparam.width = *param[4];
fftparam.height = *param[5];
if(numparams >= 7)
fftparam.options = param[6]->AsObjectNoAddRef();
else
fftparam.options = NULL;
// スペアナを描画
DrawFFTGraph(fftparam);
// 領域をアップデート
{
tTJSVariant val[4];
tTJSVariant *pval[4] = { val, val +1, val +2, val +3 };
val[0] = (tjs_int64)fftparam.left;
val[1] = (tjs_int64)fftparam.top;
val[2] = (tjs_int64)fftparam.width;
val[3] = (tjs_int64)fftparam.height;
static tjs_uint32 update_hint = 0;
layerobj->FuncCall(0, L"update", &update_hint, NULL, 4, pval, layerobj);
}
// 戻る
return TJS_S_OK;
}
} * DrawFFTGraphFunction;
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#pragma argsused
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void* lpReserved)
{
return 1;
}
//---------------------------------------------------------------------------
static tjs_int GlobalRefCountAtInit = 0;
extern "C" HRESULT _stdcall _export V2Link(iTVPFunctionExporter *exporter)
{
// スタブの初期化(必ず記述する)
TVPInitImportStub(exporter);
// TestFunction の作成と登録
tTJSVariant val;
// TJS のグローバルオブジェクトを取得する
iTJSDispatch2 * global = TVPGetScriptDispatch();
// 1 まずオブジェクトを作成
DrawFFTGraphFunction = new tDrawFFTGraphFunction();
// 2 DrawFFTGraphFunction を tTJSVariant 型に変換
val = tTJSVariant(DrawFFTGraphFunction);
// 3 すでに val が DrawFFTGraphFunction を保持しているので、
// DrawFFTGraphFunction は Release する
DrawFFTGraphFunction->Release();
// 4 global の PropSet メソッドを用い、オブジェクトを登録する
global->PropSet(
TJS_MEMBERENSURE, // メンバがなかった場合には作成するようにするフラグ
TJS_W("drawFFTGraph"), // メンバ名 ( かならず TJS_W( ) で囲む )
NULL, // ヒント ( 本来はメンバ名のハッシュ値だが、NULL でもよい )
&val, // 登録する値
global // コンテキスト ( global でよい )
);
// - global を Release する
global->Release();
// val をクリアする。
// これは必ず行う。そうしないと val が保持しているオブジェクト
// が Release されず、次に使う TVPPluginGlobalRefCount が正確にならない。
val.Clear();
// この時点での TVPPluginGlobalRefCount の値を
GlobalRefCountAtInit = TVPPluginGlobalRefCount;
TVPAddLog(TVPPluginGlobalRefCount);
// として控えておく。TVPPluginGlobalRefCount はこのプラグイン内で
// 管理されている tTJSDispatch 派生オブジェクトの参照カウンタの総計で、
// 解放時にはこれと同じか、これよりも少なくなってないとならない。
// そうなってなければ、どこか別のところで関数などが参照されていて、
// プラグインは解放できないと言うことになる。
return S_OK;
}
//---------------------------------------------------------------------------
extern "C" HRESULT _stdcall _export V2Unlink()
{
// 吉里吉里側から、プラグインを解放しようとするときに呼ばれる関数。
// もし何らかの条件でプラグインを解放できない場合は
// この時点で E_FAIL を返すようにする。
// ここでは、TVPPluginGlobalRefCount が GlobalRefCountAtInit よりも
// 大きくなっていれば失敗ということにする。
TVPAddLog(TVPPluginGlobalRefCount);
if(TVPPluginGlobalRefCount > GlobalRefCountAtInit) return E_FAIL;
// E_FAIL が帰ると、Plugins.unlink メソッドは偽を返す
// TJS のグローバルオブジェクトに登録した drawFFTGraph 関数を削除する
// - まず、TJS のグローバルオブジェクトを取得する
iTJSDispatch2 * global = TVPGetScriptDispatch();
// - global の DeleteMember メソッドを用い、オブジェクトを削除する
if(global)
{
// TJS 自体が既に解放されていたときなどは
// global は NULL になり得るので global が NULL でない
// ことをチェックする
global->DeleteMember(
0, // フラグ ( 0 でよい )
TJS_W("drawFFTGraph"), // メンバ名
NULL, // ヒント
global // コンテキスト
);
// 登録した関数が複数ある場合は これを繰り返す
}
// - global を Release する
if(global) global->Release();
// スタブの使用終了(必ず記述する)
TVPUninitImportStub();
// その他の処理
if(SampleBuffer) delete [] SampleBuffer, SampleBuffer = NULL;
if(FFTData) delete [] FFTData, FFTData = NULL;
if(WindowData) delete [] WindowData, WindowData = NULL;
if(fft_ip) delete [] fft_ip, fft_ip = NULL;
if(fft_w) delete[] fft_w, fft_w = NULL;
if(BandData) delete [] BandData, BandData = NULL;
if(BandPeakData) delete [] BandPeakData, BandPeakData = NULL;
if(BandPeakCount) delete [] BandPeakCount, BandPeakCount = NULL;
if(BandStart) delete [] BandStart, BandStart = NULL;
if(BandEnd) delete [] BandEnd, BandEnd = NULL;
return S_OK;
}
//---------------------------------------------------------------------------