summaryrefslogtreecommitdiff
path: root/src/mdaPiano.h
blob: e808a099a962fef12e7df6bd525092a325067241 (about) (plain)
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
//See associated .cpp file for copyright and other info

#ifndef MDA_PIANO_H
#define MDA_PIANO_H

#pragma GCC system_header
#include "mdaPianoVoice.h"
#include "mdaPiano.peg"
#include <lv2synth.hpp>


class mdaPiano : public LV2::Synth<mdaPianoVoice, mdaPiano> {
public:
  mdaPiano(double rate);
  ~mdaPiano() {
    free(waves);
  }

  void load_kgrp(KGRP*);
  void load_samples(short**);

  unsigned find_free_voice(unsigned char, unsigned char);
  void handle_midi(uint32_t size, unsigned char* data);
  void setVolume(float);
  void setParameter(unsigned char, float);


private:
  void update();  //my parameter update
  void noteOn(uint32_t note, uint32_t velocity);

  float param[NPARAMS];
  float Fs, iFs;

  ///global internal variables
  KGRP  kgrp[16];
  mdaPianoVoice *voices[NVOICES];
  short *waves;
  uint32_t sustain;
};

#endif