]> git.donarmstrong.com Git - lilypond.git/blob - lily/misc.cc
Run grand replace for 2015.
[lilypond.git] / lily / misc.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5   Jan Nieuwenhuizen <janneke@gnu.org>
6
7   LilyPond is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   LilyPond is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include <complex>
22
23 #include "misc.hh"
24 #include "offset.hh"
25 #include "warn.hh"
26
27 /*
28   Return the 2-log, rounded down
29 */
30 int
31 intlog2 (int d)
32 {
33   if (d <= 0)
34     error ("intlog2 with negative argument: " + ::to_string (d));
35   int i = 0;
36   while ((d != 1))
37     {
38       d /= 2;
39       i++;
40     }
41
42   assert (! (d / 2));
43   return i;
44 }
45
46 double
47 log_2 (double x)
48 {
49   return log (x) / log (2.0);
50 }
51
52 Real
53 directed_round (Real f, Direction d)
54 {
55   if (d < 0)
56     return floor (f);
57   else
58     return ceil (f);
59 }
60
61 /*
62    0 at threshold,  1 at 0, with 1/x falloff.
63  */
64 Real
65 peak_around (Real epsilon, Real threshold, Real x)
66 {
67   if (x < 0)
68     return 1.0;
69   return max (- epsilon * (x - threshold) / ((x + epsilon) * threshold), 0.0);
70 }
71
72 /*
73   0 at 0,  1 at standard_x, and increasing thereafter.
74  */
75 Real
76 convex_amplifier (Real standard_x, Real increase_factor, Real x)
77 {
78   return (exp (increase_factor * x / standard_x) - 1.0) / (exp (increase_factor) - 1.0);
79 }
80
81 string
82 camel_case_to_lisp_identifier (const string &in)
83 {
84   vector<char> out;
85
86   /* don't add '-' before first character */
87   out.push_back (char (tolower (in[0])));
88
89   for (size_t inpos = 1; inpos < in.size (); inpos++)
90     {
91       if (isupper (in[inpos]))
92         out.push_back ('-');
93       out.push_back ( char (tolower (in[inpos])));
94     }
95
96   string result (&out[0], out.size ());
97   replace_all (&result, '_', '-');
98
99   return result;
100 }
101
102 Offset
103 get_point_in_y_direction (Offset orig, Real slope, Real dist, Direction dir)
104 {
105   if (slope == infinity_f)
106     return orig + Offset (dir * dist, 0.0);
107
108   Real x = slope == 0.0 ? 1.0 * dir : 1.0 * sign (slope) * dir;
109   Real y = slope * x;
110   Real angle = atan2 (y, x);
111
112   complex<Real> orig_c (orig[X_AXIS], orig[Y_AXIS]);
113   complex<Real> to_move = polar (dist, angle);
114   complex<Real> res = orig_c + to_move;
115
116   return Offset (real (res), imag (res));
117 }