4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef PLUGINLV2CONFIG_H
23 #define PLUGINLV2CONFIG_H
25 #include "arraylist.h"
29 #include "pluginaclient.h"
30 #include "pluginlv2.inc"
31 #include "pluginlv2config.inc"
32 #include "samples.inc"
35 #include <lilv/lilv.h>
36 #include <suil/suil.h>
38 #define NS_UI "http://lv2plug.in/ns/extensions/ui#"
39 #include <lv2/lv2plug.in/ns/extensions/ui/ui.h>
40 #include <lv2/lv2plug.in/ns/ext/atom/atom.h>
41 #include <lv2/lv2plug.in/ns/ext/urid/urid.h>
42 #include <lv2/lv2plug.in/ns/ext/state/state.h>
43 #include <lv2/lv2plug.in/ns/ext/worker/worker.h>
44 #include <lv2/lv2plug.in/ns/ext/log/log.h>
45 #include <lv2/lv2plug.in/ns/ext/options/options.h>
46 #include <lv2/lv2plug.in/ns/ext/parameters/parameters.h>
47 #include <lv2/lv2plug.in/ns/ext/buf-size/buf-size.h>
48 #include <lv2/lv2plug.in/ns/ext/uri-map/uri-map.h>
49 #include <lv2/lv2plug.in/ns/ext/data-access/data-access.h>
52 class Lv2Feature : public LV2_Feature
55 Lv2Feature(const char *uri, void *dp) {
56 this->URI = cstrdup(uri); this->data = dp;
58 ~Lv2Feature() { delete [] URI; }
60 class Lv2Features : public ArrayList<Lv2Feature *>
64 ~Lv2Features() { remove_all_objects(); }
65 operator LV2_Feature **() { return (LV2_Feature **)&values[0]; }
68 class PluginLV2UriTable : public ArrayList<const char *>, public Mutex
73 LV2_URID map(const char *uri);
74 const char *unmap(LV2_URID urid);
75 operator LV2_URID_Map_Handle() { return (LV2_URID_Map_Handle)this; }
80 class PluginLV2Client_OptName : public BC_ListBoxItem
83 PluginLV2Client_Opt *opt;
84 PluginLV2Client_OptName(PluginLV2Client_Opt *opt);
87 class PluginLV2Client_OptValue : public BC_ListBoxItem
90 PluginLV2Client_Opt *opt;
91 PluginLV2Client_OptValue(PluginLV2Client_Opt *opt);
95 class PluginLV2Client_Opt
100 PluginLV2ClientConfig *conf;
101 PluginLV2Client_OptName *item_name;
102 PluginLV2Client_OptValue *item_value;
104 const char *get_symbol();
105 void set_value(float v);
107 const char *get_name();
109 PluginLV2Client_Opt(PluginLV2ClientConfig *conf, int idx);
110 ~PluginLV2Client_Opt();
114 class PluginLV2ClientConfig : public ArrayList<PluginLV2Client_Opt *>
117 PluginLV2ClientConfig();
118 ~PluginLV2ClientConfig();
120 int equivalent(PluginLV2ClientConfig &that);
121 void copy_from(PluginLV2ClientConfig &that);
122 void interpolate(PluginLV2ClientConfig &prev, PluginLV2ClientConfig &next,
123 int64_t prev_frame, int64_t next_frame, int64_t current_frame);
125 void init_lv2(const LilvPlugin *lilv, PluginLV2 *lv2);
129 int nb_ports, *ports;
130 const char **names, **syms;
131 float *mins, *maxs, *ctls;