David Robillard
7bd41538d9
git-svn-id: svn://localhost/ardour2/branches/midi@921 d708f5d6-7413-0410-9779-e7cbd77b26cf
286 lines
6.3 KiB
C++
286 lines
6.3 KiB
C++
/*
|
|
Copyright (C) 2000-2002 Paul Davis
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
$Id$
|
|
*/
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include <cstdlib>
|
|
#include <cstdio> // so libraptor doesn't complain
|
|
#include <cmath>
|
|
#include <dirent.h>
|
|
#include <sys/stat.h>
|
|
#include <cerrno>
|
|
|
|
#include <lrdf.h>
|
|
|
|
#include <pbd/compose.h>
|
|
#include <pbd/error.h>
|
|
#include <pbd/pathscanner.h>
|
|
#include <pbd/xml++.h>
|
|
|
|
#include <ardour/ardour.h>
|
|
#include <ardour/session.h>
|
|
#include <ardour/audioengine.h>
|
|
#include <ardour/plugin.h>
|
|
#include <ardour/ladspa_plugin.h>
|
|
#include <ardour/plugin_manager.h>
|
|
|
|
#include <pbd/stl_delete.h>
|
|
|
|
#include "i18n.h"
|
|
#include <locale.h>
|
|
|
|
using namespace ARDOUR;
|
|
using namespace PBD;
|
|
|
|
Plugin::Plugin (AudioEngine& e, Session& s)
|
|
: _engine (e), _session (s)
|
|
{
|
|
}
|
|
|
|
Plugin::Plugin (const Plugin& other)
|
|
: _engine (other._engine), _session (other._session), _info (other._info)
|
|
{
|
|
}
|
|
|
|
void
|
|
Plugin::setup_controls ()
|
|
{
|
|
uint32_t port_cnt = parameter_count();
|
|
|
|
/* set up a vector of null pointers for the controls.
|
|
we'll fill this in on an as-needed basis.
|
|
*/
|
|
|
|
for (uint32_t i = 0; i < port_cnt; ++i) {
|
|
controls.push_back (0);
|
|
}
|
|
}
|
|
|
|
Plugin::~Plugin ()
|
|
{
|
|
for (vector<PortControllable*>::iterator i = controls.begin(); i != controls.end(); ++i) {
|
|
if (*i) {
|
|
delete *i;
|
|
}
|
|
}
|
|
}
|
|
|
|
Controllable *
|
|
Plugin::get_nth_control (uint32_t n)
|
|
{
|
|
if (n >= parameter_count()) {
|
|
return 0;
|
|
}
|
|
|
|
if (controls[n] == 0) {
|
|
|
|
Plugin::ParameterDescriptor desc;
|
|
|
|
get_parameter_descriptor (n, desc);
|
|
|
|
controls[n] = new PortControllable (*this, n, desc.lower, desc.upper, desc.toggled, desc.logarithmic);
|
|
}
|
|
|
|
return controls[n];
|
|
}
|
|
|
|
Plugin::PortControllable::PortControllable (Plugin& p, uint32_t port_id, float low, float up, bool t, bool loga)
|
|
: plugin (p), absolute_port (port_id)
|
|
{
|
|
toggled = t;
|
|
logarithmic = loga;
|
|
lower = low;
|
|
upper = up;
|
|
range = upper - lower;
|
|
}
|
|
|
|
void
|
|
Plugin::PortControllable::set_value (float value)
|
|
{
|
|
if (toggled) {
|
|
if (value > 0.5) {
|
|
value = 1.0;
|
|
} else {
|
|
value = 0.0;
|
|
}
|
|
} else {
|
|
|
|
if (!logarithmic) {
|
|
value = lower + (range * value);
|
|
} else {
|
|
float _lower = 0.0f;
|
|
if (lower > 0.0f) {
|
|
_lower = log(lower);
|
|
}
|
|
|
|
value = exp(_lower + log(range) * value);
|
|
}
|
|
}
|
|
|
|
plugin.set_parameter (absolute_port, value);
|
|
}
|
|
|
|
float
|
|
Plugin::PortControllable::get_value (void) const
|
|
{
|
|
float val = plugin.get_parameter (absolute_port);
|
|
|
|
if (toggled) {
|
|
|
|
return val;
|
|
|
|
} else {
|
|
|
|
if (logarithmic) {
|
|
val = log(val);
|
|
}
|
|
|
|
return ((val - lower) / range);
|
|
}
|
|
}
|
|
|
|
vector<string>
|
|
Plugin::get_presets()
|
|
{
|
|
vector<string> labels;
|
|
lrdf_uris* set_uris = lrdf_get_setting_uris(unique_id());
|
|
|
|
if (set_uris) {
|
|
for (uint32_t i = 0; i < (uint32_t) set_uris->count; ++i) {
|
|
if (char* label = lrdf_get_label(set_uris->items[i])) {
|
|
labels.push_back(label);
|
|
presets[label] = set_uris->items[i];
|
|
}
|
|
}
|
|
lrdf_free_uris(set_uris);
|
|
}
|
|
|
|
// GTK2FIX find an equivalent way to do this with a vector (needed by GUI apis)
|
|
// labels.unique();
|
|
|
|
return labels;
|
|
}
|
|
|
|
bool
|
|
Plugin::load_preset(const string preset_label)
|
|
{
|
|
lrdf_defaults* defs = lrdf_get_setting_values(presets[preset_label].c_str());
|
|
|
|
if (defs) {
|
|
for (uint32_t i = 0; i < (uint32_t) defs->count; ++i) {
|
|
// The defs->items[i].pid < defs->count check is to work around
|
|
// a bug in liblrdf that saves invalid values into the presets file.
|
|
if (((uint32_t) defs->items[i].pid < (uint32_t) defs->count) && parameter_is_input (defs->items[i].pid)) {
|
|
set_parameter(defs->items[i].pid, defs->items[i].value);
|
|
}
|
|
}
|
|
lrdf_free_setting_values(defs);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
Plugin::save_preset (string name, string domain)
|
|
{
|
|
lrdf_portvalue portvalues[parameter_count()];
|
|
lrdf_defaults defaults;
|
|
defaults.count = parameter_count();
|
|
defaults.items = portvalues;
|
|
|
|
for (uint32_t i = 0; i < parameter_count(); ++i) {
|
|
if (parameter_is_input (i)) {
|
|
portvalues[i].pid = i;
|
|
portvalues[i].value = get_parameter(i);
|
|
}
|
|
}
|
|
|
|
char* envvar;
|
|
if ((envvar = getenv ("HOME")) == 0) {
|
|
warning << _("Could not locate HOME. Preset not saved.") << endmsg;
|
|
return false;
|
|
}
|
|
|
|
string source(string_compose("file:%1/.%2/rdf/ardour-presets.n3", envvar, domain));
|
|
|
|
free(lrdf_add_preset(source.c_str(), name.c_str(), unique_id(), &defaults));
|
|
|
|
string path = string_compose("%1/.%2", envvar, domain);
|
|
if (g_mkdir_with_parents (path.c_str(), 0775)) {
|
|
warning << string_compose(_("Could not create %1. Preset not saved. (%2)"), path, strerror(errno)) << endmsg;
|
|
return false;
|
|
}
|
|
|
|
path += "/rdf";
|
|
if (g_mkdir_with_parents (path.c_str(), 0775)) {
|
|
warning << string_compose(_("Could not create %1. Preset not saved. (%2)"), path, strerror(errno)) << endmsg;
|
|
return false;
|
|
}
|
|
|
|
if (lrdf_export_by_source(source.c_str(), source.substr(5).c_str())) {
|
|
warning << string_compose(_("Error saving presets file %1."), source) << endmsg;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
PluginPtr
|
|
ARDOUR::find_plugin(Session& session, string name, long unique_id, PluginType type)
|
|
{
|
|
PluginManager *mgr = PluginManager::the_manager();
|
|
PluginInfoList plugs;
|
|
|
|
switch (type) {
|
|
case ARDOUR::LADSPA:
|
|
plugs = mgr->ladspa_plugin_info();
|
|
break;
|
|
|
|
#ifdef VST_SUPPORT
|
|
case ARDOUR::VST:
|
|
plugs = mgr->vst_plugin_info();
|
|
unique_id = 0; // VST plugins don't have a unique id.
|
|
break;
|
|
#endif
|
|
|
|
#ifdef HAVE_AUDIOUNITS
|
|
case ARDOUR::AudioUnit:
|
|
plugs = AUPluginInfo::discover ();
|
|
unique_id = 0; // Neither do AU.
|
|
break;
|
|
#endif
|
|
|
|
default:
|
|
return PluginPtr ((Plugin *) 0);
|
|
}
|
|
|
|
PluginInfoList::iterator i;
|
|
for (i = plugs.begin(); i != plugs.end(); ++i) {
|
|
if ((name == "" || (*i)->name == name) &&
|
|
(unique_id == 0 || (*i)->unique_id == unique_id)) {
|
|
return (*i)->load (session);
|
|
}
|
|
}
|
|
|
|
return PluginPtr ((Plugin*) 0);
|
|
}
|
|
|