blob: 21e16157b28bab5d16c3234011747c01d7f3809c (
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
64
65
66
67
68
69
70
71
72
73
74
75
|
#ifndef __DRUMGIZMO_JACKCLIENT_H__
#define __DRUMGIZMO_JACKCLIENT_H__
#include <vector>
#include <jack/jack.h>
#include <jack/midiport.h>
#include "drumkit.h"
#include "event.h"
#include "sample.h"
#include "midimapper.h"
#include "beatmapper.h"
typedef std::vector< jack_port_t *> Ports;
class JackClient {
public:
JackClient(DrumKit *drumkit);
~JackClient();
void activate();
void shutdown();
int process(jack_nframes_t nframes);
void thread_init();
void freewheel_mode(int freewheel_mode);
int buffer_size(jack_nframes_t nframes);
int sample_rate(jack_nframes_t nframes);
void port_registration(jack_port_id_t port, int i);
int graph_order();
int xrun();
private:
jack_client_t *jack_client;
Ports output_ports;
jack_port_t *midi_port;
Events events;
DrumKit *drumkit;
MidiMapper midimapper;
std::vector< BeatMapper* > beatmappers;
};
#endif
|