X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fsurfaces%2Fmackie%2Fsurface.h;h=c536c438561e29b326efb56f6af8de347c6ee24c;hb=0a2377e9b4c5b3804253f359334089955c3a2ce7;hp=9f3ac0b8c6e761807915d6ca09118aba5dc3645d;hpb=3b7e2f7d67ad87bfb0ce183c10e9d00e71b6b085;p=ardour.git diff --git a/libs/surfaces/mackie/surface.h b/libs/surfaces/mackie/surface.h index 9f3ac0b8c6..c536c43856 100644 --- a/libs/surfaces/mackie/surface.h +++ b/libs/surfaces/mackie/surface.h @@ -3,8 +3,14 @@ #include +#include + +#include "pbd/signals.h" +#include "pbd/xml++.h" #include "midi++/types.h" +#include "ardour/types.h" + #include "control_protocol/types.h" #include "controls.h" @@ -17,9 +23,13 @@ namespace MIDI { namespace ARDOUR { class Route; + class Port; } class MidiByteArray; + +namespace ArdourSurface { + class MackieControlProtocol; namespace Mackie @@ -35,7 +45,7 @@ class Jog; class Pot; class Led; -class Surface : public PBD::ScopedConnectionList +class Surface : public PBD::ScopedConnectionList, public sigc::trackable { public: Surface (MackieControlProtocol&, const std::string& name, uint32_t number, surface_type_t stype); @@ -45,10 +55,9 @@ public: uint32_t number() const { return _number; } const std::string& name() { return _name; } - void say_hello (); + void connected (); bool active() const { return _active; } - void drop_routes (); typedef std::vector Controls; Controls controls; @@ -59,7 +68,7 @@ public: std::map leds; std::map meters; std::map controls_by_device_independent_id; - + Mackie::JogWheel* jog_wheel() const { return _jog_wheel; } Fader* master_fader() const { return _master_fader; } @@ -71,6 +80,7 @@ public: Strip* nth_strip (uint32_t n) const; bool route_is_locked_to_strip (boost::shared_ptr) const; + bool route_is_mapped (boost::shared_ptr) const; /// This collection owns the groups typedef std::map Groups; @@ -82,7 +92,9 @@ public: const MidiByteArray& sysex_hdr() const; - void periodic (uint64_t now_usecs); + void periodic (ARDOUR::microseconds_t now_usecs); + void redisplay (ARDOUR::microseconds_t now_usecs, bool force); + void hui_heartbeat (); void handle_midi_pitchbend_message (MIDI::Parser&, MIDI::pitchbend_t, uint32_t channel_id); void handle_midi_controller_message (MIDI::Parser&, MIDI::EventTwoBytes*); @@ -92,9 +104,6 @@ public: /// unless it's already connected void connect_to_signals (); - /// notification from a MackiePort that it's now inactive - void handle_port_inactive(Mackie::SurfacePort *); - /// write a sysex message void write_sysex (const MidiByteArray& mba); void write_sysex (MIDI::byte msg); @@ -103,7 +112,7 @@ public: /// display an indicator of the first switched-in Route. Do nothing by default. void display_bank_start (uint32_t /*current_bank*/); - + /// called from MackieControlProtocol::zero_all to turn things off void zero_all (); void zero_controls (); @@ -114,6 +123,13 @@ public: void display_timecode (const std::string & /*timecode*/, const std::string & /*timecode_last*/); + /// sends MCP "reset" message to surface + void reset (); + + void recalibrate_faders (); + void toggle_backlight (); + void set_touch_sensitivity (int); + /** 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 @@ -135,26 +151,31 @@ public: // be two characters 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 = " "); - - /** - Timecode display. Only the difference between timecode and last_timecode will - be encoded, to save midi bandwidth. If they're the same, an empty array will - be returned - */ - MidiByteArray timecode_display (const std::string & timecode, const std::string & last_timecode = ""); - void update_view_mode_display (); + void update_view_mode_display (bool with_helpful_text); void update_flip_mode_display (); + void update_potmode (); - void gui_selection_changed (ARDOUR::RouteNotificationListPtr); + void gui_selection_changed (const ARDOUR::StrongRouteNotificationList&); + void subview_mode_changed (); MackieControlProtocol& mcp() const { return _mcp; } void next_jog_mode (); void set_jog_mode (Mackie::JogWheel::Mode); - protected: - + void notify_metering_state_changed(); + void turn_it_on (); + + void display_message_for (std::string const& msg, uint64_t msecs); + + bool connection_handler (boost::weak_ptr, std::string name1, boost::weak_ptr, std::string name2, bool); + + void master_monitor_may_have_changed (); + + XMLNode& get_state (); + int set_state (const XMLNode&, int version); + private: MackieControlProtocol& _mcp; SurfacePort* _port; @@ -165,17 +186,34 @@ public: bool _connected; Mackie::JogWheel* _jog_wheel; Fader* _master_fader; + float _last_master_gain_written; + PBD::ScopedConnection master_connection; void handle_midi_sysex (MIDI::Parser&, MIDI::byte *, size_t count); MidiByteArray host_connection_query (MidiByteArray& bytes); MidiByteArray host_connection_confirmation (const MidiByteArray& bytes); - void init_controls(); + void say_hello (); + void init_controls (); void init_strips (uint32_t n); void setup_master (); void master_gain_changed (); + + enum ConnectionState { + InputConnected = 0x1, + OutputConnected = 0x2 + }; + + int connection_state; + + MidiByteArray display_line (std::string const& msg, int line_num); + + public: + /* IP MIDI devices need to keep a handle on this and destroy it */ + GSource* input_source; }; +} } #endif