File: m_cvs.cpp

package info (click to toggle)
ams 1.8.7-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,880 kB
  • ctags: 2,171
  • sloc: cpp: 17,793; makefile: 433; sh: 101
file content (72 lines) | stat: -rw-r--r-- 1,821 bytes parent folder | download | duplicates (3)
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
#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_cvs.h"
#include "port.h"

M_cvs::M_cvs(QWidget* parent, const char *name, SynthData *p_synthdata) 
              : Module(MODULE_CVS_CV_COUNT, parent, name, p_synthdata) {

  QString qs;
  int l1;

  M_type = M_type_cvs;
  setGeometry(MODULE_NEW_X, MODULE_NEW_Y, MODULE_CVS_WIDTH, MODULE_CVS_HEIGHT);
  for (l1 = 0; l1 < MODULE_CVS_CV_COUNT; l1++) {
    qs.sprintf("CV %d", l1);
    port_cv_out[l1] = new Port(qs, PORT_OUT, l1, this, synthdata);          
    port_cv_out[l1]->move(width() - port_cv_out[l1]->width(), 35 + 20 * l1);
    port_cv_out[l1]->outType = outType_audio;
    portList.append(port_cv_out[l1]);
  }
  qs.sprintf("CVS ID %d", moduleID);
  configDialog->setCaption(qs);
  for (l1 = 0; l1 < MODULE_CVS_CV_COUNT; l1++) {
    cv[l1] = 0;
    cv_fine[l1] = 0;
    qs.sprintf("CV %d", l1);
    configDialog->addSlider(0, 5, cv[l1], qs, &cv[l1]);
    qs.sprintf("CV %d Fine", l1); 
    configDialog->addSlider(-0.5, 0.5, cv_fine[l1], qs, &cv_fine[l1]);
  }
}

M_cvs::~M_cvs() {

}

void M_cvs::generateCycle() {

  int l1, l2, l3;

  if (!cycleReady) {
    cycleProcessing = true;
    for (l3 = 0; l3 < MODULE_CVS_CV_COUNT; l3++) {
      for (l1 = 0; l1 < synthdata->poly; l1++) {
        for (l2 = 0; l2 < synthdata->cyclesize; l2++) {
          data[l3][l1][l2] = cv[l3] + cv_fine[l3];
        }
      }
    }
  }
  cycleProcessing = false;
  cycleReady = true;
}

void M_cvs::showConfigDialog() {
}