add some convenience lua functions for plugin management
[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         boost::shared_ptr<ARDOUR::Processor> new_luaproc (ARDOUR::Session *s, const std::string&);
34         boost::shared_ptr<ARDOUR::Processor> new_plugin (ARDOUR::Session *s, const std::string&, ARDOUR::PluginType, const std::string& preset = "");
35         bool set_processor_param (boost::shared_ptr<Processor> proc, uint32_t which, float val);
36         bool set_plugin_insert_param (boost::shared_ptr<PluginInsert> pi, uint32_t which, float val);
37
38         /**
39          * OSC is kinda special, lo_address is a void* and lo_send() has varags
40          * and typed arguments which makes it hard to bind, even lo_cpp.
41          */
42         class LuaOSCAddress {
43                 public:
44                         LuaOSCAddress (std::string uri) {
45                                 _addr = lo_address_new_from_url (uri.c_str());
46                         }
47                         ~LuaOSCAddress () { if (_addr) { lo_address_free (_addr); } }
48                         int send (lua_State *L);
49                         lo_address _addr;
50         };
51
52 } } /* namespace */
53
54 #endif // _ardour_lua_api_h_