0786ff15a0
(#4949). git-svn-id: svn://localhost/ardour2/branches/3.0@12927 d708f5d6-7413-0410-9779-e7cbd77b26cf
178 lines
4.1 KiB
C++
178 lines
4.1 KiB
C++
/*
|
|
Copyright (C) 2009 Paul Davis
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include <cstring>
|
|
|
|
#include "midi++/port.h"
|
|
|
|
#include "midifunction.h"
|
|
#include "generic_midi_control_protocol.h"
|
|
|
|
using namespace MIDI;
|
|
|
|
MIDIFunction::MIDIFunction (MIDI::Port& p)
|
|
: MIDIInvokable (p)
|
|
{
|
|
}
|
|
|
|
MIDIFunction::~MIDIFunction ()
|
|
{
|
|
}
|
|
|
|
int
|
|
MIDIFunction::setup (GenericMidiControlProtocol& ui, const std::string& invokable_name, const std::string& arg, MIDI::byte* msg_data, size_t data_sz)
|
|
{
|
|
MIDIInvokable::init (ui, invokable_name, msg_data, data_sz);
|
|
|
|
_argument = arg;
|
|
|
|
if (strcasecmp (_invokable_name.c_str(), "transport-stop") == 0) {
|
|
_function = TransportStop;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "transport-roll") == 0) {
|
|
_function = TransportRoll;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "transport-zero") == 0) {
|
|
_function = TransportZero;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "transport-start") == 0) {
|
|
_function = TransportStart;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "transport-end") == 0) {
|
|
_function = TransportEnd;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "loop-toggle") == 0) {
|
|
_function = TransportLoopToggle;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "rec-enable") == 0) {
|
|
_function = TransportRecordEnable;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "rec-disable") == 0) {
|
|
_function = TransportRecordDisable;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "next-bank") == 0) {
|
|
_function = NextBank;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "prev-bank") == 0) {
|
|
_function = PrevBank;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "set-bank") == 0) {
|
|
if (_argument.empty()) {
|
|
return -1;
|
|
}
|
|
_function = SetBank;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "select") == 0) {
|
|
if (_argument.empty()) {
|
|
return -1;
|
|
}
|
|
_function = Select;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "track-set-solo") == 0) {
|
|
if (_argument.empty()) {
|
|
return -1;
|
|
}
|
|
_function = TrackSetSolo;
|
|
} else if (strcasecmp (_invokable_name.c_str(), "track-set-mute") == 0) {
|
|
if (_argument.empty()) {
|
|
return -1;
|
|
}
|
|
_function = TrackSetMute;
|
|
} else {
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
MIDIFunction::execute ()
|
|
{
|
|
switch (_function) {
|
|
case NextBank:
|
|
_ui->next_bank();
|
|
break;
|
|
|
|
case PrevBank:
|
|
_ui->prev_bank();
|
|
break;
|
|
|
|
case SetBank:
|
|
if (!_argument.empty()) {
|
|
uint32_t bank;
|
|
sscanf (_argument.c_str(), "%d", &bank);
|
|
_ui->set_current_bank (bank);
|
|
}
|
|
break;
|
|
|
|
case TransportStop:
|
|
_ui->transport_stop ();
|
|
break;
|
|
|
|
case TransportRoll:
|
|
_ui->transport_play ();
|
|
break;
|
|
|
|
case TransportStart:
|
|
_ui->goto_start ();
|
|
break;
|
|
|
|
case TransportZero:
|
|
// need this in BasicUI
|
|
break;
|
|
|
|
case TransportEnd:
|
|
_ui->goto_end ();
|
|
break;
|
|
|
|
case TransportLoopToggle:
|
|
_ui->loop_toggle ();
|
|
break;
|
|
|
|
case TransportRecordEnable:
|
|
_ui->set_record_enable (true);
|
|
break;
|
|
|
|
case TransportRecordDisable:
|
|
_ui->set_record_enable (false);
|
|
break;
|
|
|
|
case Select:
|
|
if (!_argument.empty()) {
|
|
uint32_t rid;
|
|
sscanf (_argument.c_str(), "%d", &rid);
|
|
_ui->SetRouteSelection (rid);
|
|
}
|
|
break;
|
|
case TrackSetMute:
|
|
break;
|
|
case TrackSetSolo:
|
|
break;
|
|
case TrackSetSoloIsolate:
|
|
break;
|
|
case TrackSetGain:
|
|
break;
|
|
case TrackSetRecordEnable:
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
XMLNode&
|
|
MIDIFunction::get_state ()
|
|
{
|
|
XMLNode* node = new XMLNode ("MIDIFunction");
|
|
return *node;
|
|
}
|
|
|
|
int
|
|
MIDIFunction::set_state (const XMLNode& /*node*/, int /*version*/)
|
|
{
|
|
return 0;
|
|
}
|
|
|