summaryrefslogtreecommitdiff
path: root/src/mdaPiano.h
blob: ffb26c8432ccd678ffe9e334f433555c5f0fe09d (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
#ifndef MDA_PIANO_H
#define MDA_PIANO_H
//See associated .cpp file for copyright and other info

#include "mdaPianoVoice.h"
#include "ports.peg"

#pragma GCC system_header
#include <lvtk/synth.hpp>
#include <stdio.h>


class mdaPiano : public lvtk::Synth<mdaPianoVoice, mdaPiano> {
public:
  mdaPiano(double);
  ~mdaPiano() {
    for (unsigned char i = 0; i < NSAMPLES; i++) {
      free(samples[i].buffer);
    }
    free(samples);
  }

  bool sustain;
  KGRP kgrp[NSAMPLES];
  mdaPianoVoice *voices[NVOICES];
  Sample *samples = (Sample*) malloc (NSAMPLES * sizeof(Sample));

  void load_kgrp(KGRP*);
  void load_sample(Sample*, const char*);
  void tweak_sample(Sample*, long);

  unsigned find_free_voice(unsigned char, unsigned char);
  void handle_midi(uint32_t, unsigned char*);
  void setVolume(float);
  void update(void);
};

#endif