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>
|
|
|
|
|
|
|
|
#include "midi++/types.h"
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
#include "controls.h"
|
|
|
|
#include "types.h"
|
2012-04-10 10:27:44 -04:00
|
|
|
#include "mackie_jog_wheel.h"
|
|
|
|
|
|
|
|
namespace MIDI {
|
|
|
|
class Parser;
|
|
|
|
}
|
|
|
|
|
2012-04-10 11:13:37 -04:00
|
|
|
namespace ARDOUR {
|
|
|
|
class Route;
|
|
|
|
}
|
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
class MidiByteArray;
|
|
|
|
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
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
class Surface : public PBD::ScopedConnectionList
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
public:
|
2012-04-10 10:27:44 -04:00
|
|
|
Surface (MackieControlProtocol&, jack_client_t* jack, const std::string& device_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; }
|
|
|
|
|
|
|
|
MackieControlProtocol& mcp() const { return _mcp; }
|
|
|
|
|
|
|
|
bool active() const { return _active; }
|
|
|
|
void drop_routes ();
|
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;
|
|
|
|
std::map<int,Button*> buttons;
|
|
|
|
std::map<int,Led*> leds;
|
2012-04-08 19:14:36 -04:00
|
|
|
std::map<int,Meter*> meters;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
/// no strip controls in here because they usually
|
|
|
|
/// have the same names.
|
|
|
|
std::map<std::string,Control*> controls_by_name;
|
2012-04-10 10:27:44 -04:00
|
|
|
|
|
|
|
Mackie::JogWheel* jog_wheel() const { return _jog_wheel; }
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
/// The collection of all numbered strips. No master
|
|
|
|
/// strip in here.
|
|
|
|
typedef std::vector<Strip*> Strips;
|
|
|
|
Strips strips;
|
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
uint32_t n_strips () const;
|
|
|
|
Strip* nth_strip (uint32_t n) 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;
|
|
|
|
|
|
|
|
void periodic ();
|
|
|
|
|
|
|
|
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 ();
|
|
|
|
|
|
|
|
/// 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);
|
|
|
|
/// 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*/);
|
2008-12-12 17:55:03 -05:00
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
/// called from MackieControlProtocol::zero_all to turn things off
|
|
|
|
void zero_all ();
|
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 ();
|
|
|
|
|
|
|
|
bool has_timecode_display() const;
|
|
|
|
void display_timecode (const std::string & /*timecode*/, const std::string & /*timecode_last*/);
|
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
|
|
|
|
MidiByteArray two_char_display (const std::string & msg, const std::string & dots = " ");
|
|
|
|
MidiByteArray 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 = "");
|
|
|
|
|
2012-04-11 15:27:13 -04:00
|
|
|
void update_view_mode_display ();
|
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
protected:
|
|
|
|
void init_controls();
|
|
|
|
void init_strips ();
|
2008-12-12 17:55:03 -05:00
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
private:
|
|
|
|
MackieControlProtocol& _mcp;
|
|
|
|
SurfacePort* _port;
|
|
|
|
surface_type_t _stype;
|
|
|
|
uint32_t _number;
|
|
|
|
bool _active;
|
|
|
|
bool _connected;
|
|
|
|
Mackie::JogWheel* _jog_wheel;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2012-04-10 10:27:44 -04:00
|
|
|
void jog_wheel_state_display (Mackie::JogWheel::State state);
|
2008-06-02 17:41:35 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|