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
|
#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_sh.h"
#include "port.h"
M_sh::M_sh(QWidget* parent, const char *name, SynthData *p_synthdata)
: Module(2, parent, name, p_synthdata) {
QString qs;
M_type = M_type_sh;
setGeometry(MODULE_NEW_X, MODULE_NEW_Y, MODULE_SH_WIDTH, MODULE_SH_HEIGHT);
port_M_in = new Port("In", PORT_IN, 0, this, synthdata);
port_M_in->move(0, 35);
port_M_in->outTypeAcceptList.append(outType_audio);
portList.append(port_M_in);
port_M_trig = new Port("Trigger", PORT_IN, 1, this, synthdata);
port_M_trig->move(0, 55);
port_M_trig->outTypeAcceptList.append(outType_audio);
portList.append(port_M_trig);
port_out = new Port("Out", PORT_OUT, 0, this, synthdata);
port_out->move(width() - port_out->width(), 35);
port_out->outType = outType_audio;
portList.append(port_out);
port_gate = new Port("Gate", PORT_OUT, 1, this, synthdata);
port_gate->move(width() - port_gate->width(), 55);
port_gate->outType = outType_audio;
portList.append(port_gate);
qs.sprintf("Sample & Hold ID %d", moduleID);
configDialog->setCaption(qs);
triggerLevel = 0.5;
configDialog->addSlider(0, 10, triggerLevel, "Trigger Level", &triggerLevel);
sample = 0;
gate = false;
}
M_sh::~M_sh() {
}
void M_sh::generateCycle() {
int l1, l2;
if (!cycleReady) {
cycleProcessing = true;
inData = port_M_in->getinputdata ();
trigData = port_M_trig->getinputdata ();
for (l1 = 0; l1 < synthdata->poly; l1++) {
for (l2 = 0; l2 < synthdata->cyclesize; l2++) {
if ( !gate && (trigData[l1][l2] > triggerLevel)) {
sample = inData[l1][l2];
gate = true;
} else {
gate = trigData[l1][l2] > triggerLevel;
}
data[0][l1][l2] = sample;
data[1][l1][l2] = (gate) ? 1 : 0;
}
}
}
cycleProcessing = false;
cycleReady = true;
}
void M_sh::showConfigDialog() {
}
|