]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/misc.hh
Issue 4847: Let intlog2 adapt to argument precision
[lilypond.git] / lily / include / misc.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2005--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef MISC_HH
21 #define MISC_HH
22
23 #include <cstdlib>
24 using namespace std;
25
26 #include "std-vector.hh"
27 #include "interval.hh"
28
29 double log_2 (double x);
30
31 /*
32   Return the 2-log, rounded down
33 */
34 template <class T>
35 int
36 intlog2 (T d)
37 {
38   if (d <= 0)
39     error ("intlog2 with negative argument: " + ::to_string (d));
40   int i = 0;
41   while ((d != 1))
42     {
43       d /= 2;
44       i++;
45     }
46
47   assert (! (d / 2));
48   return i;
49 }
50
51 inline int
52 sign (int i)
53 {
54   if (i < 0)
55     return -1;
56   else if (i)
57     return 1;
58   else return 0;
59 }
60
61 inline int
62 shift_left (int value, int shiftamount)
63 {
64   if (shiftamount < 0) return (value >> -shiftamount);
65   else return (value << shiftamount);
66 }
67
68 inline Real
69 linear_interpolate (Real x, Real x1, Real x2, Real y1, Real y2)
70 {
71   return (x2 - x) / (x2 - x1) * y1
72          + (x - x1) / (x2 - x1) * y2;
73 }
74
75 inline Real
76 normalize (Real x, Real x1, Real x2)
77 {
78   return (x - x1) / (x2 - x1);
79 }
80
81 Real directed_round (Real f, Direction d);
82
83 Real peak_around (Real epsilon, Real threshold, Real x);
84 Real convex_amplifier (Real standard_x, Real increase_factor, Real x);
85 string camel_case_to_lisp_identifier (const string &in);
86
87 #endif
88