]> git.donarmstrong.com Git - lilypond.git/blob - lily/misc.cc
Issue 4550 (1/2) Avoid "using namespace std;" in included files
[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 "misc.hh"
22 #include "offset.hh"
23 #include "warn.hh"
24
25 using std::string;
26 using std::vector;
27
28 /*
29   Return the 2-log, rounded down
30 */
31 int
32 intlog2 (int d)
33 {
34   if (d <= 0)
35     error ("intlog2 with negative argument: " + ::to_string (d));
36   int i = 0;
37   while ((d != 1))
38     {
39       d /= 2;
40       i++;
41     }
42
43   assert (! (d / 2));
44   return i;
45 }
46
47 double
48 log_2 (double x)
49 {
50   return log (x) / log (2.0);
51 }
52
53 Real
54 directed_round (Real f, Direction d)
55 {
56   if (d < 0)
57     return floor (f);
58   else
59     return ceil (f);
60 }
61
62 /*
63    0 at threshold,  1 at 0, with 1/x falloff.
64  */
65 Real
66 peak_around (Real epsilon, Real threshold, Real x)
67 {
68   if (x < 0)
69     return 1.0;
70   return max (- epsilon * (x - threshold) / ((x + epsilon) * threshold), 0.0);
71 }
72
73 /*
74   0 at 0,  1 at standard_x, and increasing thereafter.
75  */
76 Real
77 convex_amplifier (Real standard_x, Real increase_factor, Real x)
78 {
79   return (exp (increase_factor * x / standard_x) - 1.0) / (exp (increase_factor) - 1.0);
80 }
81
82 string
83 camel_case_to_lisp_identifier (const string &in)
84 {
85   vector<char> out;
86
87   /* don't add '-' before first character */
88   out.push_back (char (tolower (in[0])));
89
90   for (size_t inpos = 1; inpos < in.size (); inpos++)
91     {
92       if (isupper (in[inpos]))
93         out.push_back ('-');
94       out.push_back ( char (tolower (in[inpos])));
95     }
96
97   string result (&out[0], out.size ());
98   replace_all (&result, '_', '-');
99
100   return result;
101 }