Paul Davis
9e3299f97d
This also removes Route::group_gain_control() and associated machinery. Not yet tested with Mackie or other surfaces. More work to done to start using the group capabilities, and also potentially to add or derive more controls as RouteAutomationControls
127 lines
2.7 KiB
C++
127 lines
2.7 KiB
C++
/*
|
|
Copyright (C) 2006,2007 John Anderson
|
|
|
|
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 <iostream>
|
|
#include <iomanip>
|
|
#include <sstream>
|
|
|
|
#include "ardour/automation_control.h"
|
|
|
|
#include "controls.h"
|
|
#include "types.h"
|
|
#include "surface.h"
|
|
#include "control_group.h"
|
|
#include "button.h"
|
|
#include "led.h"
|
|
#include "pot.h"
|
|
#include "fader.h"
|
|
#include "jog.h"
|
|
#include "meter.h"
|
|
|
|
|
|
using namespace std;
|
|
using namespace ArdourSurface;
|
|
using namespace Mackie;
|
|
|
|
using ARDOUR::AutomationControl;
|
|
|
|
void Group::add (Control& control)
|
|
{
|
|
_controls.push_back (&control);
|
|
}
|
|
|
|
Control::Control (int id, std::string name, Group & group)
|
|
: _id (id)
|
|
, _name (name)
|
|
, _group (group)
|
|
, _in_use (false)
|
|
{
|
|
}
|
|
|
|
/** @return true if the control is in use, or false otherwise.
|
|
Buttons are `in use' when they are held down.
|
|
Faders with touch support are `in use' when they are being touched.
|
|
Pots, or faders without touch support, are `in use' from the first move
|
|
event until a timeout after the last move event.
|
|
*/
|
|
bool
|
|
Control::in_use () const
|
|
{
|
|
return _in_use;
|
|
}
|
|
|
|
void
|
|
Control::set_in_use (bool in_use)
|
|
{
|
|
_in_use = in_use;
|
|
}
|
|
|
|
void
|
|
Control::set_control (boost::shared_ptr<AutomationControl> ac)
|
|
{
|
|
normal_ac = ac;
|
|
}
|
|
|
|
void
|
|
Control::set_value (float val)
|
|
{
|
|
if (normal_ac) {
|
|
normal_ac->set_value (normal_ac->interface_to_internal (val), PBD::Controllable::NoGroup);
|
|
}
|
|
}
|
|
|
|
float
|
|
Control::get_value ()
|
|
{
|
|
if (!normal_ac) {
|
|
return 0.0f;
|
|
}
|
|
return normal_ac->internal_to_interface (normal_ac->get_value());
|
|
}
|
|
|
|
void
|
|
Control::start_touch (double when)
|
|
{
|
|
if (normal_ac) {
|
|
return normal_ac->start_touch (when);
|
|
}
|
|
}
|
|
|
|
void
|
|
Control::stop_touch (bool mark, double when)
|
|
{
|
|
if (normal_ac) {
|
|
return normal_ac->stop_touch (mark, when);
|
|
}
|
|
}
|
|
|
|
ostream & operator << (ostream & os, const ArdourSurface::Mackie::Control & control)
|
|
{
|
|
os << typeid (control).name();
|
|
os << " { ";
|
|
os << "name: " << control.name();
|
|
os << ", ";
|
|
os << "id: " << "0x" << setw(2) << setfill('0') << hex << control.id() << setfill(' ');
|
|
os << ", ";
|
|
os << "group: " << control.group().name();
|
|
os << " }";
|
|
|
|
return os;
|
|
}
|
|
|