prepare sharing C++ class instances across lua-interpreters
[ardour.git] / libs / ardour / ardour / lua_api.h
1 /*
2  * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  *
18  */
19 #ifndef _ardour_lua_api_h_
20 #define _ardour_lua_api_h_
21
22 #include <string>
23 #include <lo/lo.h>
24 #include <boost/shared_ptr.hpp>
25
26 #include "ardour/libardour_visibility.h"
27
28 #include "ardour/processor.h"
29 #include "ardour/session.h"
30
31 namespace ARDOUR { namespace LuaAPI {
32
33         /** convenience constructor for DataType::NIL with managed lifetime
34          * @returns DataType::NIL
35          */
36         int datatype_ctor_null (lua_State *lua);
37         /** convenience constructor for DataType::AUDIO with managed lifetime
38          * @returns DataType::AUDIO
39          */
40         int datatype_ctor_audio (lua_State *L);
41         /** convenience constructor for DataType::MIDI with managed lifetime
42          * @returns DataType::MIDI
43          */
44         int datatype_ctor_midi (lua_State *L);
45
46         /** Create a null processor shared pointer
47          *
48          * This is useful for Track:bounce() to indicate no processing.
49          */
50         boost::shared_ptr<ARDOUR::Processor> nil_processor ();
51
52         /** create a new Lua Processor (Plugin)
53          *
54          * @param s Session Handle
55          * @param p Identifier or Name of the Processor
56          * @returns Processor object (may be nil)
57          */
58         boost::shared_ptr<ARDOUR::Processor> new_luaproc (ARDOUR::Session *s, const std::string& p);
59
60         /** search a Plugin
61          *
62          * @param id Plugin Name, ID or URI
63          * @param type Plugin Type
64          * @returns PluginInfo or nil if not found
65          */
66         boost::shared_ptr<ARDOUR::PluginInfo> new_plugin_info (const std::string& id, ARDOUR::PluginType type);
67
68         /** create a new Plugin Instance
69          *
70          * @param s Session Handle
71          * @param id Plugin Name, ID or URI
72          * @param type Plugin Type
73          * @returns Processor or nil
74          */
75         boost::shared_ptr<ARDOUR::Processor> new_plugin (ARDOUR::Session *s, const std::string& id, ARDOUR::PluginType type, const std::string& preset = "");
76
77         /** set a plugin control-input parameter value
78          *
79          * @param proc Plugin-Processor
80          * @param which control-input to set (starting at 0)
81          * @param value value to set
82          * @returns true on success, false on error or out-of-bounds value
83          */
84         bool set_processor_param (boost::shared_ptr<ARDOUR::Processor> proc, uint32_t which, float val);
85         /** set a plugin control-input parameter value
86          *
87          * This is a wrapper around set_processor_param which looks up the Processor by plugin-insert.
88          *
89          * @param proc Plugin-Insert
90          * @param which control-input to set (starting at 0)
91          * @param value value to set
92          * @returns true on success, false on error or out-of-bounds value
93          */
94         bool set_plugin_insert_param (boost::shared_ptr<ARDOUR::PluginInsert> pi, uint32_t which, float val);
95
96         /**
97          * A convenience function to get a Automation Lists and ParamaterDescriptor
98          * for a given plugin control.
99          *
100          * This is equivalent to the following lua code
101          * @code
102          * function (processor, param_id)
103          *  local plugininsert = processor:to_insert ()
104          *  local plugin = plugininsert:plugin(0)
105          *  local _, t = plugin:get_parameter_descriptor(param_id, ARDOUR.ParameterDescriptor ())
106          *  local ctrl = Evoral.Parameter (ARDOUR.AutomationType.PluginAutomation, 0, param_id)
107          *  local ac = pi:automation_control (ctrl, false)
108          *  local acl = ac:alist()
109          *  return ac:alist(), ac:to_ctrl():list(), t[2]
110          * end
111          * @endcode
112          *
113          * Example usage: get the third input parameter of first plugin on the given route
114          * (Ardour starts counting at zero).
115          * @code
116          * local al, cl, pd = ARDOUR.LuaAPI.plugin_automation (route:nth_plugin (0), 3)
117          * @endcode
118          * @returns 3 parameters: AutomationList, ControlList, ParamaterDescriptor
119          */
120         int plugin_automation (lua_State *lua);
121
122         /**
123          * A convenience function for colorspace HSL to RGB conversion.
124          * All ranges are 0..1
125          *
126          * Example:
127          * @code
128          * local r, g, b, a = ARDOUR.LuaAPI.hsla_to_rgba (hue, saturation, luminosity, alpha)
129          * @endcode
130          * @returns 4 parameters: red, green, blue, alpha (in range 0..1)
131          */
132         int hsla_to_rgba (lua_State *lua);
133 } } /* namespace */
134
135 namespace ARDOUR { namespace LuaOSC {
136         /** OSC transmitter
137          *
138          * A Class to send OSC messages.
139          */
140         class Address {
141                 /*
142                  * OSC is kinda special, lo_address is a void* and lo_send() has varags
143                  * and typed arguments which makes it hard to bind, even lo_cpp.
144                  */
145                 public:
146                         /** Construct a new OSC transmitter object
147                          * @param uri the destination uri e.g. "osc.udp://localhost:7890"
148                          */
149                         Address (std::string uri) {
150                                 _addr = lo_address_new_from_url (uri.c_str());
151                         }
152
153                         ~Address () { if (_addr) { lo_address_free (_addr); } }
154                         /** Transmit an OSC message
155                          *
156                          * Path (string) and type (string) must always be given.
157                          * The number of following args must match the type.
158                          * Supported types are:
159                          *
160                          *  'i': integer (lua number)
161                          *
162                          *  'f': float (lua number)
163                          *
164                          *  'd': double (lua number)
165                          *
166                          *  'h': 64bit integer (lua number)
167                          *
168                          *  's': string (lua string)
169                          *
170                          *  'c': character (lua string)
171                          *
172                          *  'T': boolean (lua bool) -- this is not implicily True, a lua true/false must be given
173                          *
174                          *  'F': boolean (lua bool) -- this is not implicily False, a lua true/false must be given
175                          *
176                          * @param lua: lua arguments: path, types, ...
177                          * @returns boolean true if successful, false on error.
178                          */
179                         int send (lua_State *lua);
180                 private:
181                         lo_address _addr;
182         };
183
184 }
185
186 class LuaTableRef {
187         public:
188                 LuaTableRef ();
189                 ~LuaTableRef ();
190
191                 int get (lua_State* L);
192                 int set (lua_State* L);
193
194         private:
195                 struct LuaTableEntry {
196                         LuaTableEntry (int kt, int vt)
197                                 : keytype (kt)
198                                 , valuetype (vt)
199                         { }
200
201                         int keytype;
202                         std::string k_s;
203                         unsigned int k_n;
204
205                         int valuetype;
206                         // LUA_TUSERDATA
207                         const void* c;
208                         void* p;
209                         // LUA_TBOOLEAN
210                         bool b;
211                         // LUA_TSTRING:
212                         std::string s;
213                         // LUA_TNUMBER:
214                         double n;
215                 };
216
217                 std::vector<LuaTableEntry> _data;
218
219                 static void* findclasskey (lua_State *L, const void* key);
220                 template<typename T>
221                 static void assign (luabridge::LuaRef* rv, T key, const LuaTableEntry& s);
222 };
223
224 } /* namespace */
225
226 #endif // _ardour_lua_api_h_