Add bbt_add that does not take Metric parameter.
[ardour.git] / libs / ardour / ardour / utils.h
1 /*
2     Copyright (C) 1999 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_utils_h__
21 #define __ardour_utils_h__
22
23 #ifdef WAF_BUILD
24 #include "libardour-config.h"
25 #endif
26
27 #include <iostream>
28 #include <string>
29 #include <cmath>
30
31 #if defined(HAVE_COREAUDIO) || defined(HAVE_AUDIOUNITS)
32 #include <CoreFoundation/CoreFoundation.h>
33 #endif
34
35 #include "ardour.h"
36
37 class XMLNode;
38
39 Glib::ustring legalize_for_path (Glib::ustring str);
40 XMLNode* find_named_node (const XMLNode& node, std::string name);
41 std::string bool_as_string (bool);
42 bool string_is_affirmative (const std::string&);
43
44 static inline float f_max(float x, float a) {
45         x -= a;
46         x += fabsf (x);
47         x *= 0.5f;
48         x += a;
49
50         return (x);
51 }
52
53 std::string bump_name_once(std::string s);
54
55 int cmp_nocase (const std::string& s, const std::string& s2);
56
57 int touch_file(Glib::ustring path);
58
59 Glib::ustring path_expand (Glib::ustring);
60 Glib::ustring region_name_from_path (Glib::ustring path, bool strip_channels, bool add_channel_suffix = false, uint32_t total = 0, uint32_t this_one = 0);
61 bool path_is_paired (Glib::ustring path, Glib::ustring& pair_base);
62
63 void compute_equal_power_fades (nframes_t nframes, float* in, float* out);
64
65 const char* slave_source_to_string (ARDOUR::SlaveSource src);
66 ARDOUR::SlaveSource string_to_slave_source (std::string str);
67
68 const char* edit_mode_to_string (ARDOUR::EditMode);
69 ARDOUR::EditMode string_to_edit_mode (std::string);
70
71
72 /* I don't really like hard-coding these falloff rates here
73  * Probably should use a map of some kind that could be configured
74  * These rates are db/sec.
75 */
76
77 #define METER_FALLOFF_OFF     0.0f
78 #define METER_FALLOFF_SLOWEST 6.6f // BBC standard
79 #define METER_FALLOFF_SLOW    8.6f // BBC standard
80 #define METER_FALLOFF_MEDIUM  20.0f
81 #define METER_FALLOFF_FAST    32.0f
82 #define METER_FALLOFF_FASTER  46.0f
83 #define METER_FALLOFF_FASTEST 70.0f
84
85 float meter_falloff_to_float (ARDOUR::MeterFalloff);
86 ARDOUR::MeterFalloff meter_falloff_from_float (float);
87 float meter_falloff_to_db_per_sec (float);
88
89 #if defined(HAVE_COREAUDIO) || defined(HAVE_AUDIOUNITS)
90 std::string CFStringRefToStdString(CFStringRef stringRef);
91 #endif // HAVE_COREAUDIO
92
93 #endif /* __ardour_utils_h__ */
94