Add a Lua wrapper to Glib::build_filename()
[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
134         /* Creates a filename from a series of elements using the correct separator for filenames.
135          *
136          * No attempt is made to force the resulting filename to be an absolute path.
137          * If the first element is a relative path, the result will be a relative path.
138          */
139         int build_filename (lua_State *lua);
140
141 } } /* namespace */
142
143 namespace ARDOUR { namespace LuaOSC {
144         /** OSC transmitter
145          *
146          * A Class to send OSC messages.
147          */
148         class Address {
149                 /*
150                  * OSC is kinda special, lo_address is a void* and lo_send() has varags
151                  * and typed arguments which makes it hard to bind, even lo_cpp.
152                  */
153                 public:
154                         /** Construct a new OSC transmitter object
155                          * @param uri the destination uri e.g. "osc.udp://localhost:7890"
156                          */
157                         Address (std::string uri) {
158                                 _addr = lo_address_new_from_url (uri.c_str());
159                         }
160
161                         ~Address () { if (_addr) { lo_address_free (_addr); } }
162                         /** Transmit an OSC message
163                          *
164                          * Path (string) and type (string) must always be given.
165                          * The number of following args must match the type.
166                          * Supported types are:
167                          *
168                          *  'i': integer (lua number)
169                          *
170                          *  'f': float (lua number)
171                          *
172                          *  'd': double (lua number)
173                          *
174                          *  'h': 64bit integer (lua number)
175                          *
176                          *  's': string (lua string)
177                          *
178                          *  'c': character (lua string)
179                          *
180                          *  'T': boolean (lua bool) -- this is not implicily True, a lua true/false must be given
181                          *
182                          *  'F': boolean (lua bool) -- this is not implicily False, a lua true/false must be given
183                          *
184                          * @param lua: lua arguments: path, types, ...
185                          * @returns boolean true if successful, false on error.
186                          */
187                         int send (lua_State *lua);
188                 private:
189                         lo_address _addr;
190         };
191
192 }
193
194 class LuaTableRef {
195         public:
196                 LuaTableRef ();
197                 ~LuaTableRef ();
198
199                 int get (lua_State* L);
200                 int set (lua_State* L);
201
202         private:
203                 struct LuaTableEntry {
204                         LuaTableEntry (int kt, int vt)
205                                 : keytype (kt)
206                                 , valuetype (vt)
207                         { }
208
209                         int keytype;
210                         std::string k_s;
211                         unsigned int k_n;
212
213                         int valuetype;
214                         // LUA_TUSERDATA
215                         const void* c;
216                         void* p;
217                         // LUA_TBOOLEAN
218                         bool b;
219                         // LUA_TSTRING:
220                         std::string s;
221                         // LUA_TNUMBER:
222                         double n;
223                 };
224
225                 std::vector<LuaTableEntry> _data;
226
227                 static void* findclasskey (lua_State *L, const void* key);
228                 template<typename T>
229                 static void assign (luabridge::LuaRef* rv, T key, const LuaTableEntry& s);
230 };
231
232 } /* namespace */
233
234 #endif // _ardour_lua_api_h_