ptformat: Update the lib to 9d0b64f (upstream ptformat)
[ardour.git] / libs / surfaces / push2 / push2.h
index f1a5d8fcfd64cf1477f26f8605620a42574b4b6f..bb34f7c016d6cef14163ff48f9f4f2e4814dda96 100644 (file)
 
 #include "midi++/types.h"
 
+#include "ardour/mode.h"
 #include "ardour/types.h"
 
 #include "control_protocol/control_protocol.h"
 #include "control_protocol/types.h"
 
+#include "canvas/colors.h"
+
 #include "midi_byte_array.h"
-#include "mode.h"
 
 namespace Pango {
        class Layout;
@@ -327,7 +329,10 @@ class Push2 : public ARDOUR::ControlProtocol
        int pad_note (int row, int col) const;
        PBD::Signal0<void> PadChange;
 
+       void update_selection_color ();
+
        void set_pad_scale (int root, int octave, MusicalMode::Type mode, bool inkey);
+       PBD::Signal0<void> ScaleChange;
 
        MusicalMode::Type mode() const { return  _mode; }
        int scale_root() const { return _scale_root; }
@@ -335,6 +340,8 @@ class Push2 : public ARDOUR::ControlProtocol
        bool in_key() const { return _in_key; }
 
        Push2Layout* current_layout() const;
+       void         use_previous_layout ();
+
        Push2Canvas* canvas() const { return _canvas; }
 
        enum ModifierState {
@@ -348,10 +355,12 @@ class Push2 : public ARDOUR::ControlProtocol
        Button* button_by_id (ButtonID);
        static std::string button_name_by_id (ButtonID);
 
+       void strip_buttons_off ();
+
        void write (const MidiByteArray&);
 
-       uint8_t get_color_index (uint32_t rgb);
-       uint32_t get_color (ColorName);
+       uint8_t get_color_index (ArdourCanvas::Color rgba);
+       ArdourCanvas::Color get_color (ColorName);
 
        PressureMode pressure_mode () const { return _pressure_mode; }
        void set_pressure_mode (PressureMode);
@@ -361,12 +370,19 @@ class Push2 : public ARDOUR::ControlProtocol
 
   private:
        libusb_device_handle *handle;
+       bool in_use;
        ModifierState _modifier_state;
 
        void do_request (Push2Request*);
-       int stop ();
-       int open ();
-       int close ();
+
+       int begin_using_device ();
+       int stop_using_device ();
+       int device_acquire ();
+       void device_release ();
+       int ports_acquire ();
+       void ports_release ();
+       void run_event_loop ();
+       void stop_event_loop ();
 
        void relax () {}
 
@@ -385,10 +401,17 @@ class Push2 : public ARDOUR::ControlProtocol
        void init_buttons (bool startup);
        void init_touch_strip ();
 
-       /* map of Pads by note number */
+       /* map of Pads by note number (the "fixed" note number sent by the
+        * hardware, not the note number generated if the pad is touched)
+        */
        typedef std::map<int,Pad*> NNPadMap;
        NNPadMap nn_pad_map;
 
+       /* map of Pads by note number they generate (their "filtered" value)
+        */
+       typedef std::multimap<int,Pad*> FNPadMap;
+       FNPadMap fn_pad_map;
+
        void set_button_color (ButtonID, uint8_t color_index);
        void set_button_state (ButtonID, LED::State);
        void set_led_color (ButtonID, uint8_t color_index);
@@ -415,9 +438,6 @@ class Push2 : public ARDOUR::ControlProtocol
 
        bool midi_input_handler (Glib::IOCondition ioc, MIDI::Port* port);
 
-       sigc::connection periodic_connection;
-       bool periodic ();
-
        void thread_init ();
 
        PBD::ScopedConnectionList session_connections;
@@ -455,6 +475,9 @@ class Push2 : public ARDOUR::ControlProtocol
        void button_fwd4 ();
        void button_add_track ();
        void button_stop ();
+       void button_master ();
+       void button_quantize ();
+       void button_duplicate ();
        void button_shift_press ();
        void button_shift_release ();
        void button_shift_long_press ();
@@ -497,10 +520,9 @@ class Push2 : public ARDOUR::ControlProtocol
        void other_vpot (int, int);
        void other_vpot_touch (int, bool);
 
-       /* special Stripables */
+       /* special Stripable */
 
        boost::shared_ptr<ARDOUR::Stripable> master;
-       boost::shared_ptr<ARDOUR::Stripable> monitor;
 
        sigc::connection vblank_connection;
        bool vblank ();
@@ -516,6 +538,7 @@ class Push2 : public ARDOUR::ControlProtocol
 
        mutable Glib::Threads::Mutex layout_lock;
        Push2Layout* _current_layout;
+       Push2Layout* _previous_layout;
        Push2Layout* mix_layout;
        Push2Layout* scale_layout;
        Push2Layout* track_mix_layout;
@@ -561,7 +584,7 @@ class Push2 : public ARDOUR::ControlProtocol
 
        /* color map (device side) */
 
-       typedef std::map<uint32_t,uint8_t> ColorMap;
+       typedef std::map<ArdourCanvas::Color,uint8_t> ColorMap;
        typedef std::stack<uint8_t> ColorMapFreeList;
        ColorMap color_map;
        ColorMapFreeList color_map_free_list;
@@ -569,12 +592,18 @@ class Push2 : public ARDOUR::ControlProtocol
 
        /* our own colors */
 
-       typedef std::map<ColorName,uint32_t> Colors;
+       typedef std::map<ColorName,ArdourCanvas::Color> Colors;
        Colors colors;
        void fill_color_table ();
+       void reset_pad_colors ();
 
        PressureMode _pressure_mode;
        void request_pressure_mode ();
+
+       uint8_t selection_color;
+       uint8_t contrast_color;
+
+       bool in_range_select;
 };
 
 } /* namespace */