]> git.donarmstrong.com Git - lilypond.git/blob - lily/bar.cc
release: 1.3.89
[lilypond.git] / lily / bar.cc
1 /*
2   bar.cc -- implement Bar
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8 #include <math.h>
9
10 #include "main.hh"
11 #include "dimensions.hh"
12 #include "score-element.hh"
13 #include "bar.hh"
14 #include "string.hh"
15 #include "molecule.hh"
16 #include "paper-def.hh"
17 #include "lookup.hh"
18 #include "debug.hh"
19 #include "all-font-metrics.hh"
20 #include "item.hh"
21 #include "staff-symbol-referencer.hh"
22
23 MAKE_SCHEME_CALLBACK(Bar,brew_molecule);
24
25 SCM 
26 Bar::brew_molecule (SCM smob) 
27 {
28   Score_element * me = unsmob_element (smob);
29
30   SCM s = me->get_elt_property ("glyph");
31   SCM barsiz_proc = me->get_elt_property ("barsize-procedure");
32   if (gh_string_p (s) && gh_procedure_p (barsiz_proc))
33     {
34       String str  =ly_scm2string (s);
35       SCM siz = gh_call1 (barsiz_proc, me->self_scm ());
36       Real sz =  gh_scm2double (siz);
37       if (sz < 0)
38         return SCM_EOL;
39       
40       return compound_barline (me, str, sz).create_scheme ();
41     }
42   return SCM_EOL;
43 }
44
45
46 Molecule
47 Bar::compound_barline (Score_element*me, String str, Real h)
48 {
49   Real kern = gh_scm2double (me->get_elt_property ("kern"));
50   Real thinkern = gh_scm2double (me->get_elt_property ("thin-kern"));
51   Real hair = gh_scm2double (me->get_elt_property ("hair-thickness"));
52   Real fatline = gh_scm2double (me->get_elt_property ("thick-thickness"));
53
54   Real staffline = me->paper_l ()->get_var ("stafflinethickness");
55
56   kern *= staffline;
57   thinkern *= staffline;
58   hair *= staffline;
59   fatline *= staffline;
60   
61   Molecule thin = simple_barline (me, hair, h);
62   Molecule thick = simple_barline (me, fatline, h);
63   Molecule colon = me->lookup_l ()->afm_find ("dots-repeatcolon");  
64
65   Molecule m;
66   
67   if (str == "")
68     {
69       return me->lookup_l ()->blank (Box (Interval(0, 0), Interval (-h/2, h/2)));
70     }
71   else if (str == "|")
72     {
73       return thin;
74     }
75   else if (str == "|.")
76     {
77       m.add_at_edge (X_AXIS, LEFT, thick, 0);      
78       m.add_at_edge (X_AXIS, LEFT, thin, kern);
79     }
80   else if (str == ".|")
81     {
82       m.add_at_edge (X_AXIS, RIGHT, thick, 0);
83       m.add_at_edge (X_AXIS, RIGHT, thin, kern);
84     }
85   else if (str == ":|")
86     {
87       m.add_at_edge (X_AXIS, LEFT, thick, 0);
88       m.add_at_edge (X_AXIS, LEFT, thin, kern);
89       m.add_at_edge (X_AXIS, LEFT, colon, kern);      
90     }
91   else if (str == "|:")
92     {
93       m.add_at_edge (X_AXIS, RIGHT, thick, 0);
94       m.add_at_edge (X_AXIS, RIGHT, thin, kern);
95       m.add_at_edge (X_AXIS, RIGHT, colon, kern);      
96     }
97   else if (str == ":|:")
98     {
99       m.add_at_edge (X_AXIS, LEFT, thick, thinkern);
100       m.add_at_edge (X_AXIS, LEFT, colon, kern);      
101       m.add_at_edge (X_AXIS, RIGHT, thick, kern);
102       m.add_at_edge (X_AXIS, RIGHT, colon, kern);      
103     }
104   else if (str == ".|.")
105     {
106       m.add_at_edge (X_AXIS, LEFT, thick, thinkern);
107       m.add_at_edge (X_AXIS, RIGHT, thick, kern);      
108     }
109   else if (str == "||")
110     {
111       m.add_at_edge (X_AXIS, RIGHT, thin, 0);
112       m.add_at_edge (X_AXIS, RIGHT, thin, thinkern);      
113     }
114
115   return m;
116 }
117
118
119 Molecule
120 Bar::simple_barline (Score_element*me,Real w, Real h) 
121 {
122   return me->lookup_l ()->filledbox (Box (Interval(0,w), Interval(-h/2, h/2)));
123 }
124
125 MAKE_SCHEME_CALLBACK(Bar,before_line_breaking );
126
127 SCM
128 Bar::before_line_breaking  (SCM smob)
129 {
130   Score_element*me=unsmob_element (smob);
131   Item * item = dynamic_cast<Item*> (me);
132   
133   SCM g = me->get_elt_property ("glyph");
134   SCM orig = g;
135   Direction bsd = item->break_status_dir ();
136   if (gh_string_p (g))
137     {
138       if (bsd)
139         {
140           SCM breakdir = gh_int2scm (bsd);
141           g = scm_eval2 (gh_list (ly_symbol2scm ("break-barline"),
142                                  g,
143                                  breakdir,
144                                  SCM_UNDEFINED),
145                          SCM_EOL);
146         }
147     }
148   else
149     {
150       g = SCM_EOL;
151     }
152   
153   if (!gh_string_p (g))
154     {
155       me->set_elt_property ("molecule-callback", SCM_BOOL_T);
156       me->set_extent_callback (0, X_AXIS);
157
158       // leave y_extent for spanbar? 
159     }
160
161   if (! gh_equal_p  (g, orig))
162     me->set_elt_property ("glyph", g);
163
164
165   return SCM_UNSPECIFIED;
166 }
167   
168 void
169 Bar::set_interface (Score_element*me)
170 {
171   me->set_elt_property ("interfaces",
172                         gh_cons (ly_symbol2scm ("bar-interface"), me->get_elt_property ("interfaces")));
173 }
174
175 bool
176 Bar::has_interface (Score_element*m)
177 {
178   return m && m->has_interface (ly_symbol2scm ("bar-interface"));
179 }
180
181
182 MAKE_SCHEME_CALLBACK(Bar,get_staff_bar_size);
183 SCM
184 Bar::get_staff_bar_size (SCM smob) 
185 {
186   Score_element*me = unsmob_element (smob);
187   Real ss = Staff_symbol_referencer::staff_space (me);
188   SCM size = me->get_elt_property ("bar-size");
189   if (gh_number_p (size))
190     return gh_double2scm (gh_scm2double(size)*ss);
191   else
192     {
193       return gh_double2scm ((Staff_symbol_referencer::line_count (me) -1) * ss);
194     }
195 }