13
0

initial launchpad X exploration, using copy-n-edit of launchpad pro code

This commit is contained in:
Paul Davis 2023-10-19 22:18:34 -06:00
parent 99e2546477
commit 3e34229b9f
6 changed files with 3056 additions and 0 deletions

View File

@ -0,0 +1,272 @@
/*
* Copyright (C) 2016 Paul Davis <paul@linuxaudiosystems.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <gtkmm/alignment.h>
#include <gtkmm/label.h>
#include <gtkmm/liststore.h>
#include "pbd/unwind.h"
#include "pbd/strsplit.h"
#include "pbd/file_utils.h"
#include "gtkmm2ext/bindings.h"
#include "gtkmm2ext/gui_thread.h"
#include "gtkmm2ext/utils.h"
#include "ardour/audioengine.h"
#include "ardour/filesystem_paths.h"
#include "ardour/parameter_descriptor.h"
#include "lpx.h"
#include "gui.h"
#include "pbd/i18n.h"
using namespace PBD;
using namespace ARDOUR;
using namespace ArdourSurface;
using namespace Gtk;
using namespace Gtkmm2ext;
void*
LaunchPadX::get_gui () const
{
if (!_gui) {
const_cast<LaunchPadX*>(this)->build_gui ();
}
static_cast<Gtk::VBox*>(_gui)->show_all();
return _gui;
}
void
LaunchPadX::tear_down_gui ()
{
if (_gui) {
Gtk::Widget *w = static_cast<Gtk::VBox*>(_gui)->get_parent();
if (w) {
w->hide();
delete w;
}
}
delete _gui;
_gui = 0;
}
void
LaunchPadX::build_gui ()
{
_gui = new LPX_GUI (*this);
}
/*--------------------*/
LPX_GUI::LPX_GUI (LaunchPadX& p)
: _lp (p)
, _table (2, 5)
, _action_table (5, 4)
, _ignore_active_change (false)
{
set_border_width (12);
_table.set_row_spacings (4);
_table.set_col_spacings (6);
_table.set_border_width (12);
_table.set_homogeneous (false);
std::string data_file_path;
std::string name = "launchpad-pro.png";
Searchpath spath(ARDOUR::ardour_data_search_path());
spath.add_subdirectory_to_paths ("icons");
find_file (spath, name, data_file_path);
if (!data_file_path.empty()) {
_image.set (data_file_path);
_hpacker.pack_start (_image, false, false);
}
Gtk::Label* l;
int row = 0;
_input_combo.pack_start (_midi_port_columns.short_name);
_output_combo.pack_start (_midi_port_columns.short_name);
_input_combo.signal_changed().connect (sigc::bind (sigc::mem_fun (*this, &LPX_GUI::active_port_changed), &_input_combo, true));
_output_combo.signal_changed().connect (sigc::bind (sigc::mem_fun (*this, &LPX_GUI::active_port_changed), &_output_combo, false));
l = manage (new Gtk::Label);
l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("Incoming MIDI on:")));
l->set_alignment (1.0, 0.5);
_table.attach (*l, 0, 1, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions(0));
_table.attach (_input_combo, 1, 2, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions(0), 0, 0);
row++;
l = manage (new Gtk::Label);
l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("Outgoing MIDI on:")));
l->set_alignment (1.0, 0.5);
_table.attach (*l, 0, 1, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions(0));
_table.attach (_output_combo, 1, 2, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions(0), 0, 0);
row++;
_hpacker.pack_start (_table, true, true);
set_spacing (12);
pack_start (_hpacker, false, false);
/* update the port connection combos */
update_port_combos ();
/* catch future changes to connection state */
ARDOUR::AudioEngine::instance()->PortRegisteredOrUnregistered.connect (_port_connections, invalidator (*this), boost::bind (&LPX_GUI::connection_handler, this), gui_context());
ARDOUR::AudioEngine::instance()->PortPrettyNameChanged.connect (_port_connections, invalidator (*this), boost::bind (&LPX_GUI::connection_handler, this), gui_context());
_lp.ConnectionChange.connect (_port_connections, invalidator (*this), boost::bind (&LPX_GUI::connection_handler, this), gui_context());
}
LPX_GUI::~LPX_GUI ()
{
}
void
LPX_GUI::connection_handler ()
{
/* ignore all changes to combobox active strings here, because we're
updating them to match a new ("external") reality - we were called
because port connections have changed.
*/
PBD::Unwinder<bool> ici (_ignore_active_change, true);
update_port_combos ();
}
void
LPX_GUI::update_port_combos ()
{
std::vector<std::string> midi_inputs;
std::vector<std::string> midi_outputs;
if (!_lp.input_port() || !_lp.output_port()) {
return;
}
ARDOUR::AudioEngine::instance()->get_ports ("", ARDOUR::DataType::MIDI, ARDOUR::PortFlags (ARDOUR::IsOutput|ARDOUR::IsTerminal), midi_inputs);
ARDOUR::AudioEngine::instance()->get_ports ("", ARDOUR::DataType::MIDI, ARDOUR::PortFlags (ARDOUR::IsInput|ARDOUR::IsTerminal), midi_outputs);
Glib::RefPtr<Gtk::ListStore> input = build_midi_port_list (midi_inputs, true);
Glib::RefPtr<Gtk::ListStore> output = build_midi_port_list (midi_outputs, false);
bool input_found = false;
bool output_found = false;
int n;
_input_combo.set_model (input);
_output_combo.set_model (output);
Gtk::TreeModel::Children children = input->children();
Gtk::TreeModel::Children::iterator i;
i = children.begin();
++i; /* skip "Disconnected" */
for (n = 1; i != children.end(); ++i, ++n) {
std::string port_name = (*i)[_midi_port_columns.full_name];
if (_lp.input_port()->connected_to (port_name)) {
_input_combo.set_active (n);
input_found = true;
break;
}
}
if (!input_found) {
_input_combo.set_active (0); /* disconnected */
}
children = output->children();
i = children.begin();
++i; /* skip "Disconnected" */
for (n = 1; i != children.end(); ++i, ++n) {
std::string port_name = (*i)[_midi_port_columns.full_name];
if (_lp.output_port()->connected_to (port_name)) {
_output_combo.set_active (n);
output_found = true;
break;
}
}
if (!output_found) {
_output_combo.set_active (0); /* disconnected */
}
}
Glib::RefPtr<Gtk::ListStore>
LPX_GUI::build_midi_port_list (std::vector<std::string> const & ports, bool for_input)
{
Glib::RefPtr<Gtk::ListStore> store = ListStore::create (_midi_port_columns);
TreeModel::Row row;
row = *store->append ();
row[_midi_port_columns.full_name] = std::string();
row[_midi_port_columns.short_name] = _("Disconnected");
for (std::vector<std::string>::const_iterator p = ports.begin(); p != ports.end(); ++p) {
row = *store->append ();
row[_midi_port_columns.full_name] = *p;
std::string pn = ARDOUR::AudioEngine::instance()->get_pretty_name_by_name (*p);
if (pn.empty ()) {
pn = (*p).substr ((*p).find (':') + 1);
}
row[_midi_port_columns.short_name] = pn;
}
return store;
}
void
LPX_GUI::active_port_changed (Gtk::ComboBox* combo, bool for_input)
{
if (_ignore_active_change) {
return;
}
TreeModel::iterator active = combo->get_active ();
std::string new_port = (*active)[_midi_port_columns.full_name];
if (new_port.empty()) {
if (for_input) {
_lp.input_port()->disconnect_all ();
} else {
_lp.output_port()->disconnect_all ();
}
return;
}
if (for_input) {
if (!_lp.input_port()->connected_to (new_port)) {
_lp.input_port()->disconnect_all ();
_lp.input_port()->connect (new_port);
}
} else {
if (!_lp.output_port()->connected_to (new_port)) {
_lp.output_port()->disconnect_all ();
_lp.output_port()->connect (new_port);
}
}
}

View File

@ -0,0 +1,101 @@
/*
* Copyright (C) 2016 Paul Davis <paul@linuxaudiosystems.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __ardour_lpx_gui_h__
#define __ardour_lpx_gui_h__
#include <vector>
#include <string>
#include <gtkmm/box.h>
#include <gtkmm/button.h>
#include <gtkmm/combobox.h>
#include <gtkmm/image.h>
#include <gtkmm/table.h>
#include <gtkmm/treestore.h>
#include <gtkmm/spinbutton.h>
#include <gtkmm/notebook.h>
namespace Gtk {
class ListStore;
}
#include "ardour/mode.h"
#include "lpx.h"
namespace ArdourSurface {
class LPX_GUI : public Gtk::VBox
{
public:
LPX_GUI (LaunchPadX&);
~LPX_GUI ();
private:
LaunchPadX& _lp;
Gtk::HBox _hpacker;
Gtk::Table _table;
Gtk::Table _action_table;
Gtk::ComboBox _input_combo;
Gtk::ComboBox _output_combo;
Gtk::Image _image;
void update_port_combos ();
void connection_handler ();
PBD::ScopedConnectionList _port_connections;
struct MidiPortColumns : public Gtk::TreeModel::ColumnRecord {
MidiPortColumns() {
add (short_name);
add (full_name);
}
Gtk::TreeModelColumn<std::string> short_name;
Gtk::TreeModelColumn<std::string> full_name;
};
MidiPortColumns _midi_port_columns;
bool _ignore_active_change;
Glib::RefPtr<Gtk::ListStore> build_midi_port_list (std::vector<std::string> const & ports, bool for_input);
void active_port_changed (Gtk::ComboBox*,bool for_input);
#if 0
struct PressureModeColumns : public Gtk::TreeModel::ColumnRecord {
PressureModeColumns() {
add (mode);
add (name);
}
Gtk::TreeModelColumn<Push2::PressureMode> mode;
Gtk::TreeModelColumn<std::string> name;
};
PressureModeColumns _pressure_mode_columns;
Glib::RefPtr<Gtk::ListStore> build_pressure_mode_columns ();
Gtk::ComboBox _pressure_mode_selector;
Gtk::Label _pressure_mode_label;
void reprogram_pressure_mode ();
#endif
};
}
#endif /* __ardour_lpx_gui_h__ */

View File

@ -0,0 +1,82 @@
/*
* Copyright (C) 2016 Paul Davis <paul@linuxaudiosystems.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <stdexcept>
#include "pbd/error.h"
#include "ardour/rc_configuration.h"
#include "control_protocol/control_protocol.h"
#include "lpx.h"
using namespace ARDOUR;
using namespace PBD;
using namespace ArdourSurface;
static ControlProtocol*
new_lpx (Session* s)
{
LaunchPadX * p2 = 0;
try {
p2 = new LaunchPadX (*s);
/* do not set active here - wait for set_state() */
}
catch (std::exception & e) {
error << "Error instantiating LaunchPad X support: " << e.what() << endmsg;
delete p2;
p2 = 0;
}
return p2;
}
static void
delete_lpx (ControlProtocol* cp)
{
try
{
delete cp;
}
catch ( std::exception & e )
{
std::cout << "Exception caught trying to finalize LaunchPad X support: " << e.what() << std::endl;
}
}
static bool
probe_lpx_midi_protocol ()
{
std::string i, o;
return LaunchPadX::probe (i, o);
}
static ControlProtocolDescriptor lpx_descriptor = {
/* name */ "Novation LaunchPad X",
/* id */ "uri://ardour.org/surfaces/lpx:0",
/* module */ 0,
/* available */ LaunchPadX::available,
/* probe_port */ probe_lpx_midi_protocol,
/* match usb */ 0, // LaunchPadX::match_usb,
/* initialize */ new_lpx,
/* destroy */ delete_lpx,
};
extern "C" ARDOURSURFACE_API ControlProtocolDescriptor* protocol_descriptor () { return &lpx_descriptor; }

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,482 @@
/*
* Copyright (C) 2016-2018 Paul Davis <paul@linuxaudiosystems.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __ardour_lpx_h__
#define __ardour_lpx_h__
#include <vector>
#include <map>
#include <stack>
#include <list>
#include <set>
#include <libusb.h>
#define ABSTRACT_UI_EXPORTS
#include "pbd/abstract_ui.h"
#include "midi++/types.h"
#include "ardour/mode.h"
#include "ardour/types.h"
#include "control_protocol/control_protocol.h"
#include "control_protocol/types.h"
#include "gtkmm2ext/colors.h"
#include "midi_surface/midi_byte_array.h"
#include "midi_surface/midi_surface.h"
namespace MIDI {
class Parser;
class Port;
}
namespace ARDOUR {
class AutomationControl;
class Port;
class MidiBuffer;
class MidiTrack;
class Trigger;
}
namespace ArdourSurface {
class LPX_GUI;
class LaunchPadX : public MIDISurface
{
public:
/* use hex for these constants, because we'll see them (as note numbers
and CC numbers) in hex within MIDI messages when debugging.
*/
enum PadID {
/* top */
Shift = 0x5a,
Left = 0x5b,
Right = 0x5c,
Session = 0x5d,
Note = 0x5e,
Chord = 0x5f,
Custom = 0x60,
Sequencer = 0x61,
Projects = 0x62,
/* right side */
Patterns = 0x59,
Steps = 0x4f,
PatternSettings = 0x45,
Velocity = 0x3b,
Probability = 0x31,
Mutation = 0x27,
MicroStep = 0x1d,
PrintToClip = 0x13,
/* lower bottom */
StopClip = 0x8,
Device = 0x7,
Sends = 0x6,
Pan = 0x5,
Volume = 0x4,
Solo = 0x3,
Mute = 0x2,
RecordArm = 0x1,
/* left side */
CaptureMIDI = 0xa,
Play = 0x14,
FixedLength = 0x1e,
Quantize = 0x28,
Duplicate = 0x32,
Clear = 0x3c,
Down = 0x46,
Up = 0x50,
/* upper bottom */
Lower1 = 0x65,
Lower2 = 0x66,
Lower3 = 0x67,
Lower4 = 0x68,
Lower5 = 0x69,
Lower6 = 0x6a,
Lower7 = 0x6b,
Lower8 = 0x6c,
/* Logo */
Logo = 0x63
};
bool light_logo();
void all_pads_out ();
static const PadID all_pad_ids[];
LaunchPadX (ARDOUR::Session&);
~LaunchPadX ();
static bool available ();
static bool match_usb (uint16_t, uint16_t);
static bool probe (std::string&, std::string&);
std::string input_port_name () const;
std::string output_port_name () const;
bool has_editor () const { return true; }
void* get_gui () const;
void tear_down_gui ();
int set_active (bool yn);
XMLNode& get_state() const;
int set_state (const XMLNode & node, int version);
private:
enum DeviceMode {
Standalone,
DAW,
Programmer
};
enum Layout {
SessionLayout,
Fader,
ChordLayout,
CustomLayout,
NoteLayout,
Scale,
SequencerSettings,
SequencerSteps,
SequencerVelocity,
SequencerPatternSettings,
SequencerProbability,
SequencerMutation,
SequencerMicroStep,
SequencerProjects,
SequencerPatterns,
SequencerTempo,
SequencerSwing,
ProgrammerLayout,
Settings,
CustomSettings
};
enum FaderBank {
VolumeFaders,
PanFaders,
SendFaders,
DeviceFaders
};
static const Layout AllLayouts[];
struct Pad {
enum ColorMode {
Static = 0x0,
Flashing = 0x1,
Pulsing = 0x2
};
typedef void (LaunchPadX::*ButtonMethod)(Pad&);
typedef void (LaunchPadX::*PadMethod)(Pad&, int velocity);
Pad (PadID pid, ButtonMethod press_method, ButtonMethod long_press_method = &LaunchPadX::relax, ButtonMethod release_method = &LaunchPadX::relax)
: id (pid)
, x (-1)
, y (-1)
{
on_press = press_method;
on_release = release_method;
on_long_press = long_press_method;
}
Pad (int pid, int xx, int yy, PadMethod press_method, ButtonMethod long_press_method = &LaunchPadX::relax, ButtonMethod release_method = &LaunchPadX::relax)
: id (pid)
, x (xx)
, y (yy)
{
on_pad_press = press_method;
on_release = release_method;
on_long_press = long_press_method;
}
MIDI::byte status_byte() const { if (x < 0) return 0xb0; return 0x90; }
bool is_pad () const { return x >= 0; }
bool is_button () const { return x < 0; }
int id;
int x;
int y;
/* It's either a button (CC number) or a pad (note number
* w/velocity info), never both.
*/
union {
ButtonMethod on_press;
PadMethod on_pad_press;
};
ButtonMethod on_release;
ButtonMethod on_long_press;
sigc::connection timeout_connection;
};
void relax (Pad& p);
std::set<int> consumed;
MIDI::byte logo_color;
int scroll_x_offset;
int scroll_y_offset;
typedef std::pair<int32_t,int32_t> StripableSlot;
typedef std::vector<StripableSlot> StripableSlotRow;
typedef std::vector<StripableSlotRow> StripableSlotColumn;
StripableSlotColumn stripable_slots;
StripableSlot get_stripable_slot (int x, int y) const;
typedef std::map<int,Pad> PadMap;
PadMap pad_map;
void build_pad_map();
Pad* pad_by_id (int pid);
typedef std::map<int,uint32_t> ColorMap;
ColorMap color_map;
void build_color_map ();
int find_closest_palette_color (uint32_t);
typedef std::map<uint32_t,int> NearestMap;
NearestMap nearest_map;
int begin_using_device ();
int stop_using_device ();
int device_acquire () { return 0; }
void device_release () { }
void run_event_loop ();
void stop_event_loop ();
void stripable_selection_changed ();
void select_stripable (int col);
std::weak_ptr<ARDOUR::MidiTrack> _current_pad_target;
void light_pad (int pad_id, int color, int mode = 0);
void pad_off (int pad_id);
void all_pads_off ();
void all_pads_on (int color);
void set_device_mode (DeviceMode);
void set_layout (Layout, int page = 0);
void handle_midi_controller_message (MIDI::Parser&, MIDI::EventTwoBytes*);
void handle_midi_note_on_message (MIDI::Parser&, MIDI::EventTwoBytes*);
void handle_midi_note_off_message (MIDI::Parser&, MIDI::EventTwoBytes*);
void handle_midi_sysex (MIDI::Parser&, MIDI::byte *, size_t count);
MIDI::Port* _daw_in_port;
MIDI::Port* _daw_out_port;
std::shared_ptr<ARDOUR::Port> _daw_in;
std::shared_ptr<ARDOUR::Port> _daw_out;
void port_registration_handler ();
int ports_acquire ();
void ports_release ();
void connect_daw_ports ();
void daw_write (const MidiByteArray&);
void daw_write (MIDI::byte const *, size_t);
void reconnect_for_programmer ();
void reconnect_for_session ();
void scroll_text (std::string const &, int color, bool loop, float speed = 0);
mutable LPX_GUI* _gui;
void build_gui ();
Layout _current_layout;
bool pad_filter (ARDOUR::MidiBuffer& in, ARDOUR::MidiBuffer& out) const;
void maybe_start_press_timeout (Pad& pad);
void start_press_timeout (Pad& pad);
bool long_press_timeout (int pad_id);
bool _shift_pressed;
bool _clear_pressed;
bool _duplicate_pressed;
bool _session_pressed;
void cue_press (Pad&, int row);
/* named pad methods */
void shift_press (Pad&);
void shift_release (Pad&);
void shift_long_press (Pad&) {}
void left_press (Pad&);
void left_release (Pad&) {}
void left_long_press (Pad&) {}
void right_press (Pad&);
void right_release (Pad&) {}
void right_long_press (Pad&) {}
void session_press (Pad&);
void session_release (Pad&);
void session_long_press (Pad&) {}
void note_press (Pad&);
void note_release (Pad&) {}
void note_long_press (Pad&) {}
void chord_press (Pad&);
void chord_release (Pad&) {}
void chord_long_press (Pad&) {}
void custom_press (Pad&);
void custom_release (Pad&) {}
void custom_long_press (Pad&) {}
void sequencer_press (Pad&);
void sequencer_release (Pad&) {}
void sequencer_long_press (Pad&) {}
void projects_press (Pad&);
void projects_release (Pad&) {}
void projects_long_press (Pad&) {}
void patterns_press (Pad&);
void patterns_release (Pad&) {}
void patterns_long_press (Pad&) {}
void steps_press (Pad&);
void steps_release (Pad&) {}
void steps_long_press (Pad&) {}
void pattern_settings_press (Pad&);
void pattern_settings_release (Pad&) {}
void pattern_settings_long_press (Pad&) {}
void velocity_press (Pad&);
void velocity_release (Pad&) {}
void velocity_long_press (Pad&) {}
void probability_press (Pad&);
void probability_release (Pad&) {}
void probability_long_press (Pad&) {}
void mutation_press (Pad&);
void mutation_release (Pad&) {}
void mutation_long_press (Pad&) {}
void microstep_press (Pad&);
void microstep_release (Pad&) {}
void microstep_long_press (Pad&) {}
void print_to_clip_press (Pad&);
void print_to_clip_release (Pad&) {}
void print_to_clip_long_press (Pad&) {}
void stop_clip_press (Pad&);
void stop_clip_release (Pad&) {}
void stop_clip_long_press (Pad&) {}
void device_press (Pad&);
void device_release (Pad&) {}
void device_long_press (Pad&) {}
void sends_press (Pad&);
void sends_release (Pad&) {}
void sends_long_press (Pad&) {}
void pan_press (Pad&);
void pan_release (Pad&) {}
void pan_long_press (Pad&) {}
void volume_press (Pad&);
void volume_release (Pad&) {}
void volume_long_press (Pad&) {}
void solo_press (Pad&);
void solo_release (Pad&) {}
void solo_long_press (Pad&);
void mute_press (Pad&);
void mute_release (Pad&) {}
void mute_long_press (Pad&) {}
void record_arm_press (Pad&);
void record_arm_release (Pad&) {}
void record_arm_long_press (Pad&) {}
void capture_midi_press (Pad&);
void capture_midi_release (Pad&) {}
void capture_midi_long_press (Pad&) {}
void play_press (Pad&);
void play_release (Pad&) {}
void play_long_press (Pad&) {}
void fixed_length_press (Pad&);
void fixed_length_release (Pad&) {}
void fixed_length_long_press (Pad&) {}
void quantize_press (Pad&);
void quantize_release (Pad&) {}
void quantize_long_press (Pad&) {}
void duplicate_press (Pad&);
void duplicate_release (Pad&) {}
void duplicate_long_press (Pad&) {}
void clear_press (Pad&);
void clear_release (Pad&);
void clear_long_press (Pad&) {}
void down_press (Pad&);
void down_release (Pad&) {}
void down_long_press (Pad&) {}
void up_press (Pad&);
void up_release (Pad&) {}
void up_long_press (Pad&) {}
void lower1_press (Pad&);
void lower1_release (Pad&) {}
void lower1_long_press (Pad&) {}
void lower2_press (Pad&);
void lower2_release (Pad&) {}
void lower2_long_press (Pad&) {}
void lower3_press (Pad&);
void lower3_release (Pad&) {}
void lower3_long_press (Pad&) {}
void lower4_press (Pad&);
void lower4_release (Pad&) {}
void lower4_long_press (Pad&) {}
void lower5_press (Pad&);
void lower5_release (Pad&) {}
void lower5_long_press (Pad&) {}
void lower6_press (Pad&);
void lower6_release (Pad&) {}
void lower6_long_press (Pad&) {}
void lower7_press (Pad&);
void lower7_release (Pad&) {}
void lower7_long_press (Pad&) {}
void lower8_press (Pad&);
void lower8_release (Pad&) {}
void lower8_long_press (Pad&) {}
void fader_long_press (Pad&);
void fader_release (Pad&);
void pad_press (Pad&, int velocity);
void pad_long_press (Pad&);
void trigger_property_change (PBD::PropertyChange, ARDOUR::Trigger*);
PBD::ScopedConnectionList trigger_connections;
void display_session_layout ();
bool did_session_display;
void transport_state_changed ();
void record_state_changed ();
void map_triggers ();
void map_triggerbox (int col);
void viewport_changed ();
void route_property_change (PBD::PropertyChange const &, int x);
PBD::ScopedConnectionList route_connections;
void setup_faders (FaderBank);
void map_faders ();
void fader_move (int cc, int val);
void automation_control_change (int n, std::weak_ptr<ARDOUR::AutomationControl>);
PBD::ScopedConnectionList control_connections;
FaderBank current_fader_bank;
bool revert_layout_on_fader_release;
Layout pre_fader_layout;
};
} /* namespace */
#endif /* __ardour_lpx_h__ */

View File

@ -0,0 +1,30 @@
#!/usr/bin/env python
from waflib.extras import autowaf as autowaf
import os
def options(opt):
pass
def configure(conf):
autowaf.check_pkg(conf, 'pangomm-1.4', uselib_store='PANGOMM', atleast_version='1.4', mandatory=True)
autowaf.check_pkg(conf, 'cairomm-1.0', uselib_store='CAIROMM', atleast_version='1.8.4', mandatory=True)
def build(bld):
obj = bld(features = 'cxx cxxshlib')
obj.source = '''
lpx.cc
interface.cc
gui.cc
'''
obj.defines = [ 'PACKAGE="ardour_launchpad_x"' ]
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
obj.defines += [ 'VERSIONSTRING="' + bld.env['VERSION'] + '"' ]
obj.includes = ['.', '..', './launchpad_x']
obj.name = 'libardour_launchpad_x'
obj.target = 'ardour_launchpad_x'
obj.uselib = 'CAIROMM PANGOMM USB GTKMM SIGCPP XML OSX'
obj.use = 'libardour libardour_cp libardour_midisurface libgtkmm2ext libpbd libevoral libcanvas libtemporal'
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
def shutdown():
autowaf.shutdown()