-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvirtualmachine.cpp
858 lines (771 loc) · 21.3 KB
/
virtualmachine.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
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
/*
Virtual machine for running basic DSP programs
Copyright 2006-2016
Niels A. Moseley
Pieter-Tjerk de Boer
License: GPLv2
*/
#include <QDebug>
#include <QMutexLocker>
#include <math.h>
#include <stdint.h>
#include <stdlib.h>
#include <ostream>
#include <algorithm>
#include "virtualmachine.h"
int32_t VM::findVariableByName(const variables_t &vars, const std::string &name)
{
size_t N = vars.size();
size_t i=0;
while(i<N)
{
if (vars[i].m_name == name)
return (int32_t)i;
i++;
}
return -1;
}
static int portaudioCallback(
const void *inputBuffer,
void *outputBuffer,
unsigned long framesPerBuffer,
const PaStreamCallbackTimeInfo* timeInfo,
PaStreamCallbackFlags statusFlags,
void *userData )
{
(statusFlags);
(timeInfo);
/* Cast data passed through stream to our structure. */
const float *inbuf = (const float*)inputBuffer;
float *outbuf = (float*)outputBuffer;
if (userData != 0)
{
VirtualMachine *machine = (VirtualMachine*)userData;
machine->processSamples(inbuf, outbuf, framesPerBuffer);
}
return paContinue;
}
VirtualMachine::VirtualMachine(QMainWindow *guiWindow)
: m_guiWindow(guiWindow),
m_stream(0),
m_runState(false)
{
Pa_Initialize();
for(uint32_t i=0; i<4; i++)
{
m_monitorVar[i] = NULL;
}
m_inDevice = Pa_GetDefaultInputDevice();
m_outDevice = Pa_GetDefaultOutputDevice();
m_sampleRate = 44100.0f;
/* Allocate ring buffers for GUI I/O.
The ring buffers are 16384 floats,
which is approx 750ms of data at
44100. The GUI thread must retrieve
the data within this time.
The number of floats must be a power
of two!
*/
for(uint32_t i=0; i<2; i++)
{
void *dataptr = new ring_buffer_data_t[32768];
PaUtil_InitializeRingBuffer(&m_ringbuffer[i], sizeof(ring_buffer_data_t),
32768, dataptr);
}
init();
m_source = SRC_SOUNDCARD;
}
VirtualMachine::~VirtualMachine()
{
Pa_Terminate();
// de-allocate the ring buffer data
for(uint32_t i=0; i<2; i++)
{
delete m_ringbuffer[i].buffer;
}
}
void VirtualMachine::init()
{
m_lout = 0;
m_lin = 0;
m_rout = 0;
m_rin = 0;
m_in = 0;
m_out = 0;
m_slider[0] = 0;
m_slider[1] = 0;
m_slider[2] = 0;
m_slider[3] = 0;
m_leftLevel = 0.0f;
m_rightLevel = 0.0f;
m_phaseaccu = 0.0f;
m_freq = 0.0f;
// flush the data in the ring buffers
for(uint32_t i=0; i<2; i++)
{
PaUtil_FlushRingBuffer(&m_ringbuffer[i]);
}
}
PaUtilRingBuffer* VirtualMachine::getRingBufferPtr(uint32_t ringBufID)
{
if (ringBufID<2)
{
return &m_ringbuffer[ringBufID];
}
return NULL;
}
bool VirtualMachine::setMonitoringVariable(uint32_t ringBufID, uint32_t channel, const std::string &varname)
{
QMutexLocker lock(&m_controlMutex);
qDebug() << "setMonitoringVariable called";
if (ringBufID > 1)
return false;
if (channel > 1)
return false;
int32_t idx = VM::findVariableByName(m_vars, varname);
if (idx < 0)
{
// variable not found
m_monitorVar[ringBufID*2 + channel] = NULL;
return false;
}
qDebug() << "setMonitoringVariable " << varname.c_str();
m_monitorVar[ringBufID*2 + channel] = &(m_vars[idx].m_value);
return true;
}
bool VirtualMachine::hasAudioFile()
{
QMutexLocker lock(&m_controlMutex);
if (m_wavstreamer.isOK())
{
return true;
}
return false;
}
bool VirtualMachine::setAudioFile(const QString &filename)
{
QMutexLocker lock(&m_controlMutex);
if (m_wavstreamer.openFile(filename) != 0)
{
return false;
}
return true;
}
void VirtualMachine::loadProgram(const VM::program_t &program, const VM::variables_t &variables)
{
QMutexLocker lock(&m_controlMutex);
init();
m_vars = variables;
m_program = program;
// find the lout, rout, lin, rin, in, out
// variables.
int32_t idx = VM::findVariableByName(m_vars, "inl");
if (idx != -1) m_lin = &(m_vars[idx].m_value);
idx = VM::findVariableByName(m_vars, "inr");
if (idx != -1) m_rin = &(m_vars[idx].m_value);
idx = VM::findVariableByName(m_vars, "outl");
if (idx != -1) m_lout = &(m_vars[idx].m_value);
idx = VM::findVariableByName(m_vars, "outr");
if (idx != -1) m_rout = &(m_vars[idx].m_value);
idx = VM::findVariableByName(m_vars, "out");
if (idx != -1) m_out = &(m_vars[idx].m_value);
idx = VM::findVariableByName(m_vars, "in");
if (idx != -1) m_in = &(m_vars[idx].m_value);
// setup sliders
idx = VM::findVariableByName(m_vars, "slider1");
if (idx != -1) m_slider[0] = &(m_vars[idx].m_value);
idx = VM::findVariableByName(m_vars, "slider2");
if (idx != -1) m_slider[1] = &(m_vars[idx].m_value);
idx = VM::findVariableByName(m_vars, "slider3");
if (idx != -1) m_slider[2] = &(m_vars[idx].m_value);
idx = VM::findVariableByName(m_vars, "slider4");
if (idx != -1) m_slider[3] = &(m_vars[idx].m_value);
// setup sample rate
idx = VM::findVariableByName(m_vars, "samplerate");
if (idx != -1)
{
m_vars[idx].m_value = m_sampleRate;
}
// setup the delay lines
for(uint32_t i=0; i<m_vars.size(); i++)
{
if (m_vars[i].m_type != varInfo::TYPE_DELAY)
continue;
if (m_vars[i].m_data != 0)
{
delete[] m_vars[i].m_data;
}
m_vars[i].m_idx = 0;
m_vars[i].m_data = new float[m_vars[i].m_length];
memset(m_vars[i].m_data, 0, sizeof(float)*m_vars[i].m_length);
}
}
void VirtualMachine::setupSoundcard(PaDeviceIndex inDevice, PaDeviceIndex outDevice, float sampleRate)
{
qDebug() << "VirtualMachine::setupSoundcard";
qDebug() << " in: " << inDevice;
qDebug() << " out: " << outDevice;
qDebug() << " rate: " << sampleRate;
// stop the virtual machine
// no mutex needed here, as it's handled in the
// stop() function itself.
stop();
m_inDevice = inDevice;
m_outDevice = outDevice;
m_sampleRate = sampleRate;
}
bool VirtualMachine::start()
{
qDebug() << "VirtualMachine::start()";
QMutexLocker lock(&m_controlMutex);
// check if portaudio is already running
if (m_stream != 0)
{
m_runState = false;
Pa_AbortStream(m_stream);
Pa_CloseStream(m_stream);
}
m_leftLevel = 0.0f;
m_rightLevel = 0.0f;
const double sampleRate = m_sampleRate;
const uint32_t framesPerBuffer = 0;
PaSampleFormat sampleFormat = paFloat32;
PaStreamParameters inputParams;
PaStreamParameters outputParams;
memset(&inputParams, 0, sizeof(inputParams));
inputParams.device = m_inDevice;
inputParams.suggestedLatency = 0.2f;
inputParams.channelCount = 2;
inputParams.suggestedLatency = 0.2;
inputParams.sampleFormat = sampleFormat;
memset(&outputParams, 0, sizeof(outputParams));
outputParams.device = m_outDevice;
outputParams.suggestedLatency = 0.2f;
outputParams.channelCount = 2;
outputParams.suggestedLatency = 0.2;
outputParams.sampleFormat = sampleFormat;
PaError error = Pa_OpenStream(
&m_stream,
&inputParams,
&outputParams,
sampleRate,
framesPerBuffer,
0,
portaudioCallback,
this);
if (error == paNoError)
{
error = Pa_StartStream(m_stream);
if (error == paNoError)
{
qDebug() << "Stream started!";
m_runState = true;
return true;
}
}
else
{
if (error == paUnanticipatedHostError)
{
const PaHostErrorInfo *info = Pa_GetLastHostErrorInfo();
qDebug() << "Portaudio host error: " << info->errorText << "\n";
}
else
{
qDebug() << "Portaudio: " << Pa_GetErrorText(error) << "\n";
}
}
return false;
}
void VirtualMachine::stop()
{
QMutexLocker lock(&m_controlMutex);
if (m_stream != 0)
{
Pa_AbortStream(m_stream);
Pa_CloseStream(m_stream);
m_stream = 0;
}
m_leftLevel = 0.0f;
m_rightLevel = 0.0f;
m_runState = false;
}
void VirtualMachine::setSlider(uint32_t id, float value)
{
QMutexLocker lock(&m_controlMutex);
if (id < 4)
{
if (m_slider[id] != 0)
{
*m_slider[id]=value;
}
}
}
void VirtualMachine::setSource(src_t source)
{
QMutexLocker locker(&m_controlMutex);
m_source = source;
}
void VirtualMachine::setFrequency(double Hz)
{
QMutexLocker locker(&m_controlMutex);
m_freq = Hz;
}
void VirtualMachine::processSamples(const float *inbuf, float *outbuf,
uint32_t framesPerBuffer)
{
// as this is a time-critical function that is
// called by the audio subsystem
// blocking it is not a good idea
// therefore, we'll try to lock the mutex
// but if that fails, we return a muted buffer
//
bool success = m_controlMutex.tryLock();
if (!success)
{
for(uint32_t i=0; i<framesPerBuffer; i++)
{
*outbuf++ = 0.0f;
*outbuf++ = 0.0f;
}
return;
}
// todo: make multiplier respect the frames per buffer
// so we get block-size independent VU meter behaviour.
m_leftLevel *= 0.9f;
m_rightLevel *= 0.9f;
float wavBuffer[2];
for(uint32_t i=0; i<framesPerBuffer; i++)
{
float left;
float right;
switch(m_source)
{
default:
case SRC_SOUNDCARD:
left = *inbuf++;
right = *inbuf++;
break;
case SRC_WAV:
m_wavstreamer.fillBuffer(wavBuffer, 1);
left = wavBuffer[0];
right = wavBuffer[1];
break;
case SRC_NOISE:
left = -1.0f+2.0f*static_cast<float>(rand())/RAND_MAX;
right = -1.0f+2.0f*static_cast<float>(rand())/RAND_MAX;
break;
case SRC_SINE:
left = cos(2.0f*3.1415927f*m_phaseaccu);
right = left;
m_phaseaccu += (m_freq / m_sampleRate);
if (m_phaseaccu > 1.0f)
{
m_phaseaccu -= 1.0f;
}
else if (m_phaseaccu < 0.0f)
{
// safety check
m_phaseaccu = 0.0f;
}
break;
case SRC_QUADSINE:
left = cos(2.0f*3.1415927f*m_phaseaccu);
right = sin(2.0f*3.1415927f*m_phaseaccu);
m_phaseaccu += (m_freq / m_sampleRate);
if (m_phaseaccu > 1.0f)
{
m_phaseaccu -= 1.0f;
}
else if (m_phaseaccu < -1.0f)
{
m_phaseaccu += 1.0f;
}
break;
case SRC_IMPULSE:
left = 0.0f;
right = 0.0f;
}
float left_abs = fabs(left);
float right_abs = fabs(right);
if (left_abs > m_leftLevel)
{
m_leftLevel = left_abs;
}
if (right_abs > m_rightLevel)
{
m_rightLevel = right_abs;
}
executeProgram(left, right, outbuf[i<<1], outbuf[(i<<1)+1]);
ring_buffer_data_t scope;
ring_buffer_data_t spectrum;
if (m_monitorVar[0] != NULL)
{
scope.s1 = *m_monitorVar[0];
}
else
{
scope.s1 = 0;
}
if (m_monitorVar[1] != NULL)
{
scope.s2 = *m_monitorVar[1];
}
else
{
scope.s2 = 0;
}
if (m_monitorVar[2] != NULL)
{
spectrum.s1 = *m_monitorVar[2];
}
else
{
spectrum.s1 = 0;
}
if (m_monitorVar[3] != NULL)
{
spectrum.s2 = *m_monitorVar[3];
}
else
{
spectrum.s2 = 0;
}
PaUtil_WriteRingBuffer(&m_ringbuffer[0], &scope, 1);
PaUtil_WriteRingBuffer(&m_ringbuffer[1], &spectrum, 1);
}
m_controlMutex.unlock();
}
uint32_t VirtualMachine::execFIR(uint32_t n, float *stack)
{
return 0;
}
uint32_t VirtualMachine::execBiquad(uint32_t n, float *stack)
{
return 0;
}
void VirtualMachine::executeProgram(float inLeft, float inRight, float &outLeft, float &outRight)
{
const size_t instructions = m_program.size();
size_t pc = 0; // program counter
size_t sp = 0; // stack pointer
float stack[2048];
// check if we have a program ..
// or if we're not running...
if ((instructions == 0) || (!m_runState))
{
outLeft = 0.0f;
outRight = 0.0f;
return;
}
// setup input signal
if (m_in != 0)
{
*m_in = (inLeft + inRight) / 2.0f;
}
if (m_lin != 0)
{
*m_lin = inLeft;
}
if (m_rin != 0)
{
*m_rin = inRight;
}
while(pc < instructions)
{
VM::instruction_t instruction = m_program[pc++];
int32_t offset; // for delay access
if (instruction.icode & 0x80000000)
{
// special instruction with additional parameter
uint32_t n = instruction.icode & 0xFFFF;
switch(instruction.icode & 0xff000000)
{
case P_readvar: // push
stack[sp++] = m_vars[n].m_value;
break;
case P_writevar: // pop
m_vars[n].m_value = stack[--sp];
break;
case P_fir:
sp-=execFIR(n, stack+sp);
break;
case P_biquad:
sp-=execBiquad(n, stack+sp);
break;
case P_writedelay: // write to the start of the delay
m_vars[n].m_data[m_vars[n].m_idx] = stack[--sp];
break;
case P_readdelay: // read from the delay
offset = std::floor(stack[sp-1]); // get offset of delay
offset = (m_vars[n].m_idx+offset) % m_vars[n].m_length;
stack[sp-1] = m_vars[n].m_data[offset];
break;
default:
// TODO: produce error
break;
}
}
else
{
switch(instruction.icode)
{
case P_add:
sp--;
stack[sp-1]+=stack[sp];
break;
case P_sub:
sp--;
stack[sp-1]=stack[sp-1]-stack[sp];
//qDebug() << stack[sp-1];
break;
case P_mul:
sp--;
stack[sp-1]*=stack[sp];
break;
case P_div:
sp--;
stack[sp-1]/=stack[sp];
break;
case P_neg:
stack[sp-1]=-stack[sp-1];
break;
case P_sin:
stack[sp-1]=sin(stack[sp-1]);
break;
case P_tan:
stack[sp-1]=tan(stack[sp-1]);
break;
case P_tanh:
stack[sp-1]=tanh(stack[sp-1]);
break;
case P_cos:
stack[sp-1]=cos(stack[sp-1]);
break;
case P_sin1:
stack[sp-1]=sin(2.0f*M_PI*stack[sp-1]);
break;
case P_cos1:
stack[sp-1]=cos(2.0f*M_PI*stack[sp-1]);
break;
case P_literal:
stack[sp++]=m_program[pc].value;
pc++;
break;
//case P_print:
// printf("%f\n",stack[--sp]);
// break;
case P_mod1:
stack[sp-1]=stack[sp-1]-(int)stack[sp-1];
break;
case P_abs:
stack[sp-1]=fabs(stack[sp-1]);
break;
case P_sqrt:
stack[sp-1]=sqrt(stack[sp-1]);
break;
case P_round:
//sp--;
//if (stack[sp]!=0.0f)
// stack[sp-1]=stack[sp]*round(stack[sp-1]/stack[sp]);
stack[sp-1]=round(stack[sp-1]);
break;
case P_pow:
sp--;
stack[sp-1]=pow(stack[sp-1],stack[sp]);
break;
case P_limit:
stack[sp-1]=std::min(stack[sp-1],1.0f);
stack[sp-1]=std::max(stack[sp-1],-1.0f);
break;
case P_atan2:
sp--;
stack[sp-1]=atan2(stack[sp-1],stack[sp]);
break;
case P_sign:
if (stack[sp-1] >= 0.0f)
stack[sp-1]=1.0f;
else
stack[sp-1]=-1.0f;
break;
case P_noise:
stack[sp++]=-1.0f+2.0f*static_cast<float>(rand())/RAND_MAX;
break;
case P_trunc:
stack[sp-1] = std::trunc(stack[sp-1]);
break;
case P_ceil:
stack[sp-1] = std::ceil(stack[sp-1]);
break;
case P_floor:
stack[sp-1] = std::floor(stack[sp-1]);
break;
case P_choose:
sp-=2;
if (stack[sp-1] >= 0.0f)
{
stack[sp-1]=stack[sp];
}
else
{
stack[sp-1]=stack[sp+1];
}
break;
default:
// TODO: produce error
break;
}
}
if (sp>2044)
{
// stack overflow!
return;
}
}
if (m_out != 0)
{
outLeft = *m_out;
outRight = *m_out;
}
else
{
if (m_lout != 0)
{
outLeft = *m_lout;
}
else
{
outLeft = 0.0f;
}
if (m_rout != 0)
{
outRight = *m_rout;
}
else
{
outRight = 0.0f;
}
}
// update the delay line pointers
for(uint32_t i=0; i<m_vars.size(); i++)
{
if (m_vars[i].m_type == varInfo::TYPE_DELAY)
{
m_vars[i].m_idx--;
if (m_vars[i].m_idx < 0)
{
m_vars[i].m_idx = m_vars[i].m_length-1;
}
}
}
}
void VirtualMachine::dump(std::ostream &s)
{
QMutexLocker lock(&m_controlMutex);
s << "-- VIRTUAL MACHINE PROGRAM --\n\n";
size_t N = m_program.size();
for(size_t i=0; i<N; i++)
{
uint32_t varIdx = m_program[i].icode & 0xFFFF; // variable index)
if (m_program[i].icode & 0x80000000)
{
switch(m_program[i].icode & 0xff000000)
{
case P_readvar:
s << "READ " << m_vars[varIdx].m_name.c_str() << "\n";
break;
case P_writevar:
s << "WRITE " << m_vars[varIdx].m_name.c_str() << "\n";
break;
case P_readdelay:
s << "READDELAY " << m_vars[varIdx].m_name.c_str() << "\n";
break;
case P_writedelay:
s << "WRITEDELAY " << m_vars[varIdx].m_name.c_str() << "\n";
break;
default:
s << "UNKNOWN\n";
break;
}
}
else
{
switch(m_program[i].icode)
{
case P_add:
s << "ADD\n";
break;
case P_sub:
s << "SUB\n";
break;
case P_mul:
s << "MUL\n";
break;
case P_div:
s << "DIV\n";
break;
case P_literal:
s << "LOAD " << m_program[i+1].value << "\n";
i++;
break;
case P_sin:
s << "SIN\n";
break;
case P_cos:
s << "COS\n";
break;
case P_sin1:
s << "SIN1\n";
break;
case P_cos1:
s << "COS1\n";
break;
case P_mod1:
s << "MOD1\n";
break;
case P_abs:
s << "ABS\n";
break;
case P_tan:
s << "TAN\n";
break;
case P_tanh:
s << "TANH\n";
break;
case P_pow:
s << "POW\n";
break;
case P_sqrt:
s << "SQRT\n";
break;
case P_round:
s << "ROUND\n";
break;
case P_limit:
s << "LIMIT\n";
break;
case P_atan2:
s << "ATAN2\n";
break;
case P_noise:
s << "NOISE\n";
break;
case P_trunc:
s << "TRUNC\n";
break;
case P_ceil:
s << "CEIL\n";
break;
case P_floor:
s << "FLOOR\n";
break;
case P_choose:
s << "CHOOSE\n";
break;
default:
s << "UNKNOWN\n";
break;
}
}
}
}