2010-07-14 08:29:01 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2010 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ardour/midi_automation_list_binder.h"
|
2014-11-30 19:57:15 -05:00
|
|
|
#include "ardour/midi_region.h"
|
|
|
|
|
2014-01-06 17:02:55 -05:00
|
|
|
#include "midi++/midnam_patch.h"
|
2014-11-30 19:57:15 -05:00
|
|
|
|
2010-07-14 08:29:01 -04:00
|
|
|
#include "midi_automation_line.h"
|
2014-01-06 17:02:55 -05:00
|
|
|
#include "midi_time_axis.h"
|
|
|
|
|
|
|
|
#include "i18n.h"
|
2010-07-14 08:29:01 -04:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
MidiAutomationLine::MidiAutomationLine (
|
2010-08-04 17:50:57 -04:00
|
|
|
const std::string& name,
|
|
|
|
TimeAxisView& tav,
|
2014-06-21 11:44:22 -04:00
|
|
|
ArdourCanvas::Item& parent,
|
2010-08-04 17:50:57 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AutomationList> list,
|
|
|
|
boost::shared_ptr<ARDOUR::MidiRegion> region,
|
|
|
|
Evoral::Parameter parameter,
|
2012-03-22 12:41:23 -04:00
|
|
|
Evoral::TimeConverter<double, ARDOUR::framepos_t>* converter)
|
2014-11-02 01:29:33 -05:00
|
|
|
: AutomationLine (name, tav, parent, list, parameter, converter)
|
2014-01-06 15:32:37 -05:00
|
|
|
, _region (region)
|
|
|
|
, _parameter (parameter)
|
2010-07-14 08:29:01 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
MementoCommandBinder<ARDOUR::AutomationList>*
|
|
|
|
MidiAutomationLine::memento_command_binder ()
|
|
|
|
{
|
|
|
|
return new ARDOUR::MidiAutomationListBinder (_region->midi_source(), _parameter);
|
|
|
|
}
|
2014-01-06 17:02:55 -05:00
|
|
|
|
|
|
|
string
|
|
|
|
MidiAutomationLine::get_verbose_cursor_string (double fraction) const
|
|
|
|
{
|
|
|
|
using namespace MIDI::Name;
|
|
|
|
|
|
|
|
if (_parameter.type() != ARDOUR::MidiCCAutomation) {
|
|
|
|
return AutomationLine::get_verbose_cursor_string(fraction);
|
|
|
|
}
|
|
|
|
|
|
|
|
MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(trackview.get_parent());
|
|
|
|
if (!mtv) {
|
|
|
|
return AutomationLine::get_verbose_cursor_string(fraction);
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<MasterDeviceNames> device_names(mtv->get_device_names());
|
|
|
|
if (!device_names) {
|
|
|
|
return AutomationLine::get_verbose_cursor_string(fraction);
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& device_mode = mtv->gui_property(X_("midnam-custom-device-mode"));
|
|
|
|
const uint8_t channel = mtv->get_channel_for_add();
|
|
|
|
|
|
|
|
boost::shared_ptr<const ValueNameList> value_names = device_names->value_name_list_by_control(
|
|
|
|
device_mode, channel, _parameter.id());
|
|
|
|
if (!value_names) {
|
|
|
|
return AutomationLine::get_verbose_cursor_string(fraction);
|
|
|
|
}
|
|
|
|
|
|
|
|
const uint16_t cc_value = floor(std::max(std::min(fraction * 127.0, 127.0), 0.0));
|
|
|
|
|
|
|
|
boost::shared_ptr<const Value> value = value_names->max_value_below(cc_value);
|
|
|
|
if (!value) {
|
|
|
|
return AutomationLine::get_verbose_cursor_string(fraction);
|
|
|
|
}
|
|
|
|
|
|
|
|
return value->name();
|
|
|
|
}
|
|
|
|
|