/* Copyright (C) 2016 Robin Gareus 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "timecode/bbt_time.h" #include "pbd/stateful_diff_command.h" #include "pbd/openuri.h" #include "evoral/Control.hpp" #include "evoral/ControlList.hpp" #include "evoral/Range.hpp" #include "ardour/amp.h" #include "ardour/audioengine.h" #include "ardour/audioregion.h" #include "ardour/audiosource.h" #include "ardour/audio_backend.h" #include "ardour/audio_buffer.h" #include "ardour/audio_port.h" #include "ardour/audio_track.h" #include "ardour/audioplaylist.h" #include "ardour/buffer_set.h" #include "ardour/chan_mapping.h" #include "ardour/dB.h" #include "ardour/dsp_filter.h" #include "ardour/fluid_synth.h" #include "ardour/interthread_info.h" #include "ardour/lua_api.h" #include "ardour/luabindings.h" #include "ardour/luaproc.h" #include "ardour/meter.h" #include "ardour/midi_model.h" #include "ardour/midi_track.h" #include "ardour/midi_playlist.h" #include "ardour/midi_port.h" #include "ardour/midi_region.h" #include "ardour/midi_source.h" #include "ardour/panner_shell.h" #include "ardour/phase_control.h" #include "ardour/playlist.h" #include "ardour/plugin.h" #include "ardour/plugin_insert.h" #include "ardour/port_manager.h" #include "ardour/runtime_functions.h" #include "ardour/region.h" #include "ardour/region_factory.h" #include "ardour/route_group.h" #include "ardour/session.h" #include "ardour/session_object.h" #include "ardour/sidechain.h" #include "ardour/solo_isolate_control.h" #include "ardour/solo_safe_control.h" #include "ardour/stripable.h" #include "ardour/track.h" #include "ardour/tempo.h" #include "LuaBridge/LuaBridge.h" #ifdef PLATFORM_WINDOWS /* luabridge uses addresses of static functions/variables to identify classes. * * Static symbols on windows (even identical symbols) are not * mapped to the same address when mixing .dll + .exe. * So we need a single point to define those static functions. * (normally they're header-only in libs/lua/LuaBridge/detail/ClassInfo.h) * * Really!! A static function with a static variable in a library header * should never ever be replicated, even if it is a template. * But then again this is windows... what else can go wrong ?! */ template void const* luabridge::ClassInfo::getStaticKey () { static char value; return &value; } template void const* luabridge::ClassInfo::getClassKey () { static char value; return &value; } template void const* luabridge::ClassInfo::getConstKey () { static char value; return &value; } void* luabridge::getIdentityKey () { static char value; return &value; } /* ...and this is the ugly part of it. * * We need to foward declare classes from gtk2_ardour * AND explicily list classes which are used by gtk2_ardour's bindings. * * This is required because some of the GUI classes use objects from libardour * as function parameters or return values and the .exe would re-create * symbols for libardour objects. */ #define CLASSKEYS(CLS) \ template void const* luabridge::ClassInfo< CLS >::getStaticKey(); \ template void const* luabridge::ClassInfo< CLS >::getClassKey(); \ template void const* luabridge::ClassInfo< CLS >::getConstKey(); #define CLASSINFO(CLS) \ class CLS; \ template void const* luabridge::ClassInfo< CLS >::getStaticKey(); \ template void const* luabridge::ClassInfo< CLS >::getClassKey(); \ template void const* luabridge::ClassInfo< CLS >::getConstKey(); CLASSINFO(ArdourMarker); CLASSINFO(MarkerSelection); CLASSINFO(PublicEditor); CLASSINFO(RegionSelection); CLASSINFO(Selection); CLASSINFO(TimeSelection); CLASSINFO(TrackSelection); CLASSINFO(TrackViewList); CLASSKEYS(std::bitset<47ul>); // LuaSignal::LAST_SIGNAL CLASSKEYS(void); CLASSKEYS(float); CLASSKEYS(unsigned char); CLASSKEYS(ArdourMarker*); CLASSKEYS(ARDOUR::AudioEngine); CLASSKEYS(ARDOUR::BufferSet); CLASSKEYS(ARDOUR::ChanCount); CLASSKEYS(ARDOUR::ChanMapping); CLASSKEYS(ARDOUR::DSP::DspShm); CLASSKEYS(ARDOUR::DataType); CLASSKEYS(ARDOUR::FluidSynth); CLASSKEYS(ARDOUR::Location); CLASSKEYS(ARDOUR::LuaAPI::Vamp); CLASSKEYS(ARDOUR::LuaOSC::Address); CLASSKEYS(ARDOUR::LuaProc); CLASSKEYS(ARDOUR::LuaTableRef); CLASSKEYS(ARDOUR::MidiModel::NoteDiffCommand); CLASSKEYS(ARDOUR::MonitorProcessor); CLASSKEYS(ARDOUR::RouteGroup); CLASSKEYS(ARDOUR::ParameterDescriptor); CLASSKEYS(ARDOUR::PeakMeter); CLASSKEYS(ARDOUR::PluginInfo); CLASSKEYS(ARDOUR::Plugin::PresetRecord); CLASSKEYS(ARDOUR::PortEngine); CLASSKEYS(ARDOUR::PortManager); CLASSKEYS(ARDOUR::PresentationInfo); CLASSKEYS(ARDOUR::Session); CLASSKEYS(ARDOUR::SessionConfiguration); CLASSKEYS(ARDOUR::Source); CLASSKEYS(PBD::ID); CLASSKEYS(PBD::Configuration); CLASSKEYS(PBD::PropertyChange); CLASSKEYS(PBD::StatefulDestructible); CLASSKEYS(Evoral::Beats); CLASSKEYS(Evoral::Event); CLASSKEYS(std::vector); CLASSKEYS(std::vector); CLASSKEYS(std::vector); CLASSKEYS(std::vector); CLASSKEYS(std::vector); CLASSKEYS(std::vector >); CLASSKEYS(std::vector >); CLASSKEYS(std::list); CLASSKEYS(std::list); CLASSKEYS(std::list >); CLASSKEYS(std::list >); CLASSKEYS(std::list >); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr >); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr); CLASSKEYS(boost::shared_ptr >); CLASSKEYS(boost::shared_ptr >); CLASSKEYS(boost::weak_ptr); CLASSKEYS(Vamp::RealTime); CLASSKEYS(Vamp::PluginBase); CLASSKEYS(Vamp::PluginBase::ParameterDescriptor); CLASSKEYS(Vamp::Plugin); CLASSKEYS(Vamp::Plugin::OutputDescriptor); CLASSKEYS(Vamp::Plugin::Feature); CLASSKEYS(Vamp::Plugin::OutputList); CLASSKEYS(Vamp::Plugin::FeatureList); CLASSKEYS(Vamp::Plugin::FeatureSet); namespace LuaCairo { class ImageSurface; class PangoLayout; } namespace Cairo { class Context; } CLASSKEYS(Cairo::Context); CLASSKEYS(LuaCairo::ImageSurface); CLASSKEYS(LuaCairo::PangoLayout); #endif // end windows special case /* Some notes on Lua bindings for libardour and friends * * - Prefer factory methods over Contructors whenever possible. * Don't expose the constructor method unless required. * * e.g. Don't allow the script to construct a "Track" Object directly * but do allow to create a "BBT_TIME" object. * * - Do not dereference Shared or Weak Pointers. Pass the pointer to Lua. * - Define Objects as boost:shared_ptr Object whenever possible. * * Storing a boost::shared_ptr in a Lua-variable keeps the reference * until that variable is set to 'nil'. * (if the script were to keep a direct pointer to the object instance, the * behaviour is undefined if the actual object goes away) * * Methods of the actual class are indirectly exposed, * boost::*_ptr get() and ::lock() is implicit when the class is exported * as LuaBridge's "WSPtrClass". */ using namespace ARDOUR; void LuaBindings::stddef (lua_State* L) { // std::list luabridge::getGlobalNamespace (L) .beginNamespace ("C") .beginStdList ("StringList") .endClass () // std::vector .beginStdVector ("StringVector") .endClass () // std::vector .beginStdVector ("FloatVector") .endClass () // register float array (uint8_t*) .registerArray ("ByteArray") // register float array (float*) .registerArray ("FloatArray") // register float array (int32_t*) .registerArray ("IntArray") // std::vector .beginStdVector ("FloatArrayVector") .endClass () // TODO std::set .endNamespace (); } void LuaBindings::common (lua_State* L) { luabridge::getGlobalNamespace (L) .beginNamespace ("PBD") .addFunction ("open_uri", (bool (*) (const std::string&))&PBD::open_uri) .addFunction ("open_uri", &PBD::open_folder) .beginClass ("ID") .addConstructor () .addFunction ("to_s", &PBD::ID::to_s) // TODO special case LUA __tostring ? .endClass () .beginStdVector ("IdVector").endClass () .beginClass ("XMLNode") .addFunction ("name", &XMLNode::name) .endClass () .beginClass ("Stateful") .addFunction ("id", &PBD::Stateful::id) .addFunction ("properties", &PBD::Stateful::properties) .addFunction ("clear_changes", &PBD::Stateful::clear_changes) .endClass () .beginWSPtrClass ("StatefulPtr") .addFunction ("id", &PBD::Stateful::id) .addFunction ("properties", &PBD::Stateful::properties) .addFunction ("clear_changes", &PBD::Stateful::clear_changes) .endClass () .deriveClass ("StatefulDestructible") .endClass () .deriveClass ("Configuration") .endClass() .deriveWSPtrClass ("StatefulDestructiblePtr") .endClass () .deriveClass ("Command") .addFunction ("set_name", &Command::set_name) .addFunction ("name", &Command::name) .endClass () /* UndoTransaction::add_command() subscribes to DropReferences() * and deletes the object. * * This object cannot be constructed by lua because lua would manage lifetime * and delete the object leading to a double free. * * use Session::add_stateful_diff_command() * and Session::abort_reversible_command() */ .deriveClass ("StatefulDiffCommand") .addFunction ("undo", &PBD::StatefulDiffCommand::undo) .addFunction ("empty", &PBD::StatefulDiffCommand::empty) .endClass () .deriveWSPtrClass ("Controllable") .addFunction ("name", &PBD::Controllable::name) .addFunction ("get_value", &PBD::Controllable::get_value) .endClass () .beginClass > ("RingBuffer8") .addConstructor () .addFunction ("reset", &PBD::RingBufferNPT::reset) .addFunction ("read", &PBD::RingBufferNPT::read) .addFunction ("write", &PBD::RingBufferNPT::write) .addFunction ("write_one", &PBD::RingBufferNPT::write_one) .addFunction ("write_space", &PBD::RingBufferNPT::write_space) .addFunction ("read_space", &PBD::RingBufferNPT::read_space) .addFunction ("increment_read_ptr", &PBD::RingBufferNPT::increment_read_ptr) .addFunction ("increment_write_ptr", &PBD::RingBufferNPT::increment_write_ptr) .endClass () .beginClass > ("RingBufferF") .addConstructor () .addFunction ("reset", &PBD::RingBufferNPT::reset) .addFunction ("read", &PBD::RingBufferNPT::read) .addFunction ("write", &PBD::RingBufferNPT::write) .addFunction ("write_one", &PBD::RingBufferNPT::write_one) .addFunction ("write_space", &PBD::RingBufferNPT::write_space) .addFunction ("read_space", &PBD::RingBufferNPT::read_space) .addFunction ("increment_read_ptr", &PBD::RingBufferNPT::increment_read_ptr) .addFunction ("increment_write_ptr", &PBD::RingBufferNPT::increment_write_ptr) .endClass () .beginClass > ("RingBufferI") .addConstructor () .addFunction ("reset", &PBD::RingBufferNPT::reset) .addFunction ("read", &PBD::RingBufferNPT::read) .addFunction ("write", &PBD::RingBufferNPT::write) .addFunction ("write_one", &PBD::RingBufferNPT::write_one) .addFunction ("write_space", &PBD::RingBufferNPT::write_space) .addFunction ("read_space", &PBD::RingBufferNPT::read_space) .addFunction ("increment_read_ptr", &PBD::RingBufferNPT::increment_read_ptr) .addFunction ("increment_write_ptr", &PBD::RingBufferNPT::increment_write_ptr) .endClass () /* PBD enums */ .beginNamespace ("GroupControlDisposition") .addConst ("InverseGroup", PBD::Controllable::GroupControlDisposition(PBD::Controllable::InverseGroup)) .addConst ("NoGroup", PBD::Controllable::GroupControlDisposition(PBD::Controllable::NoGroup)) .addConst ("UseGroup", PBD::Controllable::GroupControlDisposition(PBD::Controllable::UseGroup)) .endNamespace () .endNamespace (); // PBD luabridge::getGlobalNamespace (L) .beginNamespace ("Timecode") .beginClass ("BBT_TIME") .addConstructor () .addData ("bars", &Timecode::BBT_Time::bars) .addData ("beats", &Timecode::BBT_Time::beats) .addData ("ticks", &Timecode::BBT_Time::ticks) //.addStaticData ("ticks_per_beat", &Timecode::BBT_Time::ticks_per_beat, false) .endClass () /* libtimecode enums */ .beginNamespace ("TimecodeFormat") .addConst ("TC23976", Timecode::TimecodeFormat(Timecode::timecode_23976)) .addConst ("TC24", Timecode::TimecodeFormat(Timecode::timecode_24)) .addConst ("TC24976", Timecode::TimecodeFormat(Timecode::timecode_24976)) .addConst ("TC25", Timecode::TimecodeFormat(Timecode::timecode_25)) .addConst ("TC2997", Timecode::TimecodeFormat(Timecode::timecode_2997)) .addConst ("TC2997DF", Timecode::TimecodeFormat(Timecode::timecode_2997drop)) .addConst ("TC2997000", Timecode::TimecodeFormat(Timecode::timecode_2997000)) .addConst ("TC2997000DF", Timecode::TimecodeFormat(Timecode::timecode_2997000drop)) .addConst ("TC30", Timecode::TimecodeFormat(Timecode::timecode_30)) .addConst ("TC5994", Timecode::TimecodeFormat(Timecode::timecode_5994)) .addConst ("TC60", Timecode::TimecodeFormat(Timecode::timecode_60)) .endNamespace () .endNamespace (); luabridge::getGlobalNamespace (L) .beginNamespace ("Evoral") .beginClass > ("Event") .addFunction ("clear", &Evoral::Event::clear) .addFunction ("size", &Evoral::Event::size) .addFunction ("set_buffer", &Evoral::Event::set_buffer) .addFunction ("buffer", (uint8_t*(Evoral::Event::*)())&Evoral::Event::buffer) .addFunction ("time", (framepos_t (Evoral::Event::*)())&Evoral::Event::time) .endClass () .beginClass ("Beats") .addConstructor () .addFunction ("to_double", &Evoral::Beats::to_double) .endClass () .beginClass ("Parameter") .addConstructor () .addFunction ("type", &Evoral::Parameter::type) .addFunction ("channel", &Evoral::Parameter::channel) .addFunction ("id", &Evoral::Parameter::id) .endClass () .beginWSPtrClass ("ControlList") .addFunction ("add", &Evoral::ControlList::add) .addFunction ("thin", &Evoral::ControlList::thin) .addFunction ("eval", &Evoral::ControlList::eval) .addRefFunction ("rt_safe_eval", &Evoral::ControlList::rt_safe_eval) .addFunction ("interpolation", &Evoral::ControlList::interpolation) .addFunction ("set_interpolation", &Evoral::ControlList::set_interpolation) .addFunction ("truncate_end", &Evoral::ControlList::truncate_end) .addFunction ("truncate_start", &Evoral::ControlList::truncate_start) .addFunction ("clear", (void (Evoral::ControlList::*)(double, double))&Evoral::ControlList::clear) .addFunction ("in_write_pass", &Evoral::ControlList::in_write_pass) .endClass () .beginWSPtrClass ("ControlSet") .endClass () .beginWSPtrClass ("Control") .addFunction ("list", (boost::shared_ptr(Evoral::Control::*)())&Evoral::Control::list) .endClass () .beginClass ("ParameterDescriptor") .addVoidConstructor () .addData ("lower", &Evoral::ParameterDescriptor::lower) .addData ("upper", &Evoral::ParameterDescriptor::upper) .addData ("normal", &Evoral::ParameterDescriptor::normal) .addData ("toggled", &Evoral::ParameterDescriptor::toggled) .endClass () .beginClass > ("Range") .addConstructor () .addData ("from", &Evoral::Range::from) .addData ("to", &Evoral::Range::to) .endClass () .deriveWSPtrClass , Evoral::ControlSet> ("Sequence") .endClass () .beginWSPtrClass > ("NotePtr") .addFunction ("time", &Evoral::Note::time) .addFunction ("note", &Evoral::Note::note) .addFunction ("velocity", &Evoral::Note::velocity) .addFunction ("off_velocity", &Evoral::Note::off_velocity) .addFunction ("length", &Evoral::Note::length) .addFunction ("channel", &Evoral::Note::channel) .endClass () /* libevoral enums */ .beginNamespace ("InterpolationStyle") .addConst ("Discrete", Evoral::ControlList::InterpolationStyle(Evoral::ControlList::Discrete)) .addConst ("Linear", Evoral::ControlList::InterpolationStyle(Evoral::ControlList::Linear)) .addConst ("Curved", Evoral::ControlList::InterpolationStyle(Evoral::ControlList::Curved)) .endNamespace () .endNamespace (); // Evoral luabridge::getGlobalNamespace (L) .beginNamespace ("Vamp") .beginClass ("RealTime") .addConstructor () .addData ("sec", &Vamp::RealTime::sec, false) .addData ("nsec", &Vamp::RealTime::nsec, false) .addFunction ("usec", &Vamp::RealTime::usec) .addFunction ("msec", &Vamp::RealTime::msec) .addFunction ("toString", &Vamp::RealTime::toString) .addStaticFunction ("realTime2Frame", &Vamp::RealTime::realTime2Frame) .addStaticFunction ("frame2RealTime", &Vamp::RealTime::frame2RealTime) .endClass () .beginClass ("PluginBase") .addFunction ("getIdentifier", &Vamp::PluginBase::getIdentifier) .addFunction ("getName", &Vamp::PluginBase::getName) .addFunction ("getDescription", &Vamp::PluginBase::getDescription) .addFunction ("getMaker", &Vamp::PluginBase::getMaker) .addFunction ("getCopyright", &Vamp::PluginBase::getCopyright) .addFunction ("getPluginVersion", &Vamp::PluginBase::getPluginVersion) .addFunction ("getParameterDescriptors", &Vamp::PluginBase::getParameterDescriptors) .addFunction ("getParameter", &Vamp::PluginBase::getParameter) .addFunction ("setParameter", &Vamp::PluginBase::setParameter) .addFunction ("getPrograms", &Vamp::PluginBase::getPrograms) .addFunction ("getCurrentProgram", &Vamp::PluginBase::getCurrentProgram) .addFunction ("selectProgram", &Vamp::PluginBase::selectProgram) .addFunction ("getType", &Vamp::PluginBase::getType) .endClass () .beginNamespace ("PluginBase") .beginClass ("ParameterDescriptor") .addData ("identifier", &Vamp::PluginBase::ParameterDescriptor::identifier) .addData ("name", &Vamp::PluginBase::ParameterDescriptor::name) .addData ("description", &Vamp::PluginBase::ParameterDescriptor::description) .addData ("unit", &Vamp::PluginBase::ParameterDescriptor::unit) .addData ("minValue", &Vamp::PluginBase::ParameterDescriptor::minValue) .addData ("maxValue", &Vamp::PluginBase::ParameterDescriptor::maxValue) .addData ("defaultValue", &Vamp::PluginBase::ParameterDescriptor::defaultValue) .addData ("isQuantized", &Vamp::PluginBase::ParameterDescriptor::isQuantized) .addData ("quantizeStep", &Vamp::PluginBase::ParameterDescriptor::quantizeStep) .addData ("valueNames", &Vamp::PluginBase::ParameterDescriptor::valueNames) .endClass () .beginStdVector ("ParameterList") .endClass () .endNamespace () // Vamp::PluginBase .deriveClass ("Plugin") //.addFunction ("process", &Vamp::Plugin::process) // unusable due to float*const* -> LuaAPI::Vamp::process .addFunction ("initialise", &Vamp::Plugin::initialise) .addFunction ("reset", &Vamp::Plugin::reset) .addFunction ("getInputDomain", &Vamp::Plugin::getInputDomain) .addFunction ("getPreferredBlockSize", &Vamp::Plugin::getPreferredBlockSize) .addFunction ("getPreferredStepSize", &Vamp::Plugin::getPreferredStepSize) .addFunction ("getMinChannelCount", &Vamp::Plugin::getMinChannelCount) .addFunction ("getMaxChannelCount", &Vamp::Plugin::getMaxChannelCount) .addFunction ("getOutputDescriptors", &Vamp::Plugin::getOutputDescriptors) .addFunction ("getRemainingFeatures", &Vamp::Plugin::getRemainingFeatures) .addFunction ("getType", &Vamp::Plugin::getType) .endClass () .beginNamespace ("Plugin") .beginClass ("OutputDescriptor") .addData ("identifier", &Vamp::Plugin::OutputDescriptor::identifier) .addData ("description", &Vamp::Plugin::OutputDescriptor::description) .addData ("unit", &Vamp::Plugin::OutputDescriptor::unit) .addData ("hasFixedBinCount", &Vamp::Plugin::OutputDescriptor::hasFixedBinCount) .addData ("binCount", &Vamp::Plugin::OutputDescriptor::binCount) .addData ("binNames", &Vamp::Plugin::OutputDescriptor::binNames) .addData ("hasKnownExtents", &Vamp::Plugin::OutputDescriptor::hasKnownExtents) .addData ("minValue", &Vamp::Plugin::OutputDescriptor::minValue) .addData ("maxValue", &Vamp::Plugin::OutputDescriptor::maxValue) .addData ("isQuantized", &Vamp::Plugin::OutputDescriptor::isQuantized) .addData ("quantizeStep", &Vamp::Plugin::OutputDescriptor::quantizeStep) .addData ("sampleType", &Vamp::Plugin::OutputDescriptor::sampleType) .addData ("sampleRate", &Vamp::Plugin::OutputDescriptor::sampleRate) .addData ("hasDuration", &Vamp::Plugin::OutputDescriptor::hasDuration) .endClass () /* Vamp::Plugin enums */ .beginNamespace ("InputDomain") .addConst ("TimeDomain", Vamp::Plugin::InputDomain(Vamp::Plugin::TimeDomain)) .addConst ("FrequencyDomain", Vamp::Plugin::InputDomain(Vamp::Plugin::FrequencyDomain)) .endNamespace () /* Vamp::Plugin::OutputDescriptor enum */ .beginNamespace ("OutputDescriptor") .beginNamespace ("SampleType") .addConst ("OneSamplePerStep", Vamp::Plugin::OutputDescriptor::SampleType(Vamp::Plugin::OutputDescriptor::OneSamplePerStep)) .addConst ("FixedSampleRate", Vamp::Plugin::OutputDescriptor::SampleType(Vamp::Plugin::OutputDescriptor::FixedSampleRate)) .addConst ("VariableSampleRate", Vamp::Plugin::OutputDescriptor::SampleType(Vamp::Plugin::OutputDescriptor::VariableSampleRate)) .endNamespace () .endNamespace () /* Vamp::Plugin::OutputDescriptor */ .beginClass ("Feature") .addData ("hasTimestamp", &Vamp::Plugin::Feature::hasTimestamp, false) .addData ("timestamp", &Vamp::Plugin::Feature::timestamp, false) .addData ("hasDuration", &Vamp::Plugin::Feature::hasDuration, false) .addData ("duration", &Vamp::Plugin::Feature::duration, false) .addData ("values", &Vamp::Plugin::Feature::values, false) .addData ("label", &Vamp::Plugin::Feature::label, false) .endClass () .beginStdVector ("OutputList") .endClass () .beginStdVector ("FeatureList") .endClass () .beginStdMap ("FeatureSet") .endClass () .endNamespace () // Vamp::Plugin .endNamespace ();// Vamp luabridge::getGlobalNamespace (L) .beginNamespace ("ARDOUR") .beginClass ("InterThreadInfo") .addVoidConstructor () .addData ("done", const_cast(&InterThreadInfo::done)) #if 0 // currently unused, lua is single-threaded, no custom UIs. .addData ("cancel", (bool InterThreadInfo::*)&InterThreadInfo::cancel) #endif .addData ("progress", const_cast(&InterThreadInfo::progress)) .endClass () .beginClass ("AudioRange") .addConstructor () .addFunction ("length", &AudioRange::length) .addFunction ("equal", &AudioRange::equal) .addData ("start", &AudioRange::start) .addData ("_end", &AudioRange::end) // XXX "end" is a lua reserved word .addData ("id", &AudioRange::id) .endClass () .beginWSPtrClass ("PluginInfo") .addVoidConstructor () .addData ("name", &PluginInfo::name, false) .addData ("category", &PluginInfo::category, false) .addData ("creator", &PluginInfo::creator, false) .addData ("path", &PluginInfo::path, false) .addData ("n_inputs", &PluginInfo::n_inputs, false) .addData ("n_outputs", &PluginInfo::n_outputs, false) .addData ("type", &PluginInfo::type, false) .addData ("unique_id", &PluginInfo::unique_id, false) .addFunction ("is_instrument", &PluginInfo::is_instrument) .addFunction ("get_presets", &PluginInfo::get_presets) .endClass () .beginNamespace ("Route") .beginClass ("ProcessorStreams") .addVoidConstructor () .endClass () .endNamespace () .beginClass ("ChanMapping") .addVoidConstructor () .addFunction ("get", static_cast(&ChanMapping::get)) .addFunction ("set", &ChanMapping::set) .addFunction ("count", &ChanMapping::count) .addFunction ("n_total", &ChanMapping::n_total) .addFunction ("is_monotonic", &ChanMapping::is_monotonic) .addConst ("Invalid", 4294967295U) // UINT32_MAX .endClass () .beginNamespace ("Properties") // templated class definitions .beginClass > ("BoolProperty").endClass () .beginClass > ("FloatProperty").endClass () .beginClass > ("FrameposProperty").endClass () // actual references (TODO: also expose GQuark for std::set) // ardour/region.h .addConst ("Start", &ARDOUR::Properties::start) .addConst ("Length", &ARDOUR::Properties::length) .addConst ("Position", &ARDOUR::Properties::position) .endNamespace () .beginClass ("PropertyChange") // TODO add special handling (std::set), PropertyID is a GQuark. // -> direct map to lua table beginStdSet()A // // expand templated PropertyDescriptor .addFunction ("containsBool", &PBD::PropertyChange::contains) .addFunction ("containsFloat", &PBD::PropertyChange::contains) .addFunction ("containsFramePos", &PBD::PropertyChange::contains) .endClass () .beginClass ("PropertyList") // is-a std::map .endClass () .deriveClass ("OwnedPropertyList") .endClass () .beginWSPtrClass ("AutomationList") .addCast ("to_stateful") .addCast ("to_statefuldestructible") .addCast ("list") .addFunction ("get_state", &AutomationList::get_state) .addFunction ("memento_command", &AutomationList::memento_command) .addFunction ("touching", &AutomationList::touching) .addFunction ("writing", &AutomationList::writing) .addFunction ("touch_enabled", &AutomationList::touch_enabled) .endClass () .deriveClass ("Location") .addFunction ("name", &Location::name) .addFunction ("locked", &Location::locked) .addFunction ("lock", &Location::lock) .addFunction ("unlock", &Location::unlock) .addFunction ("start", &Location::start) .addFunction ("_end", &Location::end) // XXX "end" is a lua reserved word .addFunction ("length", &Location::length) .addFunction ("set_start", &Location::set_start) .addFunction ("set_end", &Location::set_end) .addFunction ("set_length", &Location::set) .addFunction ("move_to", &Location::move_to) .addFunction ("matches", &Location::matches) .addFunction ("flags", &Location::flags) .addFunction ("is_auto_punch", &Location::is_auto_punch) .addFunction ("is_auto_loop", &Location::is_auto_loop) .addFunction ("is_mark", &Location::is_mark) .addFunction ("is_hidden", &Location::is_hidden) .addFunction ("is_cd_marker", &Location::is_cd_marker) .addFunction ("is_session_range", &Location::is_session_range) .addFunction ("is_range_marker", &Location::is_range_marker) .endClass () .deriveClass ("Locations") .addFunction ("list", static_cast(&Locations::list)) .addFunction ("auto_loop_location", &Locations::auto_loop_location) .addFunction ("auto_punch_location", &Locations::auto_punch_location) .addFunction ("session_range_location", &Locations::session_range_location) .addFunction ("first_mark_after", &Locations::first_mark_after) .addFunction ("first_mark_before", &Locations::first_mark_before) .addFunction ("first_mark_at", &Locations::mark_at) .addFunction ("remove", &Locations::remove) .addRefFunction ("marks_either_side", &Locations::marks_either_side) .addRefFunction ("find_all_between", &Locations::find_all_between) .endClass () .beginWSPtrClass ("SessionObject") /* SessionObject is-a PBD::StatefulDestructible, * but multiple inheritance is not covered by luabridge, * we need explicit casts */ .addCast ("to_stateful") .addCast ("to_statefuldestructible") .addFunction ("name", &SessionObject::name) .endClass () .beginWSPtrClass ("Port") .addCast ("to_midiport") .addCast ("to_audioport") .addFunction ("name", &Port::name) .addFunction ("pretty_name", &Port::pretty_name) .addFunction ("receives_input", &Port::receives_input) .addFunction ("sends_output", &Port::sends_output) .addFunction ("connected", &Port::connected) .addFunction ("disconnect_all", &Port::disconnect_all) .addFunction ("connected_to", (bool (Port::*)(std::string const &)const)&Port::connected_to) .addFunction ("connect", (int (Port::*)(std::string const &))&Port::connect) .addFunction ("disconnect", (int (Port::*)(std::string const &))&Port::disconnect) //.addStaticFunction ("port_offset", &Port::port_offset) // static .endClass () .deriveWSPtrClass ("AudioPort") .endClass () .deriveWSPtrClass ("MidiPort") .addFunction ("input_active", &MidiPort::input_active) .addFunction ("set_input_active", &MidiPort::set_input_active) .addFunction ("get_midi_buffer", &MidiPort::get_midi_buffer) // DSP only .endClass () .beginWSPtrClass ("PortSet") .addFunction ("num_ports", (size_t (PortSet::*)(DataType)const)&PortSet::num_ports) .addFunction ("add", &PortSet::add) .addFunction ("remove", &PortSet::remove) .addFunction ("port", (boost::shared_ptr (PortSet::*)(DataType, size_t)const)&PortSet::port) .addFunction ("contains", &PortSet::contains) .addFunction ("clear", &PortSet::clear) .addFunction ("empty", &PortSet::empty) .endClass () .deriveWSPtrClass ("IO") .addFunction ("active", &IO::active) .addFunction ("add_port", &IO::add_port) .addFunction ("remove_port", &IO::remove_port) .addFunction ("connect", &IO::connect) .addFunction ("disconnect", (int (IO::*)(boost::shared_ptr, std::string, void *))&IO::disconnect) .addFunction ("disconnect_all", (int (IO::*)(void *))&IO::disconnect) .addFunction ("physically_connected", &IO::physically_connected) .addFunction ("has_port", &IO::has_port) .addFunction ("nth", &IO::nth) .addFunction ("audio", &IO::audio) .addFunction ("midi", &IO::midi) .addFunction ("port_by_name", &IO::nth) .addFunction ("n_ports", &IO::n_ports) .endClass () .deriveWSPtrClass ("PannerShell") .addFunction ("bypassed", &PannerShell::bypassed) .addFunction ("set_bypassed", &PannerShell::set_bypassed) .endClass () .beginClass ("RouteGroup") .addFunction ("is_active", &RouteGroup::is_active) .addFunction ("is_relative", &RouteGroup::is_relative) .addFunction ("is_hidden", &RouteGroup::is_hidden) .addFunction ("is_gain", &RouteGroup::is_gain) .addFunction ("is_mute", &RouteGroup::is_mute) .addFunction ("is_solo", &RouteGroup::is_solo) .addFunction ("is_recenable", &RouteGroup::is_recenable) .addFunction ("is_select", &RouteGroup::is_select) .addFunction ("is_route_active", &RouteGroup::is_route_active) .addFunction ("is_color", &RouteGroup::is_color) .addFunction ("is_monitoring", &RouteGroup::is_monitoring) .addFunction ("group_master_number", &RouteGroup::group_master_number) .addFunction ("empty", &RouteGroup::empty) .addFunction ("size", &RouteGroup::size) .addFunction ("set_active", &RouteGroup::set_active) .addFunction ("set_relative", &RouteGroup::set_relative) .addFunction ("set_hidden", &RouteGroup::set_hidden) .addFunction ("set_gain", &RouteGroup::set_gain) .addFunction ("set_mute", &RouteGroup::set_mute) .addFunction ("set_solo", &RouteGroup::set_solo) .addFunction ("set_recenable", &RouteGroup::set_recenable) .addFunction ("set_select", &RouteGroup::set_select) .addFunction ("set_route_active", &RouteGroup::set_route_active) .addFunction ("set_color", &RouteGroup::set_color) .addFunction ("set_monitoring", &RouteGroup::set_monitoring) .addFunction ("add", &RouteGroup::add) .addFunction ("remove", &RouteGroup::remove) .addFunction ("clear", &RouteGroup::clear) .addFunction ("has_subgroup", &RouteGroup::has_subgroup) .addFunction ("make_subgroup", &RouteGroup::make_subgroup) .addFunction ("destroy_subgroup", &RouteGroup::destroy_subgroup) .addFunction ("route_list", &RouteGroup::route_list) .endClass () .deriveClass ("PresentationInfo") .addFunction ("color", &PresentationInfo::color) .addFunction ("set_color", &PresentationInfo::set_color) .addFunction ("order", &PresentationInfo::order) .addConst ("max_order", ARDOUR::PresentationInfo::max_order) .endClass () .deriveWSPtrClass ("Stripable") .addCast ("to_route") .addFunction ("is_auditioner", &Stripable::is_auditioner) .addFunction ("is_master", &Stripable::is_master) .addFunction ("is_monitor", &Stripable::is_monitor) .addFunction ("is_hidden", &Stripable::is_hidden) .addFunction ("is_selected", &Stripable::is_selected) .addFunction ("gain_control", &Stripable::gain_control) .addFunction ("solo_control", &Stripable::solo_control) .addFunction ("solo_isolate_control", &Stripable::solo_isolate_control) .addFunction ("solo_safe_control", &Stripable::solo_safe_control) .addFunction ("mute_control", &Stripable::mute_control) .addFunction ("phase_control", &Stripable::phase_control) .addFunction ("trim_control", &Stripable::trim_control) .addFunction ("rec_enable_control", &Stripable::rec_enable_control) .addFunction ("rec_safe_control", &Stripable::rec_safe_control) .addFunction ("pan_azimuth_control", &Stripable::pan_azimuth_control) .addFunction ("pan_elevation_control", &Stripable::pan_elevation_control) .addFunction ("pan_width_control", &Stripable::pan_width_control) .addFunction ("pan_frontback_control", &Stripable::pan_frontback_control) .addFunction ("pan_lfe_control", &Stripable::pan_lfe_control) .addFunction ("send_level_control", &Stripable::send_level_controllable) .addFunction ("send_enable_control", &Stripable::send_level_controllable) .addFunction ("send_name", &Stripable::send_name) .addFunction ("monitor_control", &Stripable::monitor_control) .addFunction ("master_send_enable_control ", &Stripable::master_send_enable_controllable ) .addFunction ("comp_enable_control ", &Stripable::comp_enable_controllable ) .addFunction ("comp_threshold_control ", &Stripable::comp_threshold_controllable ) .addFunction ("comp_speed_control ", &Stripable::comp_speed_controllable ) .addFunction ("comp_mode_control ", &Stripable::comp_mode_controllable ) .addFunction ("comp_makeup_control ", &Stripable::comp_makeup_controllable ) .addFunction ("comp_redux_control ", &Stripable::comp_redux_controllable ) .addFunction ("comp_mode_name", &Stripable::comp_mode_name) .addFunction ("comp_speed_name", &Stripable::comp_speed_name) .addFunction ("eq_band_cnt ", &Stripable::eq_band_cnt) .addFunction ("eq_band_name", &Stripable::eq_band_name) .addFunction ("eq_gain_control", &Stripable::eq_gain_controllable) .addFunction ("eq_freq_control ", &Stripable::eq_freq_controllable ) .addFunction ("eq_q_control ", &Stripable::eq_q_controllable ) .addFunction ("eq_shape_control ", &Stripable::eq_shape_controllable ) .addFunction ("eq_enable_control ", &Stripable::eq_enable_controllable ) .addFunction ("eq_hpf_control ", &Stripable::eq_hpf_controllable ) .addFunction ("set_presentation_order", &Stripable::set_presentation_order) .addFunction ("presentation_info_ptr", &Stripable::presentation_info_ptr) .endClass () .deriveWSPtrClass ("Route") .addCast ("to_track") .addFunction ("set_name", &Route::set_name) .addFunction ("comment", &Route::comment) .addFunction ("active", &Route::active) .addFunction ("set_active", &Route::set_active) .addFunction ("nth_plugin", &Route::nth_plugin) .addFunction ("nth_processor", &Route::nth_processor) .addFunction ("nth_send", &Route::nth_send) .addFunction ("add_processor_by_index", &Route::add_processor_by_index) .addFunction ("remove_processor", &Route::remove_processor) .addFunction ("replace_processor", &Route::replace_processor) .addFunction ("the_instrument", &Route::the_instrument) .addFunction ("n_inputs", &Route::n_inputs) .addFunction ("n_outputs", &Route::n_outputs) .addFunction ("input", &Route::input) .addFunction ("output", &Route::output) .addFunction ("panner_shell", &Route::panner_shell) .addFunction ("set_comment", &Route::set_comment) .addFunction ("strict_io", &Route::strict_io) .addFunction ("set_strict_io", &Route::set_strict_io) .addFunction ("reset_plugin_insert", &Route::reset_plugin_insert) .addFunction ("customize_plugin_insert", &Route::customize_plugin_insert) .addFunction ("add_sidechain", &Route::add_sidechain) .addFunction ("remove_sidechain", &Route::remove_sidechain) .addFunction ("main_outs", &Route::main_outs) .addFunction ("muted", &Route::muted) .addFunction ("soloed", &Route::soloed) .addFunction ("amp", &Route::amp) .addFunction ("trim", &Route::trim) .addFunction ("peak_meter", (boost::shared_ptr (Route::*)())&Route::peak_meter) .addFunction ("set_meter_point", &Route::set_meter_point) .endClass () .deriveWSPtrClass ("Playlist") .addCast ("to_audioplaylist") .addCast ("to_midiplaylist") .addFunction ("region_by_id", &Playlist::region_by_id) .addFunction ("data_type", &Playlist::data_type) .addFunction ("n_regions", &Playlist::n_regions) //.addFunction ("get_extent", &Playlist::get_extent) // pair .addFunction ("region_list", &Playlist::region_list) .addFunction ("add_region", &Playlist::add_region) .addFunction ("remove_region", &Playlist::remove_region) .addFunction ("regions_at", &Playlist::regions_at) .addFunction ("top_region_at", &Playlist::top_region_at) .addFunction ("top_unmuted_region_at", &Playlist::top_unmuted_region_at) .addFunction ("find_next_region", &Playlist::find_next_region) .addFunction ("find_next_region_boundary", &Playlist::find_next_region_boundary) .addFunction ("count_regions_at", &Playlist::count_regions_at) .addFunction ("regions_touched", &Playlist::regions_touched) .addFunction ("regions_with_start_within", &Playlist::regions_with_start_within) .addFunction ("regions_with_end_within", &Playlist::regions_with_end_within) .addFunction ("raise_region", &Playlist::raise_region) .addFunction ("lower_region", &Playlist::lower_region) .addFunction ("raise_region_to_top", &Playlist::raise_region_to_top) .addFunction ("lower_region_to_bottom", &Playlist::lower_region_to_bottom) .addFunction ("duplicate", (void (Playlist::*)(boost::shared_ptr, framepos_t, framecnt_t, float))&Playlist::duplicate) .addFunction ("duplicate_until", &Playlist::duplicate_until) .addFunction ("duplicate_range", &Playlist::duplicate_range) .addFunction ("combine", &Playlist::combine) .addFunction ("uncombine", &Playlist::uncombine) .addFunction ("split_region", &Playlist::split_region) .addFunction ("split", (void (Playlist::*)(framepos_t))&Playlist::split) .addFunction ("cut", (boost::shared_ptr (Playlist::*)(std::list&, bool))&Playlist::cut) #if 0 .addFunction ("copy", &Playlist::copy) .addFunction ("paste", &Playlist::paste) #endif .endClass () .deriveWSPtrClass ("AudioPlaylist") .addFunction ("read", &AudioPlaylist::read) .endClass () .deriveWSPtrClass ("MidiPlaylist") .addFunction ("set_note_mode", &MidiPlaylist::set_note_mode) .endClass () .deriveWSPtrClass ("Track") .addCast ("to_audio_track") .addCast ("to_midi_track") .addFunction ("set_name", &Track::set_name) .addFunction ("can_record", &Track::can_record) .addFunction ("bounceable", &Track::bounceable) .addFunction ("bounce", &Track::bounce) .addFunction ("bounce_range", &Track::bounce_range) .addFunction ("playlist", &Track::playlist) .endClass () .deriveWSPtrClass ("AudioTrack") .endClass () .deriveWSPtrClass ("MidiTrack") .endClass () .beginWSPtrClass ("Readable") .addFunction ("read", &Readable::read) .addFunction ("readable_length", &Readable::readable_length) .addFunction ("n_channels", &Readable::n_channels) .endClass () .deriveWSPtrClass ("Region") .addCast ("to_readable") .addCast ("to_midiregion") .addCast ("to_audioregion") /* properties */ .addFunction ("position", &Region::position) .addFunction ("start", &Region::start) .addFunction ("length", &Region::length) .addFunction ("layer", &Region::layer) .addFunction ("data_type", &Region::data_type) .addFunction ("stretch", &Region::stretch) .addFunction ("shift", &Region::shift) .addRefFunction ("sync_offset", &Region::sync_offset) .addFunction ("sync_position", &Region::sync_position) .addFunction ("hidden", &Region::hidden) .addFunction ("muted", &Region::muted) .addFunction ("opaque", &Region::opaque) .addFunction ("locked", &Region::locked) .addFunction ("position_locked", &Region::position_locked) .addFunction ("video_locked", &Region::video_locked) .addFunction ("automatic", &Region::automatic) .addFunction ("whole_file", &Region::whole_file) .addFunction ("captured", &Region::captured) .addFunction ("can_move", &Region::can_move) .addFunction ("sync_marked", &Region::sync_marked) .addFunction ("external", &Region::external) .addFunction ("import", &Region::import) .addFunction ("covers", &Region::covers) .addFunction ("at_natural_position", &Region::at_natural_position) .addFunction ("is_compound", &Region::is_compound) /* editing operations */ .addFunction ("set_length", &Region::set_length) .addFunction ("set_start", &Region::set_start) .addFunction ("set_position", &Region::set_position) .addFunction ("set_initial_position", &Region::set_initial_position) .addFunction ("nudge_position", &Region::nudge_position) .addFunction ("move_to_natural_position", &Region::move_to_natural_position) .addFunction ("move_start", &Region::move_start) .addFunction ("master_sources", &Region::master_sources) .addFunction ("master_source_names", &Region::master_source_names) .addFunction ("n_channels", &Region::n_channels) .addFunction ("trim_front", &Region::trim_front) .addFunction ("trim_end", &Region::trim_end) .addFunction ("trim_to", &Region::trim_to) .addFunction ("cut_front", &Region::cut_front) .addFunction ("cut_end", &Region::cut_end) .addFunction ("raise", &Region::raise) .addFunction ("lower", &Region::lower) .addFunction ("raise_to_top", &Region::raise_to_top) .addFunction ("lower_to_bottom", &Region::lower_to_bottom) .addFunction ("set_sync_position", &Region::set_sync_position) .addFunction ("clear_sync_position", &Region::clear_sync_position) .addFunction ("quarter_note", &Region::quarter_note) .addFunction ("set_hidden", &Region::set_hidden) .addFunction ("set_muted", &Region::set_muted) .addFunction ("set_opaque", &Region::set_opaque) .addFunction ("set_locked", &Region::set_locked) .addFunction ("set_video_locked", &Region::set_video_locked) .addFunction ("set_position_locked", &Region::set_position_locked) .addFunction ("source", &Region::source) .endClass () .deriveWSPtrClass ("MidiRegion") .addFunction ("do_export", &MidiRegion::do_export) .addFunction ("midi_source", &MidiRegion::midi_source) .addFunction ("model", (boost::shared_ptr (MidiRegion::*)())&MidiRegion::midi_source) .addFunction ("start_beats", &MidiRegion::start_beats) .addFunction ("length_beats", &MidiRegion::length_beats) .endClass () .deriveWSPtrClass ("AudioRegion") .addFunction ("audio_source", &AudioRegion::audio_source) .addFunction ("set_scale_amplitude", &AudioRegion::set_scale_amplitude) .addFunction ("scale_amplitude", &AudioRegion::scale_amplitude) .endClass () .deriveWSPtrClass ("Source") .addCast ("to_audiosource") .addCast ("to_midisource") .addFunction ("timestamp", &Source::timestamp) .addFunction ("empty", &Source::empty) .addFunction ("length", &Source::length) .addFunction ("natural_position", &Source::natural_position) .addFunction ("destructive", &Source::destructive) .addFunction ("writable", &Source::writable) .addFunction ("has_been_analysed", &Source::has_been_analysed) .addFunction ("can_be_analysed", &Source::can_be_analysed) .addFunction ("timeline_position", &Source::timeline_position) .addFunction ("use_count", &Source::use_count) .addFunction ("used", &Source::used) .addFunction ("ancestor_name", &Source::ancestor_name) .endClass () .deriveWSPtrClass ("MidiSource") .addFunction ("empty", &MidiSource::empty) .addFunction ("length", &MidiSource::length) .addFunction ("model", &MidiSource::model) .endClass () .deriveWSPtrClass ("AudioSource") .addCast ("to_readable") .addFunction ("readable_length", &AudioSource::readable_length) .addFunction ("n_channels", &AudioSource::n_channels) .addFunction ("empty", &Source::empty) .addFunction ("length", &Source::length) .addFunction ("read", &AudioSource::read) .addFunction ("sample_rate", &AudioSource::sample_rate) .addFunction ("captured_for", &AudioSource::captured_for) .endClass () .deriveWSPtrClass ("Automatable") .addFunction ("automation_control", (boost::shared_ptr(Automatable::*)(const Evoral::Parameter&, bool))&Automatable::automation_control) .endClass () .deriveWSPtrClass , Automatable> ("AutomatableSequence") .addCast > ("to_sequence") .endClass () .deriveWSPtrClass > ("MidiModel") .addFunction ("apply_command", (void (MidiModel::*)(Session*, Command*))&MidiModel::apply_command) .addFunction ("new_note_diff_command", &MidiModel::new_note_diff_command) .endClass () .beginNamespace ("MidiModel") .deriveClass ("DiffCommand") .endClass () .deriveClass ("NoteDiffCommand") .addFunction ("add", &ARDOUR::MidiModel::NoteDiffCommand::add) .addFunction ("remove", &ARDOUR::MidiModel::NoteDiffCommand::remove) .endClass () .endNamespace () /* ARDOUR::MidiModel */ .beginClass ("PresetRecord") .addVoidConstructor () .addData ("uri", &Plugin::PresetRecord::uri, false) .addData ("label", &Plugin::PresetRecord::label, false) .addData ("user", &Plugin::PresetRecord::user, false) .addData ("valid", &Plugin::PresetRecord::valid, false) .endClass () .beginStdVector ("PresetVector").endClass () .deriveClass ("ParameterDescriptor") .addVoidConstructor () .addData ("label", &ParameterDescriptor::label) .addData ("logarithmic", &ParameterDescriptor::logarithmic) .addStaticFunction ("midi_note_name", &ParameterDescriptor::midi_note_name) .endClass () .beginStdVector > ("ProcessorVector").endClass () .deriveWSPtrClass ("Processor") .addCast ("to_automatable") .addCast ("to_insert") .addCast ("to_sidechain") .addCast ("to_ioprocessor") .addCast ("to_unknownprocessor") .addCast ("to_amp") .addCast ("to_peakmeter") .addCast ("to_monitorprocessor") #if 0 // those objects are not yet bound .addCast ("to_capturingprocessor") .addCast ("to_delayline") #endif .addCast ("to_meter") .addFunction ("display_name", &Processor::display_name) .addFunction ("active", &Processor::active) .addFunction ("activate", &Processor::activate) .addFunction ("deactivate", &Processor::deactivate) .addFunction ("output_streams", &PluginInsert::output_streams) .addFunction ("input_streams", &PluginInsert::input_streams) .endClass () .deriveWSPtrClass ("IOProcessor") .addFunction ("natural_input_streams", &IOProcessor::natural_input_streams) .addFunction ("natural_output_streams", &IOProcessor::natural_output_streams) .addFunction ("input", (boost::shared_ptr(IOProcessor::*)())&IOProcessor::input) .addFunction ("output", (boost::shared_ptr(IOProcessor::*)())&IOProcessor::output) .endClass () .deriveWSPtrClass ("SideChain") .endClass () .deriveWSPtrClass ("Delivery") .addFunction ("panner_shell", &Route::panner_shell) .endClass () .beginNamespace ("Plugin") .beginClass ("IOPortDescription") .addData ("name", &Plugin::IOPortDescription::name) .addData ("is_sidechain", &Plugin::IOPortDescription::is_sidechain) .addData ("group_name", &Plugin::IOPortDescription::group_name) .addData ("group_channel", &Plugin::IOPortDescription::group_channel) .endClass () .endNamespace () .deriveWSPtrClass ("Plugin") .addCast ("to_luaproc") .addFunction ("unique_id", &Plugin::unique_id) .addFunction ("label", &Plugin::label) .addFunction ("name", &Plugin::name) .addFunction ("maker", &Plugin::maker) .addFunction ("parameter_count", &Plugin::parameter_count) .addRefFunction ("nth_parameter", &Plugin::nth_parameter) .addFunction ("preset_by_label", &Plugin::preset_by_label) .addFunction ("preset_by_uri", &Plugin::preset_by_uri) .addFunction ("load_preset", &Plugin::load_preset) .addFunction ("parameter_is_input", &Plugin::parameter_is_input) .addFunction ("get_docs", &Plugin::get_docs) .addFunction ("get_info", &Plugin::get_info) .addFunction ("get_parameter_docs", &Plugin::get_parameter_docs) .addFunction ("describe_io_port", &Plugin::describe_io_port) .addRefFunction ("get_parameter_descriptor", &Plugin::get_parameter_descriptor) .endClass () .deriveWSPtrClass ("LuaProc") .addFunction ("shmem", &LuaProc::instance_shm) .addFunction ("table", &LuaProc::instance_ref) .endClass () .deriveWSPtrClass ("PluginInsert") .addFunction ("plugin", &PluginInsert::plugin) .addFunction ("activate", &PluginInsert::activate) .addFunction ("deactivate", &PluginInsert::deactivate) .addFunction ("strict_io_configured", &PluginInsert::strict_io_configured) .addFunction ("input_map", (ARDOUR::ChanMapping (PluginInsert::*)(uint32_t) const)&PluginInsert::input_map) .addFunction ("output_map", (ARDOUR::ChanMapping (PluginInsert::*)(uint32_t) const)&PluginInsert::output_map) .addFunction ("set_input_map", &PluginInsert::set_input_map) .addFunction ("set_output_map", &PluginInsert::set_output_map) .addFunction ("natural_output_streams", &PluginInsert::natural_output_streams) .addFunction ("natural_input_streams", &PluginInsert::natural_input_streams) .addFunction ("reset_parameters_to_default", &PluginInsert::reset_parameters_to_default) .endClass () .deriveWSPtrClass ("AutomationControl") .addCast ("to_ctrl") .addFunction ("automation_state", &AutomationControl::automation_state) .addFunction ("automation_style", &AutomationControl::automation_style) .addFunction ("set_automation_state", &AutomationControl::set_automation_state) .addFunction ("set_automation_style", &AutomationControl::set_automation_style) .addFunction ("start_touch", &AutomationControl::start_touch) .addFunction ("stop_touch", &AutomationControl::stop_touch) .addFunction ("get_value", &AutomationControl::get_value) .addFunction ("set_value", &AutomationControl::set_value) .addFunction ("writable", &AutomationControl::writable) .addFunction ("alist", &AutomationControl::alist) .endClass () .deriveWSPtrClass ("SlavableAutomationControl,") .addFunction ("add_master", &SlavableAutomationControl::add_master) .addFunction ("remove_master", &SlavableAutomationControl::remove_master) .addFunction ("clear_masters", &SlavableAutomationControl::clear_masters) .addFunction ("slaved_to", &SlavableAutomationControl::slaved_to) .addFunction ("slaved", &SlavableAutomationControl::slaved) .addFunction ("get_masters_value", &SlavableAutomationControl::get_masters_value) .addFunction ("get_boolean_masters", &SlavableAutomationControl::get_boolean_masters) //.addFunction ("masters", &SlavableAutomationControl::masters) // not implemented .endClass () .deriveWSPtrClass ("PhaseControl") .addFunction ("set_phase_invert", (void(PhaseControl::*)(uint32_t, bool))&PhaseControl::set_phase_invert) .addFunction ("inverted", &PhaseControl::inverted) .endClass () .deriveWSPtrClass ("GainControl") .endClass () .deriveWSPtrClass ("SoloControl") .addFunction ("can_solo", &SoloControl::can_solo) .addFunction ("soloed", &SoloControl::soloed) .addFunction ("self_soloed", &SoloControl::self_soloed) .endClass () .deriveWSPtrClass ("MuteControl") .addFunction ("muted", &MuteControl::muted) .addFunction ("muted_by_self", &MuteControl::muted_by_self) .endClass () .deriveWSPtrClass ("SoloIsolateControl") .addFunction ("solo_isolated", &SoloIsolateControl::solo_isolated) .addFunction ("self_solo_isolated", &SoloIsolateControl::self_solo_isolated) .endClass () .deriveWSPtrClass ("SoloSafeControl") .addFunction ("solo_safe", &SoloSafeControl::solo_safe) .endClass () .deriveWSPtrClass ("Amp") .addFunction ("gain_control", (boost::shared_ptr(Amp::*)())&Amp::gain_control) .endClass () .deriveWSPtrClass ("PeakMeter") .addFunction ("meter_level", &PeakMeter::meter_level) .addFunction ("set_type", &PeakMeter::set_type) .addFunction ("reset_max", &PeakMeter::reset_max) .endClass () .deriveWSPtrClass ("MonitorProcessor") .addFunction ("set_cut_all", &MonitorProcessor::set_cut_all) .addFunction ("set_dim_all", &MonitorProcessor::set_dim_all) .addFunction ("set_polarity", &MonitorProcessor::set_polarity) .addFunction ("set_cut", &MonitorProcessor::set_cut) .addFunction ("set_dim", &MonitorProcessor::set_dim) .addFunction ("set_solo", &MonitorProcessor::set_solo) .addFunction ("set_mono", &MonitorProcessor::set_mono) .addFunction ("dim_level", &MonitorProcessor::dim_level) .addFunction ("solo_boost_level", &MonitorProcessor::solo_boost_level) .addFunction ("dimmed", &MonitorProcessor::dimmed) .addFunction ("soloed", &MonitorProcessor::soloed) .addFunction ("inverted", &MonitorProcessor::inverted) .addFunction ("cut", &MonitorProcessor::cut) .addFunction ("cut_all", &MonitorProcessor::cut_all) .addFunction ("dim_all", &MonitorProcessor::dim_all) .addFunction ("mono", &MonitorProcessor::mono) .addFunction ("monitor_active", &MonitorProcessor::monitor_active) .addFunction ("channel_cut_control", &MonitorProcessor::channel_cut_control) .addFunction ("channel_dim_control", &MonitorProcessor::channel_dim_control) .addFunction ("channel_polarity_control", &MonitorProcessor::channel_polarity_control) .addFunction ("channel_solo_control", &MonitorProcessor::channel_solo_control) .addFunction ("dim_control", &MonitorProcessor::dim_control) .addFunction ("cut_control", &MonitorProcessor::cut_control) .addFunction ("mono_control", &MonitorProcessor::mono_control) .addFunction ("dim_level_control", &MonitorProcessor::dim_level_control) .addFunction ("solo_boost_control", &MonitorProcessor::solo_boost_control) .endClass () .deriveWSPtrClass ("UnknownProcessor") .endClass () .deriveWSPtrClass ("PluginControl") .endClass () .deriveWSPtrClass ("AudioSource") .addFunction ("readable_length", &AudioSource::readable_length) .addFunction ("n_channels", &AudioSource::n_channels) .endClass () // > .beginStdList > ("AudioTrackList") .endClass () // std::list > .beginStdList > ("MidiTrackList") .endClass () // RouteList == std::list > .beginConstStdList > ("RouteList") .endClass () // boost::shared_ptr .beginPtrStdList > ("RouteListPtr") .endClass () // typedef std::list > WeakRouteList .beginConstStdList > ("WeakRouteList") .endClass () // RouteList == std::list > .beginConstStdList ("RouteGroupList") .endClass () // typedef std::vector > Region::SourceList .beginStdVector > ("SourceList") .endClass () // std::list< boost::weak_ptr > .beginConstStdList > ("WeakAudioSourceList") .endClass () // typedef std::list > RegionList .beginConstStdList > ("RegionList") .endClass () // boost::shared_ptr > > .beginPtrStdList > ("RegionListPtr") .endClass () //std::list > PortList; .beginConstStdList > ("PortList") .endClass () // used by Playlist::cut/copy .beginConstStdList ("AudioRangeList") .endClass () .beginConstStdList ("LocationList") .endClass () #if 0 // depends on Evoal:: Note, Beats see note_fixer.h // typedef Evoral::Note Note; // std::set< boost::weak_ptr > .beginStdSet > ("WeakNoteSet") .endClass () #endif // std::list > .beginConstStdList > ("WeakSourceList") .endClass () .beginClass ("Tempo") .addConstructor () .addFunction ("note_type", &Tempo::note_type) .addFunction ("note_types_per_minute", (double (Tempo::*)() const)&Tempo::note_types_per_minute) .addFunction ("quarter_notes_per_minute", &Tempo::quarter_notes_per_minute) .addFunction ("frames_per_quarter_note", &Tempo::frames_per_quarter_note) .addFunction ("frames_per_note_type", &Tempo::frames_per_note_type) .endClass () .beginClass ("Meter") .addConstructor () .addFunction ("divisions_per_bar", &Meter::divisions_per_bar) .addFunction ("note_divisor", &Meter::note_divisor) .addFunction ("frames_per_bar", &Meter::frames_per_bar) .addFunction ("frames_per_grid", &Meter::frames_per_grid) .endClass () .beginClass ("TempoMap") .addFunction ("add_tempo", &TempoMap::add_tempo) .addFunction ("add_meter", &TempoMap::add_meter) .addFunction ("tempo_section_at_frame", &TempoMap::tempo_section_at_frame) .addFunction ("meter_section_at_frame", &TempoMap::meter_section_at_frame) .addFunction ("meter_section_at_beat", &TempoMap::meter_section_at_beat) .addFunction ("bbt_at_frame", &TempoMap::bbt_at_frame) .addFunction ("exact_beat_at_frame", &TempoMap::exact_beat_at_frame) .addFunction ("exact_qn_at_frame", &TempoMap::exact_qn_at_frame) .endClass () .beginClass ("MetricSection") .addFunction ("pulse", &MetricSection::pulse) .addFunction ("set_pulse", &MetricSection::set_pulse) .endClass () .deriveClass ("TempoSection") .addFunction ("c_func", (double(TempoSection::*)()const)&TempoSection::c_func) .endClass () .deriveClass ("MeterSection") .addCast ("to_meter") .addFunction ("set_pulse", &MeterSection::set_pulse) .addFunction ("set_beat", (void(MeterSection::*)(double))&MeterSection::set_beat) .endClass () .beginClass ("ChanCount") .addConstructor () .addFunction ("get", &ChanCount::get) .addFunction ("set", &ChanCount::set) .addFunction ("n_audio", &ChanCount::n_audio) .addFunction ("n_midi", &ChanCount::n_midi) .addFunction ("n_total", &ChanCount::n_total) .addFunction ("reset", &ChanCount::reset) .endClass() .beginClass ("DataType") .addConstructor () .addStaticCFunction ("null", &LuaAPI::datatype_ctor_null) // "nil" is a lua reseved word .addStaticCFunction ("audio", &LuaAPI::datatype_ctor_audio) .addStaticCFunction ("midi", &LuaAPI::datatype_ctor_midi) .addFunction ("to_string", &DataType::to_string) // TODO Lua __tostring // TODO add uint32_t cast, add operator== != .endClass() /* libardour enums */ .beginNamespace ("PluginType") .addConst ("AudioUnit", ARDOUR::PluginType(AudioUnit)) .addConst ("LADSPA", ARDOUR::PluginType(LADSPA)) .addConst ("LV2", ARDOUR::PluginType(LV2)) .addConst ("Windows_VST", ARDOUR::PluginType(Windows_VST)) .addConst ("LXVST", ARDOUR::PluginType(LXVST)) .addConst ("Lua", ARDOUR::PluginType(Lua)) .endNamespace () .beginNamespace ("PresentationInfo") .beginNamespace ("Flag") .addConst ("AudioTrack", ARDOUR::PresentationInfo::Flag(PresentationInfo::AudioTrack)) .addConst ("MidiTrack", ARDOUR::PresentationInfo::Flag(PresentationInfo::MidiTrack)) .addConst ("AudioBus", ARDOUR::PresentationInfo::Flag(PresentationInfo::AudioBus)) .addConst ("MidiBus", ARDOUR::PresentationInfo::Flag(PresentationInfo::MidiBus)) .addConst ("VCA", ARDOUR::PresentationInfo::Flag(PresentationInfo::VCA)) .addConst ("MasterOut", ARDOUR::PresentationInfo::Flag(PresentationInfo::MasterOut)) .addConst ("MonitorOut", ARDOUR::PresentationInfo::Flag(PresentationInfo::MonitorOut)) .addConst ("Auditioner", ARDOUR::PresentationInfo::Flag(PresentationInfo::Auditioner)) .addConst ("Selected", ARDOUR::PresentationInfo::Flag(PresentationInfo::Selected)) .addConst ("Hidden", ARDOUR::PresentationInfo::Flag(PresentationInfo::Hidden)) .addConst ("GroupOrderSet", ARDOUR::PresentationInfo::Flag(PresentationInfo::OrderSet)) .addConst ("StatusMask", ARDOUR::PresentationInfo::Flag(PresentationInfo::StatusMask)) .endNamespace () .endNamespace () .beginNamespace ("AutoStyle") .addConst ("Absolute", ARDOUR::AutoStyle(Absolute)) .addConst ("Trim", ARDOUR::AutoStyle(Trim)) .endNamespace () .beginNamespace ("AutoState") .addConst ("Off", ARDOUR::AutoState(Off)) .addConst ("Write", ARDOUR::AutoState(Write)) .addConst ("Touch", ARDOUR::AutoState(Touch)) .addConst ("Play", ARDOUR::AutoState(Play)) .endNamespace () .beginNamespace ("AutomationType") .addConst ("GainAutomation", ARDOUR::AutomationType(GainAutomation)) .addConst ("PluginAutomation", ARDOUR::AutomationType(PluginAutomation)) .addConst ("SoloAutomation", ARDOUR::AutomationType(SoloAutomation)) .addConst ("SoloIsolateAutomation", ARDOUR::AutomationType(SoloIsolateAutomation)) .addConst ("SoloSafeAutomation", ARDOUR::AutomationType(SoloSafeAutomation)) .addConst ("MuteAutomation", ARDOUR::AutomationType(MuteAutomation)) .addConst ("RecEnableAutomation", ARDOUR::AutomationType(RecEnableAutomation)) .addConst ("RecSafeAutomation", ARDOUR::AutomationType(RecSafeAutomation)) .addConst ("TrimAutomation", ARDOUR::AutomationType(TrimAutomation)) .addConst ("PhaseAutomation", ARDOUR::AutomationType(PhaseAutomation)) .endNamespace () .beginNamespace ("SrcQuality") .addConst ("SrcBest", ARDOUR::SrcQuality(SrcBest)) .endNamespace () .beginNamespace ("MeterType") .addConst ("MeterMaxSignal", ARDOUR::MeterType(MeterMaxSignal)) .addConst ("MeterMaxPeak", ARDOUR::MeterType(MeterMaxPeak)) .addConst ("MeterPeak", ARDOUR::MeterType(MeterPeak)) .addConst ("MeterKrms", ARDOUR::MeterType(MeterKrms)) .addConst ("MeterK20", ARDOUR::MeterType(MeterK20)) .addConst ("MeterK14", ARDOUR::MeterType(MeterK14)) .addConst ("MeterIEC1DIN", ARDOUR::MeterType(MeterIEC1DIN)) .addConst ("MeterIEC1NOR", ARDOUR::MeterType(MeterIEC1NOR)) .addConst ("MeterIEC2BBC", ARDOUR::MeterType(MeterIEC2BBC)) .addConst ("MeterIEC2EBU", ARDOUR::MeterType(MeterIEC2EBU)) .addConst ("MeterVU", ARDOUR::MeterType(MeterVU)) .addConst ("MeterK12", ARDOUR::MeterType(MeterK12)) .addConst ("MeterPeak0dB", ARDOUR::MeterType(MeterPeak0dB)) .addConst ("MeterMCP", ARDOUR::MeterType(MeterMCP)) .endNamespace () .beginNamespace ("MeterPoint") .addConst ("MeterInput", ARDOUR::MeterPoint(MeterInput)) .addConst ("MeterPreFader", ARDOUR::MeterPoint(MeterPreFader)) .addConst ("MeterPostFader", ARDOUR::MeterPoint(MeterPostFader)) .addConst ("MeterOutput", ARDOUR::MeterPoint(MeterOutput)) .addConst ("MeterCustom", ARDOUR::MeterPoint(MeterCustom)) .endNamespace () .beginNamespace ("Placement") .addConst ("PreFader", ARDOUR::Placement(PreFader)) .addConst ("PostFader", ARDOUR::Placement(PostFader)) .endNamespace () .beginNamespace ("NoteMode") .addConst ("Sustained", ARDOUR::NoteMode(Sustained)) .addConst ("Percussive", ARDOUR::NoteMode(Percussive)) .endNamespace () .beginNamespace ("PortFlags") .addConst ("IsInput", ARDOUR::PortFlags(IsInput)) .addConst ("IsOutput", ARDOUR::PortFlags(IsOutput)) .addConst ("IsPhysical", ARDOUR::PortFlags(IsPhysical)) .addConst ("CanMonitor", ARDOUR::PortFlags(CanMonitor)) .addConst ("IsTerminal", ARDOUR::PortFlags(IsTerminal)) .endNamespace () .beginNamespace ("PlaylistDisposition") .addConst ("CopyPlaylist", ARDOUR::PlaylistDisposition(CopyPlaylist)) .addConst ("NewPlaylist", ARDOUR::PlaylistDisposition(NewPlaylist)) .addConst ("SharePlaylist", ARDOUR::PlaylistDisposition(SharePlaylist)) .endNamespace () .beginNamespace ("RegionPoint") .addConst ("Start", ARDOUR::RegionPoint(Start)) .addConst ("End", ARDOUR::RegionPoint(End)) .addConst ("SyncPoint", ARDOUR::RegionPoint(SyncPoint)) .endNamespace () .beginNamespace ("TempoSection") .beginNamespace ("PositionLockStyle") .addConst ("AudioTime", ARDOUR::PositionLockStyle(AudioTime)) .addConst ("MusicTime", ARDOUR::PositionLockStyle(MusicTime)) .endNamespace () .endNamespace () .beginNamespace ("TempoSection") .beginNamespace ("Type") .addConst ("Ramp", ARDOUR::TempoSection::Type(TempoSection::Ramp)) .addConst ("Constant", ARDOUR::TempoSection::Type(TempoSection::Constant)) .endNamespace () .endNamespace () .beginNamespace ("TrackMode") .addConst ("Normal", ARDOUR::TrackMode(Start)) .addConst ("NonLayered", ARDOUR::TrackMode(NonLayered)) .addConst ("Destructive", ARDOUR::TrackMode(Destructive)) .endNamespace () .beginNamespace ("SampleFormat") .addConst ("Float", ARDOUR::SampleFormat(FormatFloat)) .addConst ("Int24", ARDOUR::SampleFormat(FormatInt24)) .addConst ("Int16", ARDOUR::SampleFormat(FormatInt16)) .endNamespace () .beginNamespace ("HeaderFormat") .addConst ("BWF", ARDOUR::HeaderFormat(BWF)) .addConst ("WAVE", ARDOUR::HeaderFormat(WAVE)) .addConst ("WAVE64", ARDOUR::HeaderFormat(WAVE64)) .addConst ("CAF", ARDOUR::HeaderFormat(CAF)) .addConst ("AIFF", ARDOUR::HeaderFormat(AIFF)) .addConst ("iXML", ARDOUR::HeaderFormat(iXML)) .addConst ("RF64", ARDOUR::HeaderFormat(RF64)) .addConst ("RF64_WAV", ARDOUR::HeaderFormat(RF64_WAV)) .addConst ("MBWF", ARDOUR::HeaderFormat(MBWF)) .endNamespace () .beginNamespace ("InsertMergePolicy") .addConst ("Reject", ARDOUR::InsertMergePolicy(InsertMergeReject)) .addConst ("Relax", ARDOUR::InsertMergePolicy(InsertMergeRelax)) .addConst ("Replace", ARDOUR::InsertMergePolicy(InsertMergeReplace)) .addConst ("TruncateExisting", ARDOUR::InsertMergePolicy(InsertMergeTruncateExisting)) .addConst ("TruncateAddition", ARDOUR::InsertMergePolicy(InsertMergeTruncateAddition)) .addConst ("Extend", ARDOUR::InsertMergePolicy(InsertMergeExtend)) .endNamespace () .endNamespace (); // end ARDOUR luabridge::getGlobalNamespace (L) .beginNamespace ("ARDOUR") .beginClass ("AudioBackendInfo") .addData ("name", &AudioBackendInfo::name) .endClass() .beginStdVector ("BackendVector").endClass () .beginClass ("DeviceStatus") .addData ("name", &AudioBackend::DeviceStatus::name) .addData ("available", &AudioBackend::DeviceStatus::available) .endClass() .beginStdVector ("DeviceStatusVector").endClass () .beginWSPtrClass ("AudioBackend") .addFunction ("info", &AudioBackend::info) .addFunction ("sample_rate", &AudioBackend::sample_rate) .addFunction ("buffer_size", &AudioBackend::buffer_size) .addFunction ("period_size", &AudioBackend::period_size) .addFunction ("input_channels", &AudioBackend::input_channels) .addFunction ("output_channels", &AudioBackend::output_channels) .addFunction ("dsp_load", &AudioBackend::dsp_load) .addFunction ("set_sample_rate", &AudioBackend::set_sample_rate) .addFunction ("set_buffer_size", &AudioBackend::set_buffer_size) .addFunction ("set_peridod_size", &AudioBackend::set_peridod_size) .addFunction ("enumerate_drivers", &AudioBackend::enumerate_drivers) .addFunction ("driver_name", &AudioBackend::driver_name) .addFunction ("set_driver", &AudioBackend::set_driver) .addFunction ("use_separate_input_and_output_devices", &AudioBackend::use_separate_input_and_output_devices) .addFunction ("enumerate_devices", &AudioBackend::enumerate_devices) .addFunction ("enumerate_input_devices", &AudioBackend::enumerate_input_devices) .addFunction ("enumerate_output_devices", &AudioBackend::enumerate_output_devices) .addFunction ("device_name", &AudioBackend::device_name) .addFunction ("input_device_name", &AudioBackend::input_device_name) .addFunction ("output_device_name", &AudioBackend::output_device_name) .addFunction ("set_device_name", &AudioBackend::set_device_name) .addFunction ("set_input_device_name", &AudioBackend::set_input_device_name) .addFunction ("set_output_device_name", &AudioBackend::set_output_device_name) .endClass() .beginClass ("PortEngine") .endClass() .beginClass ("PortManager") .addFunction ("port_engine", &PortManager::port_engine) .addFunction ("connected", &PortManager::connected) .addFunction ("connect", &PortManager::connect) .addFunction ("physically_connected", &PortManager::physically_connected) .addFunction ("disconnect", (int (PortManager::*)(const std::string&, const std::string&))&PortManager::disconnect) .addFunction ("disconnect_port", (int (PortManager::*)(boost::shared_ptr))&PortManager::disconnect) .addFunction ("get_port_by_name", &PortManager::get_port_by_name) .addFunction ("get_pretty_name_by_name", &PortManager::get_pretty_name_by_name) .addFunction ("port_is_physical", &PortManager::port_is_physical) .addFunction ("get_physical_outputs", &PortManager::get_physical_outputs) .addFunction ("get_physical_inputs", &PortManager::get_physical_inputs) .addFunction ("n_physical_outputs", &PortManager::n_physical_outputs) .addFunction ("n_physical_inputs", &PortManager::n_physical_inputs) .addRefFunction ("get_connections", &PortManager::get_connections) .addRefFunction ("get_ports", (int (PortManager::*)(DataType, PortManager::PortList&))&PortManager::get_ports) .addRefFunction ("get_backend_ports", (int (PortManager::*)(const std::string&, DataType, PortFlags, std::vector&))&PortManager::get_ports) .endClass() .deriveClass ("AudioEngine") .addFunction ("available_backends", &AudioEngine::available_backends) .addFunction ("current_backend_name", &AudioEngine::current_backend_name) .addFunction ("set_backend", &AudioEngine::set_backend) .addFunction ("setup_required", &AudioEngine::setup_required) .addFunction ("start", &AudioEngine::start) .addFunction ("stop", &AudioEngine::stop) .addFunction ("get_dsp_load", &AudioEngine::get_dsp_load) .addFunction ("set_device_name", &AudioEngine::set_device_name) .addFunction ("set_sample_rate", &AudioEngine::set_sample_rate) .addFunction ("set_buffer_size", &AudioEngine::set_buffer_size) .addFunction ("get_last_backend_error", &AudioEngine::get_last_backend_error) .endClass() .deriveClass ("SessionConfiguration") #undef CONFIG_VARIABLE #undef CONFIG_VARIABLE_SPECIAL #define CONFIG_VARIABLE(Type,var,name,value) \ .addFunction ("get_" # var, &SessionConfiguration::get_##var) \ .addFunction ("set_" # var, &SessionConfiguration::set_##var) \ .addProperty (#var, &SessionConfiguration::get_##var, &SessionConfiguration::set_##var) #define CONFIG_VARIABLE_SPECIAL(Type,var,name,value,mutator) \ .addFunction ("get_" # var, &SessionConfiguration::get_##var) \ .addFunction ("set_" # var, &SessionConfiguration::set_##var) \ .addProperty (#var, &SessionConfiguration::get_##var, &SessionConfiguration::set_##var) #include "ardour/session_configuration_vars.h" #undef CONFIG_VARIABLE #undef CONFIG_VARIABLE_SPECIAL .endClass() .endNamespace (); // basic representation of Session // functions which can be used from realtime and non-realtime contexts luabridge::getGlobalNamespace (L) .beginNamespace ("ARDOUR") .beginClass ("Session") .addFunction ("scripts_changed", &Session::scripts_changed) // used internally .addFunction ("transport_rolling", &Session::transport_rolling) .addFunction ("request_transport_speed", &Session::request_transport_speed) .addFunction ("transport_frame", &Session::transport_frame) .addFunction ("transport_speed", &Session::transport_speed) .addFunction ("frame_rate", &Session::frame_rate) .addFunction ("nominal_frame_rate", &Session::nominal_frame_rate) .addFunction ("frames_per_timecode_frame", &Session::frames_per_timecode_frame) .addFunction ("timecode_frames_per_hour", &Session::timecode_frames_per_hour) .addFunction ("timecode_frames_per_second", &Session::timecode_frames_per_second) .addFunction ("timecode_drop_frames", &Session::timecode_drop_frames) .addFunction ("request_locate", &Session::request_locate) .addFunction ("request_stop", &Session::request_stop) .addFunction ("request_play_loop", &Session::request_play_loop) .addFunction ("get_play_loop", &Session::get_play_loop) .addFunction ("last_transport_start", &Session::last_transport_start) .addFunction ("goto_start", &Session::goto_start) .addFunction ("goto_end", &Session::goto_end) .addFunction ("current_start_frame", &Session::current_start_frame) .addFunction ("current_end_frame", &Session::current_end_frame) .addFunction ("actively_recording", &Session::actively_recording) .addFunction ("new_audio_track", &Session::new_audio_track) .addFunction ("new_audio_route", &Session::new_audio_route) .addFunction ("new_midi_track", &Session::new_midi_track) .addFunction ("new_midi_route", &Session::new_midi_route) .addFunction ("get_routes", &Session::get_routes) .addFunction ("get_tracks", &Session::get_tracks) .addFunction ("name", &Session::name) .addFunction ("path", &Session::path) .addFunction ("record_status", &Session::record_status) .addFunction ("maybe_enable_record", &Session::maybe_enable_record) .addFunction ("disable_record", &Session::disable_record) .addFunction ("route_by_id", &Session::route_by_id) .addFunction ("route_by_name", &Session::route_by_name) .addFunction ("get_remote_nth_stripable", &Session::get_remote_nth_stripable) .addFunction ("get_remote_nth_route", &Session::get_remote_nth_route) .addFunction ("route_by_selected_count", &Session::route_by_selected_count) .addFunction ("track_by_diskstream_id", &Session::track_by_diskstream_id) .addFunction ("source_by_id", &Session::source_by_id) .addFunction ("controllable_by_id", &Session::controllable_by_id) .addFunction ("processor_by_id", &Session::processor_by_id) .addFunction ("snap_name", &Session::snap_name) .addFunction ("monitor_out", &Session::monitor_out) .addFunction ("master_out", &Session::master_out) .addFunction ("tempo_map", (TempoMap& (Session::*)())&Session::tempo_map) .addFunction ("locations", &Session::locations) .addFunction ("begin_reversible_command", (void (Session::*)(const std::string&))&Session::begin_reversible_command) .addFunction ("commit_reversible_command", &Session::commit_reversible_command) .addFunction ("abort_reversible_command", &Session::abort_reversible_command) .addFunction ("add_command", &Session::add_command) .addFunction ("add_stateful_diff_command", &Session::add_stateful_diff_command) .addFunction ("engine", (AudioEngine& (Session::*)())&Session::engine) .addFunction ("get_block_size", &Session::get_block_size) .addFunction ("worst_output_latency", &Session::worst_output_latency) .addFunction ("worst_input_latency", &Session::worst_input_latency) .addFunction ("worst_track_latency", &Session::worst_track_latency) .addFunction ("worst_playback_latency", &Session::worst_playback_latency) .addFunction ("cfg", &Session::cfg) .addFunction ("route_groups", &Session::route_groups) .addFunction ("new_route_group", &Session::new_route_group) .addFunction ("remove_route_group", (void (Session::*)(RouteGroup*))&Session::remove_route_group) .endClass () .beginClass ("RegionFactory") .addStaticFunction ("region_by_id", &RegionFactory::region_by_id) .endClass () /* session enums (rt-safe, common) */ .beginNamespace ("Session") .beginNamespace ("RecordState") .addConst ("Disabled", ARDOUR::Session::RecordState(Session::Disabled)) .addConst ("Enabled", ARDOUR::Session::RecordState(Session::Enabled)) .addConst ("Recording", ARDOUR::Session::RecordState(Session::Recording)) .endNamespace () .endNamespace () // end Session enums /* ardour enums (rt-safe, common) */ .beginNamespace ("LocationFlags") .addConst ("IsMark", ARDOUR::Location::Flags(Location::IsMark)) .addConst ("IsAutoPunch", ARDOUR::Location::Flags(Location::IsAutoPunch)) .addConst ("IsAutoLoop", ARDOUR::Location::Flags(Location::IsAutoLoop)) .addConst ("IsHidden", ARDOUR::Location::Flags(Location::IsHidden)) .addConst ("IsCDMarker", ARDOUR::Location::Flags(Location::IsCDMarker)) .addConst ("IsRangeMarker", ARDOUR::Location::Flags(Location::IsRangeMarker)) .addConst ("IsSessionRange", ARDOUR::Location::Flags(Location::IsSessionRange)) .addConst ("IsSkip", ARDOUR::Location::Flags(Location::IsSkip)) .addConst ("IsSkipping", ARDOUR::Location::Flags(Location::IsSkipping)) .endNamespace () .beginNamespace ("LuaAPI") .addFunction ("nil_proc", ARDOUR::LuaAPI::nil_processor) .addFunction ("new_luaproc", ARDOUR::LuaAPI::new_luaproc) .addFunction ("new_plugin_info", ARDOUR::LuaAPI::new_plugin_info) .addFunction ("new_plugin", ARDOUR::LuaAPI::new_plugin) .addFunction ("set_processor_param", ARDOUR::LuaAPI::set_processor_param) .addFunction ("set_plugin_insert_param", ARDOUR::LuaAPI::set_plugin_insert_param) .addRefFunction ("get_processor_param", ARDOUR::LuaAPI::get_processor_param) .addRefFunction ("get_plugin_insert_param", ARDOUR::LuaAPI::get_plugin_insert_param) .addCFunction ("plugin_automation", ARDOUR::LuaAPI::plugin_automation) .addCFunction ("hsla_to_rgba", ARDOUR::LuaAPI::hsla_to_rgba) .addFunction ("usleep", Glib::usleep) .addCFunction ("build_filename", ARDOUR::LuaAPI::build_filename) .addFunction ("new_noteptr", ARDOUR::LuaAPI::new_noteptr) .beginClass ("Vamp") .addConstructor () .addStaticFunction ("list_plugins", &ARDOUR::LuaAPI::Vamp::list_plugins) .addFunction ("plugin", &ARDOUR::LuaAPI::Vamp::plugin) .addFunction ("analyze", &ARDOUR::LuaAPI::Vamp::analyze) .addFunction ("reset", &ARDOUR::LuaAPI::Vamp::reset) .addFunction ("initialize", &ARDOUR::LuaAPI::Vamp::initialize) .addFunction ("process", &ARDOUR::LuaAPI::Vamp::process) .endClass () .endNamespace () // end LuaAPI .endNamespace ();// end ARDOUR // DSP functions luabridge::getGlobalNamespace (L) .beginNamespace ("ARDOUR") .beginNamespace ("DSP") .addFunction ("compute_peak", ARDOUR::compute_peak) .addFunction ("find_peaks", ARDOUR::find_peaks) .addFunction ("apply_gain_to_buffer", ARDOUR::apply_gain_to_buffer) .addFunction ("mix_buffers_no_gain", ARDOUR::mix_buffers_no_gain) .addFunction ("mix_buffers_with_gain", ARDOUR::mix_buffers_with_gain) .addFunction ("copy_vector", ARDOUR::copy_vector) .addFunction ("dB_to_coefficient", &dB_to_coefficient) .addFunction ("fast_coefficient_to_dB", &fast_coefficient_to_dB) .addFunction ("accurate_coefficient_to_dB", &accurate_coefficient_to_dB) .addFunction ("memset", &DSP::memset) .addFunction ("mmult", &DSP::mmult) .addFunction ("log_meter", &DSP::log_meter) .addFunction ("log_meter_coeff", &DSP::log_meter_coeff) .addFunction ("process_map", &DSP::process_map) .addRefFunction ("peaks", &DSP::peaks) .beginClass ("LowPass") .addConstructor () .addFunction ("proc", &DSP::LowPass::proc) .addFunction ("ctrl", &DSP::LowPass::ctrl) .addFunction ("set_cutoff", &DSP::LowPass::set_cutoff) .addFunction ("reset", &DSP::LowPass::reset) .endClass () .beginClass ("Biquad") .addConstructor () .addFunction ("run", &DSP::Biquad::run) .addFunction ("compute", &DSP::Biquad::compute) .addFunction ("configure", &DSP::Biquad::configure) .addFunction ("reset", &DSP::Biquad::reset) .addFunction ("dB_at_freq", &DSP::Biquad::dB_at_freq) .endClass () .beginClass ("FFTSpectrum") .addConstructor () .addFunction ("set_data_hann", &DSP::FFTSpectrum::set_data_hann) .addFunction ("execute", &DSP::FFTSpectrum::execute) .addFunction ("power_at_bin", &DSP::FFTSpectrum::power_at_bin) .addFunction ("freq_at_bin", &DSP::FFTSpectrum::freq_at_bin) .endClass () /* DSP enums */ .beginNamespace ("BiquadType") .addConst ("LowPass", ARDOUR::DSP::Biquad::LowPass) .addConst ("HighPass", ARDOUR::DSP::Biquad::HighPass) .addConst ("BandPassSkirt", ARDOUR::DSP::Biquad::BandPassSkirt) .addConst ("BandPass0dB", ARDOUR::DSP::Biquad::BandPass0dB) .addConst ("Notch", ARDOUR::DSP::Biquad::Notch) .addConst ("AllPass", ARDOUR::DSP::Biquad::AllPass) .addConst ("Peaking", ARDOUR::DSP::Biquad::Peaking) .addConst ("LowShelf", ARDOUR::DSP::Biquad::LowShelf) .addConst ("HighShelf", ARDOUR::DSP::Biquad::HighShelf) .endNamespace () .beginClass ("DspShm") .addConstructor () .addFunction ("allocate", &DSP::DspShm::allocate) .addFunction ("clear", &DSP::DspShm::clear) .addFunction ("to_float", &DSP::DspShm::to_float) .addFunction ("to_int", &DSP::DspShm::to_int) .addFunction ("atomic_set_int", &DSP::DspShm::atomic_set_int) .addFunction ("atomic_get_int", &DSP::DspShm::atomic_get_int) .endClass () .endNamespace () // DSP .endNamespace ();// end ARDOUR } void LuaBindings::dsp (lua_State* L) { luabridge::getGlobalNamespace (L) .beginNamespace ("ARDOUR") .beginClass ("AudioBuffer") .addEqualCheck () .addFunction ("data", (Sample*(AudioBuffer::*)(framecnt_t))&AudioBuffer::data) .addFunction ("silence", &AudioBuffer::silence) .addFunction ("apply_gain", &AudioBuffer::apply_gain) .addFunction ("check_silence", &AudioBuffer::check_silence) .addFunction ("read_from", (void (AudioBuffer::*)(const Sample*, framecnt_t, framecnt_t, framecnt_t))&AudioBuffer::check_silence) .endClass() .beginClass ("MidiBuffer") .addEqualCheck () .addFunction ("silence", &MidiBuffer::silence) .addFunction ("size", &MidiBuffer::size) .addFunction ("empty", &MidiBuffer::empty) .addFunction ("resize", &MidiBuffer::resize) .addFunction ("copy", (void (MidiBuffer::*)(MidiBuffer const * const))&MidiBuffer::copy) .addFunction ("push_event", (bool (MidiBuffer::*)(const Evoral::Event&))&MidiBuffer::push_back) .addFunction ("push_back", (bool (MidiBuffer::*)(framepos_t, size_t, const uint8_t*))&MidiBuffer::push_back) // TODO iterators.. .addExtCFunction ("table", &luabridge::CFunc::listToTable, MidiBuffer>) .endClass() .beginClass ("BufferSet") .addEqualCheck () .addFunction ("get_audio", static_cast(&BufferSet::get_audio)) .addFunction ("get_midi", static_cast(&BufferSet::get_midi)) .addFunction ("count", static_cast(&BufferSet::count)) .endClass() .endNamespace (); luabridge::getGlobalNamespace (L) .beginNamespace ("Evoral") .deriveClass , Evoral::Event > ("Event") // add Ctor? .addFunction ("type", &Evoral::Event::type) .addFunction ("channel", &Evoral::Event::channel) .addFunction ("set_type", &Evoral::Event::set_type) .addFunction ("set_channel", &Evoral::Event::set_channel) .endClass () .endNamespace (); // dsp releated session functions luabridge::getGlobalNamespace (L) .beginNamespace ("ARDOUR") .beginClass ("Session") .addFunction ("get_scratch_buffers", &Session::get_scratch_buffers) .addFunction ("get_silent_buffers", &Session::get_silent_buffers) .endClass () .endNamespace (); luabridge::getGlobalNamespace (L) .beginNamespace ("ARDOUR") .beginClass ("FluidSynth") .addConstructor () .addFunction ("load_sf2", &FluidSynth::load_sf2) .addFunction ("synth", &FluidSynth::synth) .addFunction ("midi_event", &FluidSynth::midi_event) .addFunction ("panic", &FluidSynth::panic) .addFunction ("select_program", &FluidSynth::select_program) .addFunction ("program_count", &FluidSynth::program_count) .addFunction ("program_name", &FluidSynth::program_name) .endClass () .endNamespace (); luabridge::getGlobalNamespace (L) .beginNamespace ("ARDOUR") .beginClass ("LuaTableRef") .addCFunction ("get", &LuaTableRef::get) .addCFunction ("set", &LuaTableRef::set) .endClass () .endNamespace (); // ARDOUR } void LuaBindings::session (lua_State* L) { // non-realtime session functions luabridge::getGlobalNamespace (L) .beginNamespace ("ARDOUR") .beginClass ("Session") .addFunction ("save_state", &Session::save_state) .addFunction ("set_dirty", &Session::set_dirty) .addFunction ("unknown_processors", &Session::unknown_processors) .addFunction ("new_route_from_template", &Session::new_route_from_template) // TODO session_add_audio_track session_add_midi_track session_add_mixed_track //.addFunction ("new_midi_track", &Session::new_midi_track) .endClass () .endNamespace (); // ARDOUR } void LuaBindings::osc (lua_State* L) { luabridge::getGlobalNamespace (L) .beginNamespace ("ARDOUR") .beginNamespace ("LuaOSC") .beginClass ("Address") .addConstructor () .addCFunction ("send", &LuaOSC::Address::send) .endClass () .endNamespace () .endNamespace (); } void LuaBindings::set_session (lua_State* L, Session *s) { /* LuaBridge uses unique keys to identify classes/c-types. * * Those keys are "generated" by using the memory-address of a static * variable, templated for every Class. * (see libs/lua/LuaBridge/detail/ClassInfo.h) * * When linking the final executable there must be exactly one static * function (static variable) for every templated class. * This works fine on OSX and Linux... * * Windows (mingw and MSVC) however expand the template differently for libardour * AND gtk2_ardour. We end up with two identical static functions * at different addresses!! * * The Solution: have gtk2_ardour never include LuaBridge headers directly * and always go via libardour function calls for classes that are registered * in libardour. (calling lua itself is fine, calling c-functions in the GUI * which expand the template is not) * * (the actual cause: even static symbols in a .dll have no fixed address * and are mapped when loading the dll. static functions in .exe do have a fixed * address) * * libardour: * 0000000000000000 I __imp__ZZN9luabridge9ClassInfoIN6ARDOUR7SessionEE11getClassKeyEvE5value * 0000000000000000 I __nm__ZZN9luabridge9ClassInfoIN6ARDOUR7SessionEE11getClassKeyEvE5value * 0000000000000000 T _ZN9luabridge9ClassInfoIN6ARDOUR7SessionEE11getClassKeyEv * * ardour.exe * 000000000104f560 d .data$_ZZN9luabridge9ClassInfoIN6ARDOUR7SessionEE11getClassKeyEvE5value * 000000000104f560 D _ZZN9luabridge9ClassInfoIN6ARDOUR7SessionEE11getClassKeyEvE5value * 0000000000e9baf0 T _ZN9luabridge9ClassInfoIN6ARDOUR7SessionEE11getClassKeyEv * * */ luabridge::push (L, s); lua_setglobal (L, "Session"); if (s) { // call lua function. luabridge::LuaRef cb_ses = luabridge::getGlobal (L, "new_session"); if (cb_ses.type() == LUA_TFUNCTION) { cb_ses(s->name()); } // TODO args } }