aboutsummaryrefslogtreecommitdiffhomepage
path: root/backends/jack.h
blob: 762282b63f49ba5e6eada4f522753df84f71c296 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include "midimonster.h"
#include <jack/jack.h>
#include <pthread.h>

MM_PLUGIN_API int init();
static int mmjack_configure(char* option, char* value);
static int mmjack_configure_instance(instance* inst, char* option, char* value);
static int mmjack_instance(instance* inst);
static channel* mmjack_channel(instance* inst, char* spec, uint8_t flags);
static int mmjack_set(instance* inst, size_t num, channel** c, channel_value* v);
static int mmjack_handle(size_t num, managed_fd* fds);
static int mmjack_start(size_t n, instance** inst);
static int mmjack_shutdown(size_t n, instance** inst);

#define JACK_DEFAULT_CLIENT_NAME "MIDIMonster"
#define JACK_DEFAULT_SERVER_NAME "default"
#define JACK_MIDIQUEUE_CHUNK 10

#define EPN_NRPN 8
#define EPN_PARAMETER_HI 4
#define EPN_PARAMETER_LO 2
#define EPN_VALUE_HI 1

enum /*mmjack_midi_channel_type*/ {
	midi_none = 0,
	midi_note = 0x90,
	midi_cc = 0xB0,
	midi_pressure = 0xA0,
	midi_aftertouch = 0xD0,
	midi_pitchbend = 0xE0,
	midi_rpn = 0xF0,
	midi_nrpn = 0xF1
};

typedef union {
	struct {
		uint32_t port;
		uint8_t sub_type;
		uint8_t sub_channel;
		uint16_t sub_control;
	} fields;
	uint64_t label;
} mmjack_channel_ident;

typedef enum /*_mmjack_port_type*/ {
	port_none = 0,
	port_midi,
	port_osc,
	port_cv
} mmjack_port_type;

typedef struct /*_mmjack_midiqueue_entry*/ {
	mmjack_channel_ident ident;
	uint16_t raw;
} mmjack_midiqueue;

typedef struct /*_mmjack_port_data*/ {
	char* name;
	mmjack_port_type type;
	uint8_t input;
	jack_port_t* port;

	double max;
	double min;
	uint8_t mark;
	double last;

	size_t queue_len;
	size_t queue_alloc;
	mmjack_midiqueue* queue;

	uint16_t epn_control[16];
	uint16_t epn_value[16];
	uint8_t epn_status[16];

	pthread_mutex_t lock;
} mmjack_port;

typedef struct /*_jack_instance_data*/ {
	char* server_name;
	char* client_name;
	int fd;

	uint8_t midi_epn_tx_short;

	jack_client_t* client;
	size_t ports;
	mmjack_port* port;
} mmjack_instance_data;