186858550f7c4790e6438bdca483bbd2aa843ce6
[ardour.git] / libs / surfaces / generic_midi / midifunction.cc
1 /*
2     Copyright (C) 2009 Paul Davis
3  
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <cstring>
20
21 #include "midi++/port.h"
22
23 #include "midifunction.h"
24 #include "generic_midi_control_protocol.h"
25
26 using namespace MIDI;
27
28 MIDIFunction::MIDIFunction (MIDI::Port& p)
29         : MIDIInvokable (p)
30 {
31 }
32
33 MIDIFunction::~MIDIFunction ()
34 {
35 }
36
37 int
38 MIDIFunction::setup (GenericMidiControlProtocol& ui, const std::string& invokable_name, const std::string& arg, MIDI::byte* msg_data, size_t data_sz)
39 {
40         MIDIInvokable::init (ui, invokable_name, msg_data, data_sz);
41
42         _argument = arg;
43
44         if (strcasecmp (_invokable_name.c_str(), "transport-stop") == 0) {
45                 _function = TransportStop;
46         } else if (strcasecmp (_invokable_name.c_str(), "transport-roll") == 0) {
47                 _function = TransportRoll;
48         } else if (strcasecmp (_invokable_name.c_str(), "transport-zero") == 0) {
49                 _function = TransportZero;
50         } else if (strcasecmp (_invokable_name.c_str(), "transport-start") == 0) {
51                 _function = TransportStart;
52         } else if (strcasecmp (_invokable_name.c_str(), "transport-end") == 0) {
53                 _function = TransportEnd;
54         } else if (strcasecmp (_invokable_name.c_str(), "loop-toggle") == 0) {
55                 _function = TransportLoopToggle;
56         } else if (strcasecmp (_invokable_name.c_str(), "rec-enable") == 0) {
57                 _function = TransportRecordEnable;
58         } else if (strcasecmp (_invokable_name.c_str(), "rec-disable") == 0) {
59                 _function = TransportRecordDisable;
60         } else if (strcasecmp (_invokable_name.c_str(), "next-bank") == 0) {
61                 _function = NextBank;
62         } else if (strcasecmp (_invokable_name.c_str(), "prev-bank") == 0) {
63                 _function = PrevBank;
64         } else if (strcasecmp (_invokable_name.c_str(), "select") == 0) {
65                 if (_argument.empty()) {
66                         return -1;
67                 }
68                 _function = Select;
69         } else {
70                 return -1;
71         }
72
73         return 0;
74 }
75
76 void
77 MIDIFunction::execute ()
78 {
79         switch (_function) {
80         case NextBank:
81                 _ui->next_bank();
82                 break;
83
84         case PrevBank:
85                 _ui->prev_bank();
86                 break;
87
88         case TransportStop:
89                 _ui->transport_stop ();
90                 break;
91
92         case TransportRoll:
93                 _ui->transport_play ();
94                 break;
95
96         case TransportStart:
97                 _ui->goto_start ();
98                 break;
99
100         case TransportZero:
101                 // need this in BasicUI
102                 break;
103
104         case TransportEnd:
105                 _ui->goto_end ();
106                 break;
107
108         case TransportLoopToggle:
109                 _ui->loop_toggle ();
110                 break;
111
112         case TransportRecordEnable:
113                 _ui->set_record_enable (true);
114                 break;
115
116         case TransportRecordDisable:
117                 _ui->set_record_enable (false);
118                 break;
119
120         case Select:
121                 if (!_argument.empty()) {
122                         uint32_t rid;
123                         sscanf (_argument.c_str(), "%d", &rid);
124                         _ui->SelectByRID (rid);
125                 }
126         }
127 }
128
129 XMLNode&
130 MIDIFunction::get_state ()
131 {
132         XMLNode* node = new XMLNode ("MIDIFunction");
133         return *node;
134 }
135
136 int
137 MIDIFunction::set_state (const XMLNode& /*node*/, int /*version*/)
138 {
139         return 0;
140 }
141