add OSC Lua 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         boost::shared_ptr<ARDOUR::Processor> new_luaproc (ARDOUR::Session *s, const std::string&);
34
35         /**
36          * OSC is kinda special, lo_address is a void* and lo_send() has varags
37          * and typed arguments which makes it hard to bind, even lo_cpp.
38          */
39         class LuaOSCAddress {
40                 public:
41                         LuaOSCAddress (std::string uri) {
42                                 _addr = lo_address_new_from_url (uri.c_str());
43                         }
44                         ~LuaOSCAddress () { if (_addr) { lo_address_free (_addr); } }
45                         int send (lua_State *L);
46                         lo_address _addr;
47         };
48
49 } } /* namespace */
50
51 #endif // _ardour_lua_api_h_