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
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <math.h>
#include <qwidget.h>
#include <qstring.h>
#include <qslider.h>
#include <qcheckbox.h>
#include <qlabel.h>
#include <qvbox.h>
#include <qhbox.h>
#include <qspinbox.h>
#include <qradiobutton.h>
#include <qpushbutton.h>
#include <qdialog.h>
#include <qpainter.h>
#include <alsa/asoundlib.h>
#include "synthdata.h"
#include "m_mcv.h"
#include "port.h"
M_mcv::M_mcv(QWidget* parent, const char *name, SynthData *p_synthdata)
: Module(4, parent, name, p_synthdata) {
QString qs;
int l1;
M_type = M_type_mcv;
setGeometry(MODULE_NEW_X, MODULE_NEW_Y, MODULE_MCV_WIDTH, MODULE_MCV_HEIGHT);
port_gate_out = new Port("Gate", PORT_OUT, 0, this, synthdata);
port_gate_out->move(width() - port_gate_out->width(), 35);
port_gate_out->outType = outType_audio;
portList.append(port_gate_out);
port_note_out = new Port("Freq", PORT_OUT, 1, this, synthdata);
port_note_out->move(width() - port_note_out->width(), 55);
port_note_out->outType = outType_audio;
portList.append(port_note_out);
port_velocity_out = new Port("Velocity", PORT_OUT, 2, this, synthdata);
port_velocity_out->move(width() - port_velocity_out->width(), 75);
port_velocity_out->outType = outType_audio;
portList.append(port_velocity_out);
port_trig_out = new Port("Trigger", PORT_OUT, 3, this, synthdata);
port_trig_out->move(width() - port_trig_out->width(), 95);
port_trig_out->outType = outType_audio;
portList.append(port_trig_out);
qs.sprintf("MCV ID %d", moduleID);
configDialog->setCaption(qs);
QStrList *channelNames = new QStrList(true);
channelNames->append("RESERVED FOR LATER USE");
for (l1 = 1; l1 < 17; l1++) {
qs.sprintf("RESERVED FOR LATER USE");
channelNames->append(qs);
}
channel = 0;
pitch = 0;
pitchbend = 0;
for (l1 = 0; l1 < synthdata->poly; l1++) {
freq[l1] = 0;
trig[l1] = 0;
}
configDialog->addComboBox(0, " ", &channel, channelNames->count(), channelNames);
configDialog->addIntSlider(-36, 36, pitch, "Note Offset", &pitch);
configDialog->addSlider(-1, 1, pitchbend, "Pitch", &pitchbend);
}
M_mcv::~M_mcv() {
}
void M_mcv::noteOnEvent(int osc) {
trig[osc] = 1;
}
void M_mcv::noteOffEvent(int osc) {
}
void M_mcv::generateCycle() {
int l1, l2;
float gate, velocity, log2;
if (!cycleReady) {
cycleProcessing = true;
log2 = log(2.0);
for (l1 = 0; l1 < synthdata->poly; l1++) {
gate = ((synthdata->channel[l1] == channel-1)||(channel == 0)) && (synthdata->noteCounter[l1] < 1000000);
freq[l1] = pitchbend + float(synthdata->notes[l1]+pitch-60) / 12.0;
// if (freq[l1] < 0) freq[l1] = 0;
velocity = (float)synthdata->velocity[l1] / 127.0;
for (l2 = 0; l2 < synthdata->cyclesize; l2++) {
data[0][l1][l2] = gate;
data[1][l1][l2] = freq[l1];
data[2][l1][l2] = velocity;
}
memset(data[3][l1], 0, synthdata->cyclesize * sizeof(float));
// data[3][l1][0] = trig[l1];
data[3][l1][15] = trig[l1]; // Added for interpolated input ports (e.g. m_vcenv.cpp)
trig[l1] = 0;
}
}
cycleProcessing = false;
cycleReady = true;
}
void M_mcv::showConfigDialog() {
}
|