2007-06-29 00:02:58 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2007 Paul Davis
|
2007-06-29 02:58:07 -04:00
|
|
|
Author: Dave Robillard
|
2007-06-29 00:02:58 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <pbd/error.h>
|
|
|
|
#include "ardour/automation_event.h"
|
|
|
|
#include "ardour/automation_control.h"
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "utils.h"
|
2007-06-30 14:41:50 -04:00
|
|
|
#include "automation_controller.h"
|
|
|
|
#include "gui_thread.h"
|
2007-06-29 00:02:58 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace Gtk;
|
|
|
|
|
|
|
|
|
|
|
|
AutomationController::AutomationController(boost::shared_ptr<AutomationControl> ac, Adjustment* adj)
|
|
|
|
: BarController(*adj, *ac)
|
|
|
|
, _ignore_change(false)
|
|
|
|
, _controllable(ac)
|
|
|
|
, _adjustment(adj)
|
|
|
|
{
|
|
|
|
set_name (X_("PluginSlider")); // FIXME: get yer own name!
|
|
|
|
set_style (BarController::LeftToRight);
|
|
|
|
set_use_parent (true);
|
|
|
|
|
|
|
|
label_callback = sigc::mem_fun(this, &AutomationController::update_label);
|
|
|
|
|
|
|
|
StartGesture.connect (mem_fun(*this, &AutomationController::start_touch));
|
|
|
|
StopGesture.connect (mem_fun(*this, &AutomationController::end_touch));
|
|
|
|
|
|
|
|
_adjustment->signal_value_changed().connect (
|
|
|
|
mem_fun(*this, &AutomationController::value_adjusted));
|
|
|
|
|
|
|
|
_screen_update_connection = ARDOUR_UI::RapidScreenUpdate.connect (
|
|
|
|
mem_fun (*this, &AutomationController::display_effective_value));
|
2007-06-30 14:41:50 -04:00
|
|
|
|
|
|
|
ac->Changed.connect (mem_fun(*this, &AutomationController::value_changed));
|
2007-06-29 00:02:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
AutomationController::~AutomationController()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<AutomationController>
|
2007-07-05 22:37:35 -04:00
|
|
|
AutomationController::create(boost::shared_ptr<Automatable> parent, boost::shared_ptr<AutomationList> al, boost::shared_ptr<AutomationControl> ac)
|
2007-06-29 00:02:58 -04:00
|
|
|
{
|
|
|
|
Gtk::Adjustment* adjustment = manage(new Gtk::Adjustment(al->default_value(), al->get_min_y(), al->get_max_y()));
|
|
|
|
if (!ac) {
|
2007-07-03 14:39:09 -04:00
|
|
|
PBD::warning << "Creating AutomationController for " << al->parameter().to_string() << endmsg;
|
2007-07-05 22:37:35 -04:00
|
|
|
ac = parent->control_factory(al);
|
2007-06-29 00:02:58 -04:00
|
|
|
}
|
|
|
|
return boost::shared_ptr<AutomationController>(new AutomationController(ac, adjustment));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationController::update_label(char* label, int label_len)
|
|
|
|
{
|
2007-06-30 14:41:50 -04:00
|
|
|
if (label && label_len)
|
2007-07-02 22:37:24 -04:00
|
|
|
// Hack to display CC rounded to int
|
2007-07-03 20:39:00 -04:00
|
|
|
if (_controllable->parameter().type() == MidiCCAutomation)
|
2007-07-02 22:37:24 -04:00
|
|
|
snprintf(label, label_len, "%d", (int)_controllable->get_value());
|
|
|
|
else
|
|
|
|
snprintf(label, label_len, "%.3f", _controllable->get_value());
|
2007-06-29 00:02:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationController::display_effective_value()
|
|
|
|
{
|
2007-06-30 14:41:50 -04:00
|
|
|
//if ( ! _controllable->list()->automation_playback())
|
|
|
|
// return;
|
2007-06-29 00:02:58 -04:00
|
|
|
|
|
|
|
float value = _controllable->get_value();
|
|
|
|
|
|
|
|
if (_adjustment->get_value() != value) {
|
|
|
|
_ignore_change = true;
|
|
|
|
_adjustment->set_value (value);
|
|
|
|
_ignore_change = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationController::value_adjusted()
|
|
|
|
{
|
|
|
|
if (!_ignore_change) {
|
|
|
|
_controllable->set_value(_adjustment->get_value());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationController::start_touch()
|
|
|
|
{
|
|
|
|
_controllable->list()->start_touch();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationController::end_touch()
|
|
|
|
{
|
|
|
|
_controllable->list()->stop_touch();
|
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
AutomationController::automation_state_changed ()
|
|
|
|
{
|
|
|
|
ENSURE_GUI_THREAD(mem_fun(*this, &AutomationController::automation_state_changed));
|
|
|
|
|
|
|
|
bool x = (_controllable->list()->automation_state() != Off);
|
|
|
|
|
|
|
|
/* start watching automation so that things move */
|
|
|
|
|
|
|
|
_screen_update_connection.disconnect();
|
|
|
|
|
|
|
|
if (x) {
|
|
|
|
_screen_update_connection = ARDOUR_UI::RapidScreenUpdate.connect (
|
|
|
|
mem_fun (*this, &AutomationController::display_effective_value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationController::value_changed ()
|
|
|
|
{
|
|
|
|
Gtkmm2ext::UI::instance()->call_slot (
|
|
|
|
mem_fun(*this, &AutomationController::display_effective_value));
|
|
|
|
}
|
|
|
|
|