2012-04-09 09:59:35 -04:00
|
|
|
#ifndef __ardour_mackie_control_protocol_strip_h__
|
|
|
|
#define __ardour_mackie_control_protocol_strip_h__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
|
2012-04-22 13:37:52 -04:00
|
|
|
#include "evoral/Parameter.hpp"
|
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
#include "pbd/property_basics.h"
|
2015-10-02 22:04:02 -04:00
|
|
|
#include "pbd/ringbuffer.h"
|
2012-04-11 09:03:41 -04:00
|
|
|
#include "pbd/signals.h"
|
2012-04-10 10:27:44 -04:00
|
|
|
|
2012-04-13 16:27:08 -04:00
|
|
|
#include "ardour/types.h"
|
2012-04-12 10:34:03 -04:00
|
|
|
#include "control_protocol/types.h"
|
|
|
|
|
2012-04-09 09:59:35 -04:00
|
|
|
#include "control_group.h"
|
2012-04-11 09:03:41 -04:00
|
|
|
#include "types.h"
|
2015-12-11 11:05:57 -05:00
|
|
|
#include "mackie_control_protocol.h"
|
2012-04-11 09:03:41 -04:00
|
|
|
#include "midi_byte_array.h"
|
2012-04-14 15:02:54 -04:00
|
|
|
#include "device_info.h"
|
2012-04-10 10:27:44 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
2016-05-16 16:45:37 -04:00
|
|
|
class Stripable;
|
2012-04-16 15:05:27 -04:00
|
|
|
class Bundle;
|
|
|
|
class ChannelCount;
|
2012-04-10 10:27:44 -04:00
|
|
|
}
|
2012-04-09 09:59:35 -04:00
|
|
|
|
2015-04-15 20:37:20 -04:00
|
|
|
namespace ArdourSurface {
|
|
|
|
|
2012-04-09 09:59:35 -04:00
|
|
|
namespace Mackie {
|
|
|
|
|
|
|
|
class Control;
|
|
|
|
class Surface;
|
|
|
|
class Button;
|
|
|
|
class Pot;
|
|
|
|
class Fader;
|
|
|
|
class Meter;
|
2012-04-11 09:03:41 -04:00
|
|
|
class SurfacePort;
|
2012-04-09 09:59:35 -04:00
|
|
|
|
|
|
|
struct GlobalControlDefinition {
|
|
|
|
const char* name;
|
2013-03-24 09:55:56 -04:00
|
|
|
int id;
|
2012-04-10 10:27:44 -04:00
|
|
|
Control* (*factory)(Surface&, int index, const char* name, Group&);
|
2012-04-09 09:59:35 -04:00
|
|
|
const char* group_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
This is the set of controls that make up a strip.
|
|
|
|
*/
|
|
|
|
class Strip : public Group
|
|
|
|
{
|
|
|
|
public:
|
2012-04-14 15:02:54 -04:00
|
|
|
Strip (Surface&, const std::string & name, int index, const std::map<Button::ID,StripButtonInfo>&);
|
2012-04-10 10:27:44 -04:00
|
|
|
~Strip();
|
2012-04-09 09:59:35 -04:00
|
|
|
|
2016-05-16 16:45:37 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Stripable> stripable() const { return _stripable; }
|
2012-04-10 10:27:44 -04:00
|
|
|
|
|
|
|
void add (Control & control);
|
2012-04-09 09:59:35 -04:00
|
|
|
int index() const { return _index; } // zero based
|
2015-12-14 22:22:34 -05:00
|
|
|
Surface* surface() const { return _surface; }
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2016-05-16 16:45:37 -04:00
|
|
|
void set_stripable (boost::shared_ptr<ARDOUR::Stripable>, bool with_messages = true);
|
2012-04-10 10:27:44 -04:00
|
|
|
|
|
|
|
// call all signal handlers manually
|
2015-10-18 21:13:16 -04:00
|
|
|
void notify_all ();
|
2012-04-10 10:27:44 -04:00
|
|
|
|
2012-04-11 09:39:25 -04: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 14:51:01 -04:00
|
|
|
void handle_pot (Pot&, float delta);
|
2012-04-10 10:27:44 -04:00
|
|
|
|
2015-10-08 12:49:58 -04:00
|
|
|
void periodic (ARDOUR::microseconds_t now_usecs);
|
2016-01-29 12:26:41 -05:00
|
|
|
void redisplay (ARDOUR::microseconds_t now_usecs, bool force = true);
|
2012-04-10 10:27:44 -04:00
|
|
|
|
2012-04-11 09:03:41 -04:00
|
|
|
MidiByteArray display (uint32_t line_number, const std::string&);
|
|
|
|
MidiByteArray blank_display (uint32_t line_number);
|
2012-04-21 22:15:24 -04:00
|
|
|
|
|
|
|
void zero ();
|
2012-04-11 09:03:41 -04:00
|
|
|
|
2016-02-01 22:52:16 -05:00
|
|
|
void flip_mode_changed ();
|
2015-12-11 11:46:39 -05:00
|
|
|
void subview_mode_changed ();
|
2012-04-12 17:02:43 -04:00
|
|
|
|
|
|
|
void lock_controls ();
|
|
|
|
void unlock_controls ();
|
2012-04-26 10:28:41 -04:00
|
|
|
bool locked() const { return _controls_locked; }
|
|
|
|
|
2012-06-01 08:56:20 -04:00
|
|
|
void notify_metering_state_changed();
|
2012-04-12 10:34:03 -04: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 09:59:35 -04:00
|
|
|
private:
|
2016-01-29 12:26:41 -05:00
|
|
|
enum VPotDisplayMode {
|
|
|
|
Name,
|
|
|
|
Value
|
|
|
|
};
|
|
|
|
|
2012-04-12 17:02:43 -04: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 10:27:44 -04:00
|
|
|
Surface* _surface;
|
2012-04-12 17:02:43 -04:00
|
|
|
bool _controls_locked;
|
2012-06-01 08:56:20 -04:00
|
|
|
bool _transport_is_rolling;
|
|
|
|
bool _metering_active;
|
2016-01-29 12:26:41 -05:00
|
|
|
std::string pending_display[2];
|
|
|
|
std::string current_display[2];
|
2015-10-08 12:49:58 -04:00
|
|
|
uint64_t _block_screen_redisplay_until;
|
2016-01-29 12:26:41 -05:00
|
|
|
uint64_t return_to_vpot_mode_display_at;
|
2016-05-16 16:45:37 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Stripable> _stripable;
|
|
|
|
PBD::ScopedConnectionList stripable_connections;
|
2015-12-11 11:05:57 -05:00
|
|
|
PBD::ScopedConnectionList subview_connections;
|
2015-11-06 19:18:13 -05:00
|
|
|
PBD::ScopedConnectionList send_connections;
|
2015-12-14 22:22:34 -05:00
|
|
|
int eq_band;
|
2012-04-10 10:27:44 -04:00
|
|
|
|
2015-10-13 15:34:53 -04:00
|
|
|
ARDOUR::AutomationType _pan_mode;
|
2015-10-08 00:36:16 -04:00
|
|
|
|
2012-04-12 17:02:43 -04:00
|
|
|
float _last_gain_position_written;
|
2012-04-22 13:37:52 -04:00
|
|
|
float _last_pan_azi_position_written;
|
|
|
|
float _last_pan_width_position_written;
|
2015-10-08 00:36:16 -04:00
|
|
|
float _last_trim_position_written;
|
2012-04-10 10:27:44 -04: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 12:52:38 -04:00
|
|
|
void notify_panner_azi_changed (bool force_update = true);
|
|
|
|
void notify_panner_width_changed (bool force_update = true);
|
2016-05-16 16:45:37 -04:00
|
|
|
void notify_stripable_deleted ();
|
2015-11-06 19:18:13 -05:00
|
|
|
void notify_processor_changed (bool force_update = true);
|
2012-04-10 10:27:44 -04:00
|
|
|
void update_automation ();
|
|
|
|
void update_meter ();
|
2015-11-06 19:18:13 -05:00
|
|
|
std::string vpot_mode_string ();
|
2012-04-13 12:11:55 -04:00
|
|
|
|
2015-12-07 18:37:28 -05:00
|
|
|
boost::shared_ptr<ARDOUR::AutomationControl> mb_pan_controllable;
|
2015-12-11 11:05:57 -05:00
|
|
|
|
2015-10-07 18:06:43 -04:00
|
|
|
void return_to_vpot_mode_display ();
|
2016-02-01 22:52:16 -05:00
|
|
|
void next_pot_mode ();
|
2015-10-02 22:04:02 -04:00
|
|
|
|
2012-04-13 16:27:08 -04:00
|
|
|
void do_parameter_display (ARDOUR::AutomationType, float val);
|
2012-04-16 15:05:27 -04:00
|
|
|
void select_event (Button&, ButtonState);
|
|
|
|
void vselect_event (Button&, ButtonState);
|
|
|
|
void fader_touch_event (Button&, ButtonState);
|
|
|
|
|
2015-12-14 22:22:34 -05:00
|
|
|
std::vector<ARDOUR::AutomationType> possible_pot_parameters;
|
|
|
|
std::vector<ARDOUR::AutomationType> possible_trim_parameters;
|
|
|
|
void set_vpot_parameter (ARDOUR::AutomationType);
|
2016-05-16 16:45:37 -04:00
|
|
|
void show_stripable_name ();
|
2012-04-22 13:37:52 -04:00
|
|
|
|
|
|
|
void reset_saved_values ();
|
|
|
|
|
2015-10-18 21:13:16 -04:00
|
|
|
bool is_midi_track () const;
|
2015-10-18 10:38:40 -04:00
|
|
|
|
2015-12-14 22:22:34 -05:00
|
|
|
void notify_eq_change (ARDOUR::AutomationType, uint32_t band, bool force);
|
2016-05-16 16:45:37 -04:00
|
|
|
void setup_eq_vpot (boost::shared_ptr<ARDOUR::Stripable>);
|
2015-12-15 08:35:30 -05:00
|
|
|
|
2015-12-15 10:29:45 -05:00
|
|
|
void notify_dyn_change (ARDOUR::AutomationType, bool force, bool propagate_mode_change);
|
2016-05-16 16:45:37 -04:00
|
|
|
void setup_dyn_vpot (boost::shared_ptr<ARDOUR::Stripable>);
|
2016-01-27 14:15:41 -05:00
|
|
|
|
|
|
|
void notify_send_level_change (ARDOUR::AutomationType, uint32_t band, bool force);
|
2016-05-16 16:45:37 -04:00
|
|
|
void setup_sends_vpot (boost::shared_ptr<ARDOUR::Stripable>);
|
2016-01-31 11:59:55 -05:00
|
|
|
|
2016-01-31 13:16:22 -05:00
|
|
|
void notify_trackview_change (ARDOUR::AutomationType, uint32_t band, bool force);
|
2016-05-16 16:45:37 -04:00
|
|
|
void setup_trackview_vpot (boost::shared_ptr<ARDOUR::Stripable>);
|
2012-04-09 09:59:35 -04:00
|
|
|
};
|
|
|
|
|
2015-04-15 20:37:20 -04:00
|
|
|
}
|
2012-04-09 09:59:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __ardour_mackie_control_protocol_strip_h__ */
|