ardour/libs/midi++2/mmctest.cc
David Robillard e0aaed6d65 *** NEW CODING POLICY ***
All #include statements that include a header that is a part of a library
bundled with ardour MUST use quotes, not angle brackets.

Do this:

#include "ardour/types.h"

NOT this:

#include <ardour/types.h>

Rationale:

This is best practice in general, to ensure we include the local version
and not the system version.  That quotes mean "local" (in some sense)
and angle brackets mean "system" (in some sense) is a ubiquitous
convention and IIRC right in the C spec somewhere.

More pragmatically, this is required by (my) waf (stuff) for dependencies
to work correctly.  That is:

!!! FAILURE TO DO THIS CAN RESULT IN BROKEN BUILDS !!!

Failure to comply is punishable by death by torture. :)

P.S. It's not that dramatic in all cases, but this (in combination with some
GCC flags specific to the include type) is the best way I have found to be
absolutely 100% positive the local ones are being used (and we definitely
want to be absolutely 100% positive on that one).


git-svn-id: svn://localhost/ardour2/branches/3.0@4655 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-02-25 18:26:51 +00:00

113 lines
1.9 KiB
C++

#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;
}
}
}