]> git.donarmstrong.com Git - lilypond.git/blob - lily/skyline-pair.cc
Merge remote branch 'origin/master' into release/unstable
[lilypond.git] / lily / skyline-pair.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2008--2014 Han-Wen Nienhuys <hanwen@lilypond.org>
5
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 "skyline-pair.hh"
22
23 #include "international.hh"
24
25 Skyline_pair::Skyline_pair ()
26   : skylines_ (Skyline (DOWN), Skyline (UP))
27 {
28 }
29
30 Skyline_pair::Skyline_pair (vector<Box> const &boxes, Axis a)
31   : skylines_ (Skyline (boxes, a, DOWN), Skyline (boxes, a, UP))
32 {
33 }
34
35 Skyline_pair::Skyline_pair (vector<Drul_array<Offset> > const &buildings, Axis a)
36   : skylines_ (Skyline (buildings, a, DOWN), Skyline (buildings, a, UP))
37 {
38 }
39
40 Skyline_pair::Skyline_pair (vector<Skyline_pair> const &skypairs)
41   : skylines_ (Skyline (skypairs, DOWN), Skyline (skypairs, UP))
42 {
43 }
44
45 Skyline_pair::Skyline_pair (Box const &b, Axis a)
46   : skylines_ (Skyline (b, a, DOWN), Skyline (b, a, UP))
47 {
48 }
49
50 void
51 Skyline_pair::raise (Real r)
52 {
53   skylines_[UP].raise (r);
54   skylines_[DOWN].raise (r);
55 }
56
57 void
58 Skyline_pair::deholify ()
59 {
60   skylines_[UP].deholify ();
61   skylines_[DOWN].deholify ();
62 }
63
64 void
65 Skyline_pair::shift (Real r)
66 {
67   skylines_[UP].shift (r);
68   skylines_[DOWN].shift (r);
69 }
70
71 void
72 Skyline_pair::insert (Box const &b, Axis a)
73 {
74   skylines_[UP].insert (b, a);
75   skylines_[DOWN].insert (b, a);
76 }
77
78 void
79 Skyline_pair::merge (Skyline_pair const &other)
80 {
81   skylines_[UP].merge (other[UP]);
82   skylines_[DOWN].merge (other[DOWN]);
83 }
84
85 void
86 Skyline_pair::print () const
87 {
88   skylines_[UP].print ();
89   skylines_[DOWN].print ();
90 }
91
92 Real
93 Skyline_pair::left () const
94 {
95   return min (skylines_[UP].left (), skylines_[DOWN].left ());
96 }
97
98 Real
99 Skyline_pair::right () const
100 {
101   return max (skylines_[UP].right (), skylines_[DOWN].right ());
102 }
103
104 void
105 Skyline_pair::print_points () const
106 {
107   skylines_[UP].print_points ();
108   skylines_[DOWN].print_points ();
109 }
110
111 bool
112 Skyline_pair::is_empty () const
113 {
114   return skylines_[UP].is_empty ()
115          && skylines_[DOWN].is_empty ();
116 }
117
118 Skyline &
119 Skyline_pair::operator [] (Direction d)
120 {
121   return skylines_[d];
122 }
123
124 Skyline const &
125 Skyline_pair::operator [] (Direction d) const
126 {
127   return skylines_[d];
128 }
129
130 const char Skyline_pair::type_p_name_[] = "ly:skyline-pair?";
131
132
133 MAKE_SCHEME_CALLBACK (Skyline_pair, skyline, 2);
134 SCM
135 Skyline_pair::skyline (SCM smob, SCM dir_scm)
136 {
137   Skyline_pair *sp = Skyline_pair::unsmob (smob);
138   Direction dir = robust_scm2dir (dir_scm, UP);
139
140   if (dir == CENTER)
141     {
142       warning (_f ("direction must not be CENTER in ly:skyline-pair::skyline"));
143       dir = UP;
144     }
145
146   return (*sp)[dir].smobbed_copy ();
147 }