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