rationale pathways that add notes to Sequence<T> so that there is only final insertio...
[ardour.git] / libs / evoral / evoral / MIDIParameters.hpp
1 /* This file is part of Evoral.
2  * Copyright (C) 2008 Dave Robillard <http://drobilla.net>
3  * Copyright (C) 2000-2008 Paul Davis
4  *
5  * Evoral is free software; you can redistribute it and/or modify it under the
6  * terms of the GNU General Public License as published by the Free Software
7  * Foundation; either version 2 of the License, or (at your option) any later
8  * version.
9  *
10  * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY
11  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #ifndef EVORAL_MIDI_PARAMETERS_HPP
20 #define EVORAL_MIDI_PARAMETERS_HPP
21
22 namespace Evoral {
23 namespace MIDI {
24
25 struct ContinuousController : public Parameter {
26         ContinuousController(uint32_t cc_type, uint8_t channel, uint32_t controller)
27                 : Parameter(cc_type, channel, controller) {}
28 };
29
30 struct ProgramChange : public Parameter {
31         ProgramChange(uint32_t pc_type, uint8_t channel) : Parameter(pc_type, channel, 0) {}
32 };
33
34 struct ChannelPressure : public Parameter {
35         ChannelPressure(uint32_t ca_type, uint32_t channel) : Parameter(ca_type, channel, 0) {}
36 };
37
38 struct PitchBender : public Parameter {
39         PitchBender(uint32_t pb_type, uint32_t channel) : Parameter(pb_type, channel, 0) {}
40 };
41
42 inline static void controller_range(double& min, double& max, double& normal) {
43         min = 0.0;
44         normal = 0.0;
45         max = 127.0;
46 }
47
48 inline static void bender_range(double& min, double& max, double& normal) {
49         min = 0.0;
50         normal = 8192.0;
51         max = 16383.0;
52 }
53
54 } // namespace MIDI
55 } // namespace Evoral
56
57 #endif // EVORAL_MIDI_PARAMETERS_HPP