summaryrefslogtreecommitdiff
path: root/libs/midi++2/mmctest.cc
blob: 52eeafa55f695115c67b00c633c3037a13d1eca4 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
 * Copyright (C) 2006-2015 Paul Davis <paul@linuxaudiosystems.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include <cstdio>
#include <fcntl.h>

#include "pbd/error.h"
#include "pbd/textreceiver.h"

Transmitter error (Transmitter::Error);
Transmitter info (Transmitter::Info);
Transmitter warning (Transmitter::Warning);
Transmitter fatal (Transmitter::Fatal);
TextReceiver text_receiver ("mmctest");

#include "midi++/port.h"
#include "midi++/manager.h"
#include "midi++/mmc.h"

using namespace MIDI;
using namespace PBD;

Port *port;
PortRequest midi_device;
Parser *parser;
MachineControl *mmc;
MachineControl::CommandSignature cs;
MachineControl::ResponseSignature rs;

int
setup_midi ()

{
	midi_device.devname = "/dev/snd/midiC0D0";
	midi_device.tagname = "trident";
	midi_device.mode = O_RDWR;
	midi_device.type = Port::ALSA_RawMidi;

	if ((port = MIDI::Manager::instance()->add_port (midi_device)) == 0) {
		info << "MIDI port is not valid" << endmsg;
		return -1;
	}

	mmc = new MachineControl (*port, 0.0, cs, rs);

	return 0;
}

void
do_deferred_play (MachineControl &mmc)

{
	cout << "Deferred Play" << endl;
}

void
do_stop (MachineControl &mmc)

{
	cout << "Stop" << endl;
}

void
do_ffwd (MachineControl &mmc)

{
	cout << "Fast Forward" << endl;
}

void
do_rewind (MachineControl &mmc)

{
	cout << "Rewind" << endl;
}

void
do_record_status (MachineControl &mmc, size_t track, bool enabled)

{
	cout << "Track " << track + 1 << (enabled ? " enabled" : " disabled")
	     << endl;
}

main (int argc, char *argv[])

{
	byte buf[1];

	text_receiver.listen_to (error);
	text_receiver.listen_to (info);
	text_receiver.listen_to (fatal);
	text_receiver.listen_to (warning);

	if (setup_midi ()) {
		exit (1);
	}


	mmc->DeferredPlay.connect (mem_fun (do_deferred_play));
	mmc->FastForward.connect (mem_fun (do_ffwd));
	mmc->Rewind.connect (mem_fun (do_rewind));
	mmc->Stop.connect (mem_fun (do_stop));
	mmc->TrackRecordStatusChange.connect (mem_fun (do_record_status));

	while (1) {
		if (port->read (buf, 1) < 0) {
			error << "cannot read byte"
			      << endmsg;
			break;
		}
	}
}