2008-06-02 17:41:35 -04:00
|
|
|
#ifndef mackie_surface_h
|
|
|
|
#define mackie_surface_h
|
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2015-10-10 17:13:04 -04:00
|
|
|
#include <sigc++/trackable.h>
|
|
|
|
|
2015-10-07 13:17:42 -04:00
|
|
|
#include "pbd/signals.h"
|
2013-12-13 16:00:08 -05:00
|
|
|
#include "pbd/xml++.h"
|
2012-04-10 10:27:44 -04:00
|
|
|
#include "midi++/types.h"
|
|
|
|
|
2015-10-07 15:12:09 -04:00
|
|
|
#include "ardour/types.h"
|
|
|
|
|
2012-04-12 10:34:03 -04:00
|
|
|
#include "control_protocol/types.h"
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
#include "controls.h"
|
|
|
|
#include "types.h"
|
2012-04-22 13:37:52 -04:00
|
|
|
#include "jog_wheel.h"
|
2012-04-10 10:27:44 -04:00
|
|
|
|
|
|
|
namespace MIDI {
|
|
|
|
class Parser;
|
|
|
|
}
|
|
|
|
|
2012-04-10 11:13:37 -04:00
|
|
|
namespace ARDOUR {
|
|
|
|
class Route;
|
2015-10-07 13:17:42 -04:00
|
|
|
class Port;
|
2012-04-10 11:13:37 -04:00
|
|
|
}
|
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
class MidiByteArray;
|
2015-04-15 20:37:20 -04:00
|
|
|
|
|
|
|
namespace ArdourSurface {
|
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
class MackieControlProtocol;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
namespace Mackie
|
|
|
|
{
|
|
|
|
|
|
|
|
class MackieButtonHandler;
|
2008-12-12 17:55:03 -05:00
|
|
|
class SurfacePort;
|
|
|
|
class MackieMidiBuilder;
|
2012-04-09 09:59:35 -04:00
|
|
|
class Button;
|
|
|
|
class Meter;
|
|
|
|
class Fader;
|
|
|
|
class Jog;
|
|
|
|
class Pot;
|
|
|
|
class Led;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2015-10-10 17:13:04 -04:00
|
|
|
class Surface : public PBD::ScopedConnectionList, public sigc::trackable
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
public:
|
2012-04-12 12:41:07 -04:00
|
|
|
Surface (MackieControlProtocol&, const std::string& name, uint32_t number, surface_type_t stype);
|
2008-06-02 17:41:35 -04:00
|
|
|
virtual ~Surface();
|
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
surface_type_t type() const { return _stype; }
|
|
|
|
uint32_t number() const { return _number; }
|
2012-04-12 12:41:07 -04:00
|
|
|
const std::string& name() { return _name; }
|
2012-04-10 10:27:44 -04:00
|
|
|
|
2015-10-07 13:17:42 -04:00
|
|
|
void connected ();
|
2012-04-21 22:15:24 -04:00
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
bool active() const { return _active; }
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
typedef std::vector<Control*> Controls;
|
|
|
|
Controls controls;
|
|
|
|
|
2008-12-12 17:55:03 -05:00
|
|
|
std::map<int,Fader*> faders;
|
|
|
|
std::map<int,Pot*> pots;
|
2012-04-14 15:02:54 -04:00
|
|
|
std::map<int,Button*> buttons; // index is device-DEPENDENT
|
2008-12-12 17:55:03 -05:00
|
|
|
std::map<int,Led*> leds;
|
2012-04-08 19:14:36 -04:00
|
|
|
std::map<int,Meter*> meters;
|
2012-04-14 15:02:54 -04:00
|
|
|
std::map<int,Control*> controls_by_device_independent_id;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
Mackie::JogWheel* jog_wheel() const { return _jog_wheel; }
|
2012-04-14 16:38:42 -04:00
|
|
|
Fader* master_fader() const { return _master_fader; }
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2012-04-14 16:38:42 -04:00
|
|
|
/// The collection of all numbered strips.
|
2008-06-02 17:41:35 -04:00
|
|
|
typedef std::vector<Strip*> Strips;
|
|
|
|
Strips strips;
|
|
|
|
|
2012-04-26 10:28:41 -04:00
|
|
|
uint32_t n_strips (bool with_locked_strips = true) const;
|
2012-04-10 10:27:44 -04:00
|
|
|
Strip* nth_strip (uint32_t n) const;
|
|
|
|
|
2012-04-26 10:28:41 -04:00
|
|
|
bool route_is_locked_to_strip (boost::shared_ptr<ARDOUR::Route>) const;
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
/// This collection owns the groups
|
|
|
|
typedef std::map<std::string,Group*> Groups;
|
|
|
|
Groups groups;
|
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
SurfacePort& port() const { return *_port; }
|
|
|
|
|
2012-04-10 11:13:37 -04:00
|
|
|
void map_routes (const std::vector<boost::shared_ptr<ARDOUR::Route> >& routes);
|
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
const MidiByteArray& sysex_hdr() const;
|
|
|
|
|
2015-10-08 12:49:58 -04:00
|
|
|
void periodic (ARDOUR::microseconds_t now_usecs);
|
|
|
|
void redisplay (ARDOUR::microseconds_t now_usecs);
|
2015-10-03 12:03:07 -04:00
|
|
|
void hui_heartbeat ();
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
void handle_midi_pitchbend_message (MIDI::Parser&, MIDI::pitchbend_t, uint32_t channel_id);
|
|
|
|
void handle_midi_controller_message (MIDI::Parser&, MIDI::EventTwoBytes*);
|
|
|
|
void handle_midi_note_on_message (MIDI::Parser&, MIDI::EventTwoBytes*);
|
|
|
|
|
|
|
|
/// Connect the any signal from the parser to handle_midi_any
|
|
|
|
/// unless it's already connected
|
|
|
|
void connect_to_signals ();
|
|
|
|
|
|
|
|
/// write a sysex message
|
|
|
|
void write_sysex (const MidiByteArray& mba);
|
|
|
|
void write_sysex (MIDI::byte msg);
|
|
|
|
/// proxy write for port
|
|
|
|
void write (const MidiByteArray&);
|
|
|
|
|
2008-12-12 17:55:03 -05:00
|
|
|
/// display an indicator of the first switched-in Route. Do nothing by default.
|
2012-04-10 10:27:44 -04:00
|
|
|
void display_bank_start (uint32_t /*current_bank*/);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
/// called from MackieControlProtocol::zero_all to turn things off
|
|
|
|
void zero_all ();
|
2012-04-21 22:15:24 -04:00
|
|
|
void zero_controls ();
|
2008-12-12 17:55:03 -05:00
|
|
|
|
|
|
|
/// turn off leds around the jog wheel. This is for surfaces that use a pot
|
|
|
|
/// pretending to be a jog wheel.
|
2012-04-10 10:27:44 -04:00
|
|
|
void blank_jog_ring ();
|
|
|
|
|
|
|
|
void display_timecode (const std::string & /*timecode*/, const std::string & /*timecode_last*/);
|
2008-12-12 17:55:03 -05:00
|
|
|
|
2015-10-02 21:54:40 -04:00
|
|
|
/// sends MCP "reset" message to surface
|
|
|
|
void reset ();
|
|
|
|
|
|
|
|
void recalibrate_faders ();
|
|
|
|
void toggle_backlight ();
|
|
|
|
void set_touch_sensitivity (int);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 17:55:03 -05:00
|
|
|
/**
|
|
|
|
This is used to calculate the clicks per second that define
|
|
|
|
a transport speed of 1.0 for the jog wheel. 100.0 is 10 clicks
|
|
|
|
per second, 50.5 is 5 clicks per second.
|
|
|
|
*/
|
2012-04-10 10:27:44 -04:00
|
|
|
float scrub_scaling_factor() const;
|
2008-12-12 17:55:03 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
The scaling factor function for speed increase and decrease. At
|
|
|
|
low transport speeds this should return a small value, for high transport
|
|
|
|
speeds, this should return an exponentially larger value. This provides
|
|
|
|
high definition control at low speeds and quick speed changes to/from
|
|
|
|
higher speeds.
|
|
|
|
*/
|
2012-04-11 14:51:01 -04:00
|
|
|
float scaled_delta (float delta, float current_speed);
|
2012-04-10 10:27:44 -04:00
|
|
|
|
2012-04-11 09:03:41 -04:00
|
|
|
// display the first 2 chars of the msg in the 2 char display
|
|
|
|
// . is appended to the previous character, so A.B. would
|
|
|
|
// be two characters
|
2012-04-22 13:37:52 -04:00
|
|
|
void show_two_char_display (const std::string & msg, const std::string & dots = " ");
|
|
|
|
void show_two_char_display (unsigned int value, const std::string & dots = " ");
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-11 15:27:13 -04:00
|
|
|
void update_view_mode_display ();
|
2012-04-11 20:52:02 -04:00
|
|
|
void update_flip_mode_display ();
|
2015-10-08 00:36:16 -04:00
|
|
|
void update_potmode ();
|
2012-04-11 15:27:13 -04:00
|
|
|
|
2012-04-27 21:43:38 -04:00
|
|
|
void gui_selection_changed (const ARDOUR::StrongRouteNotificationList&);
|
2012-04-12 10:34:03 -04:00
|
|
|
|
2012-04-12 12:41:07 -04:00
|
|
|
MackieControlProtocol& mcp() const { return _mcp; }
|
|
|
|
|
2012-04-22 13:37:52 -04:00
|
|
|
void next_jog_mode ();
|
|
|
|
void set_jog_mode (Mackie::JogWheel::Mode);
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2013-03-06 15:15:28 -05:00
|
|
|
void notify_metering_state_changed();
|
|
|
|
void turn_it_on ();
|
2012-04-22 13:37:52 -04:00
|
|
|
|
2015-10-08 12:49:58 -04:00
|
|
|
void display_message_for (std::string const& msg, uint64_t msecs);
|
|
|
|
|
2015-10-09 14:01:22 -04:00
|
|
|
bool connection_handler (boost::weak_ptr<ARDOUR::Port>, std::string name1, boost::weak_ptr<ARDOUR::Port>, std::string name2, bool);
|
|
|
|
|
2013-12-13 16:00:08 -05:00
|
|
|
XMLNode& get_state ();
|
|
|
|
int set_state (const XMLNode&, int version);
|
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
private:
|
|
|
|
MackieControlProtocol& _mcp;
|
2012-04-12 12:41:07 -04:00
|
|
|
SurfacePort* _port;
|
|
|
|
surface_type_t _stype;
|
|
|
|
uint32_t _number;
|
|
|
|
std::string _name;
|
|
|
|
bool _active;
|
|
|
|
bool _connected;
|
|
|
|
Mackie::JogWheel* _jog_wheel;
|
2012-04-14 16:38:42 -04:00
|
|
|
Fader* _master_fader;
|
2012-06-09 15:06:52 -04:00
|
|
|
float _last_master_gain_written;
|
2015-10-07 15:12:09 -04:00
|
|
|
|
2012-04-12 12:41:07 -04:00
|
|
|
void handle_midi_sysex (MIDI::Parser&, MIDI::byte *, size_t count);
|
|
|
|
MidiByteArray host_connection_query (MidiByteArray& bytes);
|
|
|
|
MidiByteArray host_connection_confirmation (const MidiByteArray& bytes);
|
2012-04-14 16:38:42 -04:00
|
|
|
|
2015-10-07 13:17:42 -04:00
|
|
|
void say_hello ();
|
2012-06-09 15:06:52 -04:00
|
|
|
void init_controls ();
|
2012-04-14 16:38:42 -04:00
|
|
|
void init_strips (uint32_t n);
|
|
|
|
void setup_master ();
|
|
|
|
void master_gain_changed ();
|
2015-10-07 13:17:42 -04:00
|
|
|
|
|
|
|
enum ConnectionState {
|
|
|
|
InputConnected = 0x1,
|
|
|
|
OutputConnected = 0x2
|
|
|
|
};
|
|
|
|
|
|
|
|
int connection_state;
|
2015-10-08 12:49:58 -04:00
|
|
|
|
|
|
|
MidiByteArray display_line (std::string const& msg, int line_num);
|
2015-10-08 21:23:48 -04:00
|
|
|
|
|
|
|
public:
|
2015-10-08 21:53:05 -04:00
|
|
|
/* IP MIDI devices need to keep a handle on this and destroy it */
|
2015-10-08 21:23:48 -04:00
|
|
|
GSource* input_source;
|
2008-06-02 17:41:35 -04:00
|
|
|
};
|
|
|
|
|
2015-04-15 20:37:20 -04:00
|
|
|
}
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|