lilypond-1.5.1
[lilypond.git] / lily / bar.cc
blob33a04d2f3956df291a9629a566e091179dd23dfe
1 /*
2 bar.cc -- implement Bar
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8 #include <math.h>
10 #include "lookup.hh"
11 #include "paper-column.hh"
12 #include "main.hh"
13 #include "grob.hh"
14 #include "bar.hh"
15 #include "string.hh"
16 #include "molecule.hh"
17 #include "paper-def.hh"
18 #include "font-interface.hh"
19 #include "debug.hh"
20 #include "all-font-metrics.hh"
21 #include "item.hh"
22 #include "staff-symbol-referencer.hh"
24 MAKE_SCHEME_CALLBACK (Bar,brew_molecule,1);
26 SCM
27 Bar::brew_molecule (SCM smob)
29 Grob * me = unsmob_grob (smob);
31 SCM s = me->get_grob_property ("glyph");
32 SCM barsiz_proc = me->get_grob_property ("bar-size-procedure");
33 if (gh_string_p (s) && gh_procedure_p (barsiz_proc))
35 String str =ly_scm2string (s);
36 SCM siz = gh_call1 (barsiz_proc, me->self_scm ());
37 Real sz = gh_scm2double (siz);
38 if (sz < 0)
39 return SCM_EOL;
41 return compound_barline (me, str, sz).smobbed_copy ();
43 return SCM_EOL;
47 Molecule
48 Bar::compound_barline (Grob*me, String str, Real h)
50 Real kern = gh_scm2double (me->get_grob_property ("kern"));
51 Real thinkern = gh_scm2double (me->get_grob_property ("thin-kern"));
52 Real hair = gh_scm2double (me->get_grob_property ("hair-thickness"));
53 Real fatline = gh_scm2double (me->get_grob_property ("thick-thickness"));
55 Real staffline = me->paper_l ()->get_var ("stafflinethickness");
57 kern *= staffline;
58 thinkern *= staffline;
59 hair *= staffline;
60 fatline *= staffline;
62 Molecule thin = simple_barline (me, hair, h);
63 Molecule thick = simple_barline (me, fatline, h);
64 Molecule colon = Font_interface::get_default_font (me)->find_by_name (
65 Staff_symbol_referencer::line_count (me) & 1 == 1 ?
66 "dots-repeatcolon" : "dots-evenrepeatcolon"
69 Molecule m;
71 if (str == "")
73 return Lookup::blank (Box (Interval (0, 0), Interval (-h/2, h/2)));
75 else if (str == "|")
77 return thin;
79 else if (str == "|." || (h == 0 && str == ":|"))
81 m.add_at_edge (X_AXIS, LEFT, thick, 0);
82 m.add_at_edge (X_AXIS, LEFT, thin, kern);
84 else if (str == ".|" || (h == 0 && str == "|:"))
86 m.add_at_edge (X_AXIS, RIGHT, thick, 0);
87 m.add_at_edge (X_AXIS, RIGHT, thin, kern);
89 else if (str == ":|")
91 m.add_at_edge (X_AXIS, LEFT, thick, 0);
92 m.add_at_edge (X_AXIS, LEFT, thin, kern);
93 m.add_at_edge (X_AXIS, LEFT, colon, kern);
95 else if (str == "|:")
97 m.add_at_edge (X_AXIS, RIGHT, thick, 0);
98 m.add_at_edge (X_AXIS, RIGHT, thin, kern);
99 m.add_at_edge (X_AXIS, RIGHT, colon, kern);
101 else if (str == ":|:")
103 m.add_at_edge (X_AXIS, LEFT, thick, thinkern);
104 m.add_at_edge (X_AXIS, LEFT, colon, kern);
105 m.add_at_edge (X_AXIS, RIGHT, thick, kern);
106 m.add_at_edge (X_AXIS, RIGHT, colon, kern);
108 else if (str == ".|.")
110 m.add_at_edge (X_AXIS, LEFT, thick, thinkern);
111 m.add_at_edge (X_AXIS, RIGHT, thick, kern);
113 else if (str == "||")
115 m.add_at_edge (X_AXIS, RIGHT, thin, 0);
116 m.add_at_edge (X_AXIS, RIGHT, thin, thinkern);
119 return m;
123 Molecule
124 Bar::simple_barline (Grob*,Real w, Real h)
126 return Lookup::filledbox (Box (Interval (0,w), Interval (-h/2, h/2)));
129 MAKE_SCHEME_CALLBACK (Bar,before_line_breaking ,1);
132 Bar::before_line_breaking (SCM smob)
134 Grob*me=unsmob_grob (smob);
135 Item * item = dynamic_cast<Item*> (me);
137 SCM g = me->get_grob_property ("glyph");
138 SCM orig = g;
139 Direction bsd = item->break_status_dir ();
140 if (gh_string_p (g) && bsd)
142 SCM proc = me->get_grob_property ("break-glyph-function");
143 g = gh_call2 (proc, g, gh_int2scm (bsd));
147 if (!gh_string_p (g))
149 me->set_grob_property ("molecule-callback", SCM_BOOL_T);
150 me->set_extent_callback (SCM_EOL, X_AXIS);
151 // leave y_extent for spanbar?
154 if (! gh_equal_p (g, orig))
155 me->set_grob_property ("glyph", g);
159 set a (pseudo) stem-direction, so we extra space is inserted
160 between stemup and barline.
162 TODO: should check if the barline is the leftmost object of the
163 break alignment.
166 if (gh_string_p (g))
168 Grob * col = item->column_l ();
169 SCM dirlist = col->get_grob_property ("dir-list");
170 SCM scmdir = gh_int2scm (-1);
171 if (scm_memq (scmdir, dirlist) == SCM_BOOL_F)
173 dirlist = gh_cons (scmdir, dirlist);
174 col->set_grob_property ("dir-list", dirlist);
178 return SCM_UNSPECIFIED;
181 void
182 Bar::set_interface (Grob*me)
184 me->set_interface (ly_symbol2scm ("bar-line-interface"));
187 bool
188 Bar::has_interface (Grob*m)
190 return m && m->has_interface (ly_symbol2scm ("bar-line-interface"));
194 MAKE_SCHEME_CALLBACK (Bar,get_staff_bar_size,1);
196 Bar::get_staff_bar_size (SCM smob)
198 Grob*me = unsmob_grob (smob);
199 Real ss = Staff_symbol_referencer::staff_space (me);
200 SCM size = me->get_grob_property ("bar-size");
201 if (gh_number_p (size))
202 return gh_double2scm (gh_scm2double (size)*ss);
203 else if (Staff_symbol_referencer::staff_symbol_l (me))
206 If there is no staff-symbol, we get -1 from the next
207 calculation. That's a nonsense value, which would collapse the
208 barline so we return 0.0 in the next alternative.
210 return gh_double2scm ((Staff_symbol_referencer::line_count (me) -1) * ss);
212 else
213 return gh_int2scm (0);