update lua related doc, add missing bindings
[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 contructor for DataType::NIL
34          * @returns DataType::NIL
35          */
36         int datatype_ctor_null (lua_State *lua);
37         /** convenience contructor for DataType::AUDIO
38          * @returns DataType::AUDIO
39          */
40         int datatype_ctor_audio (lua_State *L);
41         /** convenience contructor for DataType::MIDI
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 3rd 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 } } /* namespace */
122
123 namespace ARDOUR { namespace LuaOSC {
124         /** OSC transmitter
125          *
126          * A Class to send OSC messages.
127          */
128         class Address {
129                 /*
130                  * OSC is kinda special, lo_address is a void* and lo_send() has varags
131                  * and typed arguments which makes it hard to bind, even lo_cpp.
132                  */
133                 public:
134                         /** Construct a new OSC transmitter object
135                          * @param uri the destination uri e.g. "osc.udp://localhost:7890"
136                          */
137                         Address (std::string uri) {
138                                 _addr = lo_address_new_from_url (uri.c_str());
139                         }
140
141                         ~Address () { if (_addr) { lo_address_free (_addr); } }
142                         /** Transmit an OSC message
143                          *
144                          * Path (string) and type (string) must always be given.
145                          * The number of following args must match the type.
146                          * Supported types are:
147                          *
148                          *  'i': integer (lua number)
149                          *
150                          *  'f': float (lua number)
151                          *
152                          *  'd': double (lua number)
153                          *
154                          *  'h': 64bit integer (lua number)
155                          *
156                          *  's': string (lua string)
157                          *
158                          *  'c': character (lua string)
159                          *
160                          *  'T': boolean (lua bool) -- this is not implicily True, a lua true/false must be given
161                          *
162                          *  'F': boolean (lua bool) -- this is not implicily False, a lua true/false must be given
163                          *
164                          * @param lua: lua arguments: path, types, ...
165                          * @returns boolean true if successful, false on error.
166                          */
167                         int send (lua_State *lua);
168                 private:
169                         lo_address _addr;
170         };
171
172 } } /* namespace */
173
174 #endif // _ardour_lua_api_h_