2012-04-09 09:59:35 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2006,2007 John Anderson
|
|
|
|
Copyright (C) 2012 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 __ardour_mackie_control_protocol_button_h__
|
|
|
|
#define __ardour_mackie_control_protocol_button_h__
|
|
|
|
|
2015-10-07 15:12:09 -04:00
|
|
|
#include "ardour/types.h"
|
|
|
|
|
2012-04-09 09:59:35 -04:00
|
|
|
#include "controls.h"
|
|
|
|
#include "led.h"
|
|
|
|
|
2015-04-15 20:37:20 -04:00
|
|
|
namespace ArdourSurface {
|
|
|
|
|
2012-04-09 09:59:35 -04:00
|
|
|
namespace Mackie {
|
|
|
|
|
|
|
|
class Surface;
|
|
|
|
|
|
|
|
class Button : public Control
|
|
|
|
{
|
|
|
|
public:
|
2012-04-14 15:02:54 -04:00
|
|
|
/* These values uniquely identify each possible button that an MCP device may
|
|
|
|
send. Each DeviceInfo object contains its own set of button definitions that
|
|
|
|
define what device ID will be sent for each button, and there is no reason
|
|
|
|
for them to be the same. */
|
2012-04-11 12:11:55 -04:00
|
|
|
|
2012-04-14 15:02:54 -04:00
|
|
|
enum ID {
|
|
|
|
/* Global Buttons */
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2015-06-04 18:02:51 -04:00
|
|
|
Track,
|
|
|
|
Send,
|
2012-04-14 15:02:54 -04:00
|
|
|
Pan,
|
|
|
|
Plugin,
|
|
|
|
Eq,
|
|
|
|
Dyn,
|
|
|
|
Left,
|
|
|
|
Right,
|
|
|
|
ChannelLeft,
|
|
|
|
ChannelRight,
|
|
|
|
Flip,
|
2015-06-04 18:02:51 -04:00
|
|
|
View,
|
2012-04-14 15:02:54 -04:00
|
|
|
NameValue,
|
|
|
|
TimecodeBeats,
|
|
|
|
F1,
|
|
|
|
F2,
|
|
|
|
F3,
|
|
|
|
F4,
|
|
|
|
F5,
|
|
|
|
F6,
|
|
|
|
F7,
|
|
|
|
F8,
|
2015-06-04 18:02:51 -04:00
|
|
|
MidiTracks,
|
|
|
|
Inputs,
|
|
|
|
AudioTracks,
|
|
|
|
AudioInstruments,
|
|
|
|
Aux,
|
|
|
|
Busses,
|
|
|
|
Outputs,
|
|
|
|
User,
|
|
|
|
Read,
|
|
|
|
Write,
|
|
|
|
Trim,
|
2012-04-14 15:02:54 -04:00
|
|
|
Touch,
|
2015-06-04 18:02:51 -04:00
|
|
|
Latch,
|
|
|
|
Grp,
|
|
|
|
Save,
|
|
|
|
Undo,
|
2012-04-14 15:02:54 -04:00
|
|
|
Cancel,
|
2015-06-04 18:02:51 -04:00
|
|
|
Enter,
|
|
|
|
Marker,
|
|
|
|
Nudge,
|
2012-04-14 15:02:54 -04:00
|
|
|
Loop,
|
2015-06-04 18:02:51 -04:00
|
|
|
Drop,
|
|
|
|
Replace,
|
|
|
|
Click,
|
|
|
|
ClearSolo,
|
2012-04-14 15:02:54 -04:00
|
|
|
Rewind,
|
|
|
|
Ffwd,
|
|
|
|
Stop,
|
|
|
|
Play,
|
|
|
|
Record,
|
|
|
|
CursorUp,
|
|
|
|
CursorDown,
|
|
|
|
CursorLeft,
|
|
|
|
CursorRight,
|
|
|
|
Zoom,
|
|
|
|
Scrub,
|
|
|
|
UserA,
|
|
|
|
UserB,
|
2012-04-15 09:28:45 -04:00
|
|
|
|
2012-04-17 16:41:31 -04:00
|
|
|
FinalGlobalButton,
|
|
|
|
|
2015-06-05 19:32:19 -04:00
|
|
|
/* Global buttons that users should not redefine */
|
|
|
|
|
|
|
|
Shift,
|
|
|
|
Option,
|
|
|
|
Ctrl,
|
|
|
|
CmdAlt,
|
|
|
|
|
2012-04-14 15:02:54 -04:00
|
|
|
/* Strip buttons */
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-14 15:02:54 -04:00
|
|
|
RecEnable,
|
|
|
|
Solo,
|
|
|
|
Mute,
|
|
|
|
Select,
|
|
|
|
VSelect,
|
|
|
|
FaderTouch,
|
2012-06-09 15:06:52 -04:00
|
|
|
|
|
|
|
/* Master fader */
|
|
|
|
|
|
|
|
MasterFaderTouch,
|
2012-04-09 11:32:25 -04:00
|
|
|
};
|
|
|
|
|
2012-04-14 15:02:54 -04:00
|
|
|
|
2015-10-07 15:12:09 -04:00
|
|
|
Button (Surface& s, ID bid, int did, std::string name, Group & group)
|
2012-04-14 15:02:54 -04:00
|
|
|
: Control (did, name, group)
|
2015-10-07 15:12:09 -04:00
|
|
|
, _surface (s)
|
2012-04-14 15:02:54 -04:00
|
|
|
, _bid (bid)
|
2015-10-07 15:12:09 -04:00
|
|
|
, _led (did, name + "_led", group)
|
|
|
|
, press_time (0) {}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-11 15:47:41 -04:00
|
|
|
MidiByteArray zero() { return _led.zero (); }
|
|
|
|
MidiByteArray set_state (LedState ls) { return _led.set_state (ls); }
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-14 15:02:54 -04:00
|
|
|
ID bid() const { return _bid; }
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-14 15:02:54 -04:00
|
|
|
static Control* factory (Surface& surface, Button::ID bid, int id, const std::string&, Group& group);
|
|
|
|
static int name_to_id (const std::string& name);
|
2012-04-17 16:41:31 -04:00
|
|
|
static std::string id_to_name (Button::ID);
|
2012-04-14 15:02:54 -04:00
|
|
|
|
2015-10-07 15:12:09 -04:00
|
|
|
Surface& surface() const { return _surface; }
|
|
|
|
|
|
|
|
void pressed ();
|
|
|
|
void released ();
|
|
|
|
|
|
|
|
int32_t long_press_count ();
|
|
|
|
|
2012-04-09 09:59:35 -04:00
|
|
|
private:
|
2015-10-07 15:12:09 -04:00
|
|
|
Surface& _surface;
|
2012-04-14 15:02:54 -04:00
|
|
|
ID _bid; /* device independent button ID */
|
2012-04-09 09:59:35 -04:00
|
|
|
Led _led;
|
2015-10-07 15:12:09 -04:00
|
|
|
ARDOUR::microseconds_t press_time;
|
2012-04-09 09:59:35 -04:00
|
|
|
};
|
|
|
|
|
2015-04-15 20:37:20 -04:00
|
|
|
} // Mackie namespace
|
|
|
|
} // ArdourSurface namespace
|
2012-04-09 09:59:35 -04:00
|
|
|
|
|
|
|
#endif
|