blob: ead3a6767b1607f07e6f0ce84da2d845e62d1c3b (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#ifndef __CHANNEL_H__
#define __CHANNEL_H__
#include <stdint.h>
#include <list>
#include "fixed.h"
#include "programs.h"
#include "note.h"
#include "defines.h"
#include "util.h"
class Channel
{
public:
Channel();
~Channel();
fixed_t get_sample();
void event(uint8_t a, uint8_t b, uint8_t c);
void set_controller(int con,int val);
void set_program(int prog);
void set_pitch_bend(float val);
void note_on(int note, int vel);
void note_off(int note);
void cleanup();
void release_all();
void panic();
void set_real_portamento_frames();
void set_portamento_time(int val);
void set_portamento(int val);
void set_volume(int val);
void set_balance(int val);
void set_n_voices(int val);
void set_quick_release(int val);
void reset_controllers();
float balL, balR;
private:
void recalc_param(const parameter_t &par, program_t &prg);
void set_user_controller(int con, int val);
void apply_voice_limit();
fixed_t volume;
fixed_t portamento_frames, portamento_frames2;
int program;
program_t curr_prg;
fixed_t pitchbend;
float max_pitchbend;
std::list<Note*> notes;
bool always_reattack;
bool do_portamento;
int n_voices;
jack_nframes_t quick_release;
};
#endif
|