aboutsummaryrefslogtreecommitdiff
path: root/core/qmpmidioutrtmidi.hpp
blob: 23adec612eb68ea952ee98c7f4efa9023ad971b0 (plain) (blame)
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
#ifndef QMPMIDIMAPPERS_H
#define QMPMIDIMAPPERS_H
#include <unordered_map>
#include <vector>
#define QMP_MAIN
#include "../include/qmpcorepublic.hpp"
#include RT_MIDI_H
struct qmpDeviceInitializer
{
	CMidiTrack initseq;
	struct BankStore
	{
		std::unordered_map<uint8_t,std::string> presets;
		std::string bankname;
	};
	std::unordered_map<uint16_t,BankStore> banks;
	uint8_t initv[130];

	static qmpDeviceInitializer* parse(const char* path);
};
class qmpMidiOutRtMidi:public qmpMidiOutDevice
{
private:
	unsigned portid;
	RtMidiOut* outport;
public:
	qmpMidiOutRtMidi(unsigned _portid);
	~qmpMidiOutRtMidi();
	void deviceInit();
	void deviceDeinit();
	void basicMessage(uint8_t type,uint8_t p1,uint8_t p2);
	void extendedMessage(uint8_t length,const char *data);
	void rpnMessage(uint8_t ch,uint16_t type,uint16_t val);
	void nrpnMessage(uint8_t ch,uint16_t type,uint16_t val);
	void panic(uint8_t ch);
	void reset(uint8_t ch);
	void onMapped(uint8_t ch,int refcnt);
	void onUnmapped(uint8_t ch,int refcnt);
	std::vector<std::pair<uint16_t,std::string>> getBankList();
	std::vector<std::pair<uint8_t,std::string>> getPresets(int bank);
	std::string getPresetName(uint16_t bank,uint8_t preset);
	bool getChannelPreset(int ch,uint16_t *bank,uint8_t *preset,std::string &presetname);
	uint8_t getInitialCCValue(uint8_t cc);
};
class qmpRtMidiManager
{
	private:
		static RtMidiOut* dummy;
		std::vector<std::pair<qmpMidiOutRtMidi*,std::string>> devices;
	public:
		void createDevices();
		void deleteDevices();
		std::vector<std::pair<qmpMidiOutRtMidi*,std::string>> getDevices();
};
#endif // QMPMIDIMAPPERS_H