2009-12-28 15:52:13 -05:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __gm_midifunction_h__
|
|
|
|
#define __gm_midifunction_h__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "midi++/types.h"
|
|
|
|
|
|
|
|
#include "pbd/signals.h"
|
|
|
|
#include "pbd/stateful.h"
|
|
|
|
|
|
|
|
#include "ardour/types.h"
|
|
|
|
|
2010-04-08 17:05:55 -04:00
|
|
|
#include "midiinvokable.h"
|
|
|
|
|
2009-12-28 15:52:13 -05:00
|
|
|
namespace MIDI {
|
|
|
|
class Channel;
|
|
|
|
class Port;
|
|
|
|
class Parser;
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:31:14 -05:00
|
|
|
class GenericMidiControlProtocol;
|
2009-12-28 15:52:13 -05:00
|
|
|
|
2010-04-08 17:05:55 -04:00
|
|
|
class MIDIFunction : public MIDIInvokable
|
2009-12-28 15:52:13 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum Function {
|
2009-12-29 16:31:14 -05:00
|
|
|
NextBank,
|
|
|
|
PrevBank,
|
2009-12-28 15:52:13 -05:00
|
|
|
TransportRoll,
|
|
|
|
TransportStop,
|
|
|
|
TransportZero,
|
|
|
|
TransportStart,
|
2009-12-28 18:55:33 -05:00
|
|
|
TransportEnd,
|
|
|
|
TransportLoopToggle,
|
|
|
|
TransportRecordEnable,
|
|
|
|
TransportRecordDisable
|
2009-12-28 15:52:13 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
MIDIFunction (MIDI::Port&);
|
|
|
|
virtual ~MIDIFunction ();
|
|
|
|
|
2009-12-29 16:31:14 -05:00
|
|
|
int init (GenericMidiControlProtocol&, const std::string& function_name, MIDI::byte* sysex = 0, size_t ssize = 0);
|
2009-12-28 15:52:13 -05:00
|
|
|
|
2010-04-08 17:05:55 -04:00
|
|
|
const std::string& function_name() const { return _invokable_name; }
|
2009-12-28 15:52:13 -05:00
|
|
|
|
|
|
|
XMLNode& get_state (void);
|
|
|
|
int set_state (const XMLNode&, int version);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Function _function;
|
|
|
|
void execute ();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __gm_midicontrollable_h__
|
|
|
|
|