fix configurable IO MIDI FX w/strict-i/o
[ardour.git] / libs / ardour / ardour / luaproc.h
1 /*
2     Copyright (C) 2016 Robin Gareus <robin@gareus.org>
3     Copyright (C) 2006 Paul Davis
4
5     This program is free software; you can redistribute it and/or modify it
6     under the terms of the GNU General Public License as published by the Free
7     Software Foundation; either version 2 of the License, or (at your option)
8     any later version.
9
10     This program is distributed in the hope that it will be useful, but WITHOUT
11     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13     for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __ardour_luaproc_h__
21 #define __ardour_luaproc_h__
22
23 #include <set>
24 #include <vector>
25 #include <string>
26
27 #include "pbd/reallocpool.h"
28 #include "pbd/stateful.h"
29
30 #include "ardour/types.h"
31 #include "ardour/plugin.h"
32 #include "ardour/luascripting.h"
33 #include "ardour/dsp_filter.h"
34
35 #include "lua/luastate.h"
36
37 namespace luabridge {
38         class LuaRef;
39 }
40
41 namespace ARDOUR {
42
43 class LIBARDOUR_API LuaProc : public ARDOUR::Plugin {
44 public:
45         LuaProc (AudioEngine&, Session&, const std::string&);
46         LuaProc (const LuaProc &);
47         ~LuaProc ();
48
49         /* Plugin interface */
50
51         std::string unique_id() const { return get_info()->unique_id; }
52         const char* name()  const { return get_info()->name.c_str(); }
53         const char* label() const { return get_info()->name.c_str(); }
54         const char* maker() const { return get_info()->creator.c_str(); }
55
56         uint32_t    parameter_count() const;
57         float       default_value (uint32_t port);
58         void        set_parameter (uint32_t port, float val);
59         float       get_parameter (uint32_t port) const;
60         int         get_parameter_descriptor (uint32_t which, ParameterDescriptor&) const;
61         uint32_t    nth_parameter (uint32_t port, bool& ok) const;
62
63         std::string get_docs () const { return _docs; }
64         std::string get_parameter_docs (uint32_t) const;
65
66         std::set<Evoral::Parameter> automatable() const;
67
68         void activate () { }
69         void deactivate () { }
70         void cleanup () { }
71
72         int set_block_size (pframes_t /*nframes*/) { return 0; }
73         framecnt_t  signal_latency() const { return 0; }
74
75         int connect_and_run (BufferSet& bufs,
76                         ChanMapping in, ChanMapping out,
77                         pframes_t nframes, framecnt_t offset);
78
79         std::string describe_parameter (Evoral::Parameter);
80         void        print_parameter (uint32_t, char*, uint32_t len) const;
81         boost::shared_ptr<ScalePoints> get_scale_points(uint32_t port_index) const;
82
83         bool parameter_is_audio (uint32_t) const { return false; }
84         bool parameter_is_control (uint32_t) const { return true; }
85         bool parameter_is_input (uint32_t) const;
86         bool parameter_is_output (uint32_t) const;
87
88         std::string state_node_name() const { return "luaproc"; }
89         void add_state (XMLNode *) const;
90         int set_state (const XMLNode&, int version);
91         int set_script_from_state (const XMLNode&);
92
93         bool load_preset (PresetRecord) { return false; }
94         bool has_editor() const { return false; }
95
96         bool can_support_io_configuration (const ChanCount& in, ChanCount& out, ChanCount* imprecise);
97         bool configure_io (ChanCount in, ChanCount out);
98
99         ChanCount output_streams() const { return _configured_out; }
100         ChanCount input_streams() const { return _configured_in; }
101
102         std::string do_save_preset (std::string) { return ""; }
103         void do_remove_preset (std::string) { }
104
105         bool has_inline_display () { return _lua_has_inline_display; }
106         void setup_lua_inline_gui (LuaState *lua_gui);
107
108 private:
109         void find_presets () { }
110
111         /* END Plugin interface */
112 protected:
113         const std::string& script() const { return _script; }
114
115 private:
116         PBD::ReallocPool _mempool;
117         LuaState lua;
118         luabridge::LuaRef * _lua_dsp;
119         std::string _script;
120         std::string _docs;
121         bool _lua_does_channelmapping;
122         bool _lua_has_inline_display;
123
124         void queue_draw () { QueueDraw(); /* EMIT SIGNAL */ }
125         DSP::DspShm* instance_shm () { return &lshm; }
126         DSP::DspShm lshm;
127
128         void init ();
129         bool load_script ();
130         void lua_print (std::string s);
131
132         boost::shared_ptr<ScalePoints> parse_scale_points (luabridge::LuaRef*);
133
134         std::vector<std::pair<bool, int> > _ctrl_params;
135         std::map<int, ARDOUR::ParameterDescriptor> _param_desc;
136         std::map<int, std::string> _param_doc;
137
138         float* _control_data;
139         float* _shadow_data;
140
141         ChanCount _configured_in;
142         ChanCount _configured_out;
143
144         bool _has_midi_input;
145         bool _has_midi_output;
146
147 #ifdef WITH_LUAPROC_STATS
148         int64_t _stats_avg[2];
149         int64_t _stats_max[2];
150         int64_t _stats_cnt;
151 #endif
152 };
153
154 class LIBARDOUR_API LuaPluginInfo : public PluginInfo
155 {
156   public:
157         LuaPluginInfo (LuaScriptInfoPtr lsi);
158         ~LuaPluginInfo () { };
159
160         PluginPtr load (Session& session);
161         std::vector<Plugin::PresetRecord> get_presets (bool user_only) const;
162
163         bool is_instrument () const { return _is_instrument ; }
164         bool reconfigurable_io() const { return true; }
165
166         bool _is_instrument;
167 };
168
169 typedef boost::shared_ptr<LuaPluginInfo> LuaPluginInfoPtr;
170
171 } // namespace ARDOUR
172
173 #endif // __ardour_luaproc_h__