2012-04-09 13:59:35 +00:00
|
|
|
#ifndef __ardour_mackie_control_protocol_strip_h__
|
|
|
|
|
#define __ardour_mackie_control_protocol_strip_h__
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
2012-04-22 17:37:52 +00:00
|
|
|
#include "evoral/Parameter.hpp"
|
|
|
|
|
|
2012-04-10 14:27:44 +00:00
|
|
|
#include "pbd/property_basics.h"
|
2015-10-02 22:04:02 -04:00
|
|
|
#include "pbd/ringbuffer.h"
|
2012-04-11 13:03:41 +00:00
|
|
|
#include "pbd/signals.h"
|
2012-04-10 14:27:44 +00:00
|
|
|
|
2012-04-13 20:27:08 +00:00
|
|
|
#include "ardour/types.h"
|
2012-04-12 14:34:03 +00:00
|
|
|
#include "control_protocol/types.h"
|
|
|
|
|
|
2012-04-09 13:59:35 +00:00
|
|
|
#include "control_group.h"
|
2012-04-11 13:03:41 +00:00
|
|
|
#include "types.h"
|
|
|
|
|
#include "midi_byte_array.h"
|
2012-04-14 19:02:54 +00:00
|
|
|
#include "device_info.h"
|
2012-04-10 14:27:44 +00:00
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
|
class Route;
|
2012-04-16 19:05:27 +00:00
|
|
|
class Bundle;
|
|
|
|
|
class ChannelCount;
|
2012-04-10 14:27:44 +00:00
|
|
|
}
|
2012-04-09 13:59:35 +00:00
|
|
|
|
2015-04-15 20:37:20 -04:00
|
|
|
namespace ArdourSurface {
|
|
|
|
|
|
2012-04-09 13:59:35 +00:00
|
|
|
namespace Mackie {
|
|
|
|
|
|
|
|
|
|
class Control;
|
|
|
|
|
class Surface;
|
|
|
|
|
class Button;
|
|
|
|
|
class Pot;
|
|
|
|
|
class Fader;
|
|
|
|
|
class Meter;
|
2012-04-11 13:03:41 +00:00
|
|
|
class SurfacePort;
|
2012-04-09 13:59:35 +00:00
|
|
|
|
|
|
|
|
struct GlobalControlDefinition {
|
|
|
|
|
const char* name;
|
2013-03-24 14:55:56 +01:00
|
|
|
int id;
|
2012-04-10 14:27:44 +00:00
|
|
|
Control* (*factory)(Surface&, int index, const char* name, Group&);
|
2012-04-09 13:59:35 +00:00
|
|
|
const char* group_name;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
This is the set of controls that make up a strip.
|
|
|
|
|
*/
|
|
|
|
|
class Strip : public Group
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-04-14 19:02:54 +00:00
|
|
|
Strip (Surface&, const std::string & name, int index, const std::map<Button::ID,StripButtonInfo>&);
|
2012-04-10 14:27:44 +00:00
|
|
|
~Strip();
|
2012-04-09 13:59:35 +00:00
|
|
|
|
2012-04-10 14:27:44 +00:00
|
|
|
boost::shared_ptr<ARDOUR::Route> route() const { return _route; }
|
|
|
|
|
|
|
|
|
|
void add (Control & control);
|
2012-04-09 13:59:35 +00:00
|
|
|
int index() const { return _index; } // zero based
|
2015-10-05 16:17:49 +02:00
|
|
|
|
2012-04-22 02:15:24 +00:00
|
|
|
void set_route (boost::shared_ptr<ARDOUR::Route>, bool with_messages = true);
|
2012-04-10 14:27:44 +00:00
|
|
|
|
|
|
|
|
// call all signal handlers manually
|
2015-10-18 18:13:16 -07:00
|
|
|
void notify_all ();
|
2012-04-10 14:27:44 +00:00
|
|
|
|
2012-04-11 13:39:25 +00:00
|
|
|
void handle_button (Button&, ButtonState bs);
|
|
|
|
|
void handle_fader (Fader&, float position);
|
2014-02-19 12:50:28 -05:00
|
|
|
void handle_fader_touch (Fader&, bool touch_on);
|
2012-04-11 18:51:01 +00:00
|
|
|
void handle_pot (Pot&, float delta);
|
2012-04-10 14:27:44 +00:00
|
|
|
|
2015-10-08 12:49:58 -04:00
|
|
|
void periodic (ARDOUR::microseconds_t now_usecs);
|
|
|
|
|
void redisplay (ARDOUR::microseconds_t now_usecs);
|
2012-04-10 14:27:44 +00:00
|
|
|
|
2012-04-11 13:03:41 +00:00
|
|
|
MidiByteArray display (uint32_t line_number, const std::string&);
|
|
|
|
|
MidiByteArray blank_display (uint32_t line_number);
|
2012-04-22 02:15:24 +00:00
|
|
|
|
|
|
|
|
void zero ();
|
2012-04-11 13:03:41 +00:00
|
|
|
|
2015-10-07 21:36:16 -07:00
|
|
|
void potmode_changed (bool notify=false);
|
2012-04-12 21:02:43 +00:00
|
|
|
|
|
|
|
|
void lock_controls ();
|
|
|
|
|
void unlock_controls ();
|
2012-04-26 14:28:41 +00:00
|
|
|
bool locked() const { return _controls_locked; }
|
|
|
|
|
|
2012-04-28 01:43:38 +00:00
|
|
|
void gui_selection_changed (const ARDOUR::StrongRouteNotificationList&);
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2012-06-01 12:56:20 +00:00
|
|
|
void notify_metering_state_changed();
|
2012-04-12 14:34:03 +00:00
|
|
|
|
2015-10-08 12:49:58 -04:00
|
|
|
void block_screen_display_for (uint32_t msecs);
|
|
|
|
|
void block_vpot_mode_display_for (uint32_t msecs);
|
2015-10-07 18:15:25 -04:00
|
|
|
|
2012-04-09 13:59:35 +00:00
|
|
|
private:
|
2012-04-12 21:02:43 +00:00
|
|
|
Button* _solo;
|
|
|
|
|
Button* _recenable;
|
|
|
|
|
Button* _mute;
|
|
|
|
|
Button* _select;
|
|
|
|
|
Button* _vselect;
|
|
|
|
|
Button* _fader_touch;
|
|
|
|
|
Pot* _vpot;
|
|
|
|
|
Fader* _fader;
|
|
|
|
|
Meter* _meter;
|
|
|
|
|
int _index;
|
2012-04-10 14:27:44 +00:00
|
|
|
Surface* _surface;
|
2012-04-12 21:02:43 +00:00
|
|
|
bool _controls_locked;
|
2012-06-01 12:56:20 +00:00
|
|
|
bool _transport_is_rolling;
|
|
|
|
|
bool _metering_active;
|
2015-10-08 12:49:58 -04:00
|
|
|
uint64_t _block_vpot_mode_redisplay_until;
|
|
|
|
|
uint64_t _block_screen_redisplay_until;
|
2012-04-10 14:27:44 +00:00
|
|
|
boost::shared_ptr<ARDOUR::Route> _route;
|
|
|
|
|
PBD::ScopedConnectionList route_connections;
|
|
|
|
|
|
2015-10-13 15:34:53 -04:00
|
|
|
ARDOUR::AutomationType _pan_mode;
|
2015-11-01 15:30:36 -08:00
|
|
|
ARDOUR::AutomationType _trim_mode;
|
2015-10-07 21:36:16 -07:00
|
|
|
|
2012-04-12 21:02:43 +00:00
|
|
|
float _last_gain_position_written;
|
2012-04-22 17:37:52 +00:00
|
|
|
float _last_pan_azi_position_written;
|
|
|
|
|
float _last_pan_width_position_written;
|
2015-10-07 21:36:16 -07:00
|
|
|
float _last_trim_position_written;
|
2012-04-10 14:27:44 +00:00
|
|
|
|
|
|
|
|
void notify_solo_changed ();
|
|
|
|
|
void notify_mute_changed ();
|
|
|
|
|
void notify_record_enable_changed ();
|
|
|
|
|
void notify_gain_changed (bool force_update = true);
|
|
|
|
|
void notify_property_changed (const PBD::PropertyChange&);
|
2012-04-18 16:52:38 +00:00
|
|
|
void notify_panner_azi_changed (bool force_update = true);
|
|
|
|
|
void notify_panner_width_changed (bool force_update = true);
|
2012-04-10 14:27:44 +00:00
|
|
|
void notify_active_changed ();
|
|
|
|
|
void notify_route_deleted ();
|
2015-10-07 21:36:16 -07:00
|
|
|
void notify_trim_changed (bool force_update = true);
|
2015-11-01 13:35:02 -08:00
|
|
|
void notify_phase_changed (bool force_update = true);
|
2015-10-05 16:17:49 +02:00
|
|
|
|
2012-04-10 14:27:44 +00:00
|
|
|
void update_automation ();
|
|
|
|
|
void update_meter ();
|
2012-04-13 03:46:38 +00:00
|
|
|
|
2012-04-16 19:05:27 +00:00
|
|
|
std::string vpot_mode_string () const;
|
2012-04-13 16:11:55 +00:00
|
|
|
|
2015-10-07 18:06:43 -04:00
|
|
|
void return_to_vpot_mode_display ();
|
2015-10-02 22:04:02 -04:00
|
|
|
|
|
|
|
|
struct RedisplayRequest {
|
|
|
|
|
ARDOUR::AutomationType type;
|
|
|
|
|
float val;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
RingBuffer<RedisplayRequest> redisplay_requests;
|
|
|
|
|
|
2012-04-13 20:27:08 +00:00
|
|
|
void do_parameter_display (ARDOUR::AutomationType, float val);
|
2015-10-02 22:04:02 -04:00
|
|
|
void queue_parameter_display (ARDOUR::AutomationType, float val);
|
2015-10-05 16:17:49 +02:00
|
|
|
|
2012-04-16 19:05:27 +00:00
|
|
|
void select_event (Button&, ButtonState);
|
|
|
|
|
void vselect_event (Button&, ButtonState);
|
|
|
|
|
void fader_touch_event (Button&, ButtonState);
|
|
|
|
|
|
2012-04-26 03:46:18 +00:00
|
|
|
std::vector<Evoral::Parameter> possible_pot_parameters;
|
2015-11-01 13:35:02 -08:00
|
|
|
std::vector<Evoral::Parameter> possible_trim_parameters;
|
2012-04-16 19:05:27 +00:00
|
|
|
void next_pot_mode ();
|
2012-04-22 17:37:52 +00:00
|
|
|
void set_vpot_parameter (Evoral::Parameter);
|
2015-10-08 14:58:28 -04:00
|
|
|
void show_route_name ();
|
2012-04-22 17:37:52 +00:00
|
|
|
|
|
|
|
|
void reset_saved_values ();
|
|
|
|
|
|
2015-10-18 18:13:16 -07:00
|
|
|
bool is_midi_track () const;
|
2015-10-18 07:38:40 -07:00
|
|
|
|
2015-10-10 17:13:04 -04:00
|
|
|
typedef std::map<Evoral::Parameter,Control*> ControlParameterMap;
|
|
|
|
|
ControlParameterMap control_by_parameter;
|
2012-04-09 13:59:35 +00:00
|
|
|
};
|
|
|
|
|
|
2015-04-15 20:37:20 -04:00
|
|
|
}
|
2012-04-09 13:59:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_mackie_control_protocol_strip_h__ */
|