Display gain and midiNote plugin parameters/properties nicely.
[ardour.git] / libs / ardour / ardour / value_as_string.h
1 /*
2     Copyright (C) 2014 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_value_as_string_h__
22 #define __ardour_value_as_string_h__
23
24 #include <stddef.h>
25
26 #include "ardour/parameter_descriptor.h"
27
28 namespace ARDOUR {
29
30 inline std::string
31 value_as_string(const ARDOUR::ParameterDescriptor& desc,
32                 double                             v)
33 {
34         char buf[32];
35
36         if (desc.scale_points) {
37                 // Check if value is on a scale point
38                 for (ARDOUR::ScalePoints::const_iterator i = desc.scale_points->begin();
39                      i != desc.scale_points->end();
40                      ++i) {
41                         if (i->second == v) {
42                                 return i->first;  // Found it, return scale point label
43                         }
44                 }
45         }
46
47         // Value is not a scale point, print it normally
48         if (desc.unit == ARDOUR::ParameterDescriptor::MIDI_NOTE) {
49                 if (v >= 0 && v <= 127) {
50                         const int         num          = rint(v);
51                         static const char names[12][3] = {
52                                 "C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B"
53                         };
54                         snprintf(buf, sizeof(buf), "%s %d", names[num % 12], (num / 12) - 2);
55                 } else {
56                         // Odd, invalid range, just print the number
57                         snprintf(buf, sizeof(buf), "%.0f", v);
58                 }
59         } else if (desc.integer_step) {
60                 snprintf(buf, sizeof(buf), "%d", (int)v);
61         } else {
62                 snprintf(buf, sizeof(buf), "%.2f", v);
63         }
64         if (desc.unit == ARDOUR::ParameterDescriptor::DB) {
65                 // TODO: Move proper dB printing from AutomationLine here
66                 return std::string(buf) + " dB";
67         }
68         return buf;
69 }
70
71 inline std::string
72 value_as_string(const ARDOUR::ParameterDescriptor& desc,
73                 const ARDOUR::Variant&             val)
74 {
75         // Only numeric support, for now
76         return value_as_string(desc, val.to_double());
77 }
78
79 }  // namespace ARDOUR
80
81 #endif /* __ardour_value_as_string_h__ */