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
|
#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 <qtimer.h>
#include <qfiledialog.h>
#include "synthdata.h"
#include "m_pcmout.h"
#include "module.h"
#include "port.h"
M_pcmout::M_pcmout(QWidget* parent, const char *name, SynthData *p_synthdata, int port)
: Module(0, parent, name, p_synthdata)
{
QString qs;
M_type = M_type_pcmout;
setGeometry(MODULE_NEW_X, MODULE_NEW_Y, MODULE_PCMOUT_WIDTH, MODULE_PCMOUT_HEIGHT);
gain = 0.5;
mixer_gain[0] = 0.5;
mixer_gain[1] = 0.5;
agc = 0;
qs.sprintf (" -> Out %2d", port);
port_in[0] = new Port(qs, PORT_IN, 0, this, synthdata);
port_in[0]->move(0, 35);
port_in[0]->outTypeAcceptList.append(outType_audio);
portList.append(port_in[0]);
qs.sprintf(" -> Out %2d", port + 1);
port_in[1] = new Port(qs, PORT_IN, 1, this, synthdata);
port_in[1]->move(0, 55);
port_in[1]->outTypeAcceptList.append(outType_audio);
portList.append(port_in[1]);
qs.sprintf("Alsa / Pcm Out ID %d", moduleID);
configDialog->setCaption(qs);
configDialog->addSlider(0, 1, gain, "Gain", &gain, false);
configDialog->addSlider(0, 1, mixer_gain[0], "Volume 1", &mixer_gain[0], false);
configDialog->addSlider(0, 1, mixer_gain[1], "Volume 2", &mixer_gain[1], false);
QStrList *agcNames = new QStrList(true);
agcNames->append("Disabled");
agcNames->append("Enabled");
configDialog->addComboBox(agc, "Automatic Gain Control", &agc, agcNames->count(), agcNames);
pcmdata[0] = new float[synthdata->periodsize];
pcmdata[1] = new float[synthdata->periodsize];
}
M_pcmout::~M_pcmout()
{
delete[] pcmdata[0];
delete[] pcmdata[1];
}
void M_pcmout::generateCycle()
{
int l1, l2, l3;
float max, mixgain, **indata, polyroot;
polyroot = sqrt((double)synthdata->poly);
for (l1 = 0; l1 < 2; l1++)
{
memset(pcmdata[l1], 0, synthdata->cyclesize * sizeof(float));
indata = port_in [l1]->getinputdata ();
if (indata != synthdata->zeroModuleData)
{
mixgain = gain * mixer_gain[l1] / polyroot;
for (l2 = 0; l2 < synthdata->cyclesize; l2++)
{
for (l3 = 0; l3 < synthdata->poly; l3++)
{
pcmdata[l1][l2] += mixgain * indata [l3][l2];
}
}
if (agc)
{
max = 0;
for (l2 = 0; l2 < synthdata->cyclesize; l2++)
{
if (max < fabs(pcmdata[l1][l2])) max = fabs(pcmdata[l1][l2]);
}
if (max > 0.9)
{
max = 0.9 / max;
for (l2 = 0; l2 < synthdata->cyclesize; l2++) pcmdata[l1][l2] *= max;
}
}
}
}
}
void M_pcmout::showConfigDialog() {
}
|