summaryrefslogtreecommitdiff
path: root/gtk2_ardour/midi_automation_line.cc
blob: 73620abf2acd0bdfdd39ceffc002c44434d73909 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * Copyright (C) 2010-2012 Carl Hetherington <carl@carlh.net>
 * Copyright (C) 2010-2014 David Robillard <d@drobilla.net>
 * Copyright (C) 2010-2017 Paul Davis <paul@linuxaudiosystems.com>
 * Copyright (C) 2013-2019 Robin Gareus <robin@gareus.org>
 *
 * 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.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "ardour/midi_automation_list_binder.h"
#include "ardour/midi_region.h"

#include "midi++/midnam_patch.h"

#include "midi_automation_line.h"
#include "midi_time_axis.h"

#include "pbd/i18n.h"

using namespace std;

MidiAutomationLine::MidiAutomationLine (
	const std::string&                                      name,
	TimeAxisView&                                           tav,
	ArdourCanvas::Item&                                     parent,
	boost::shared_ptr<ARDOUR::AutomationList>               list,
	boost::shared_ptr<ARDOUR::MidiRegion>                   region,
	Evoral::Parameter                                       parameter,
	Evoral::TimeConverter<double, ARDOUR::samplepos_t>*     converter)
	: AutomationLine (name, tav, parent, list, parameter, converter)
	, _region (region)
	, _parameter (parameter)
{

}

MementoCommandBinder<ARDOUR::AutomationList>*
MidiAutomationLine::memento_command_binder ()
{
	return new ARDOUR::MidiAutomationListBinder (_region->midi_source(), _parameter);
}

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);
	}

	const uint8_t channel = mtv->get_channel_for_add();
	boost::shared_ptr<const ValueNameList> value_names = mtv->route()->instrument_info().value_name_list_by_control (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();
}