lilypond-0.1.14
[lilypond.git] / lily / script.cc
blob073fc7cd93f996ad40719bba68b8a6110bd77e6c
1 /*
2 script.cc -- implement Script
4 source file of the GNU LilyPond music typesetter
6 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8 #include "script-def.hh"
9 #include "musical-request.hh"
10 #include "paper-def.hh"
11 #include "script.hh"
12 #include "stem.hh"
13 #include "molecule.hh"
14 #include "lookup.hh"
16 void
17 Script::do_print() const
19 #ifndef NPRINT
20 specs_l_->print();
21 #endif
24 void
25 Script::do_substitute_dependency (Score_elem*o,Score_elem*n)
27 Staff_side::do_substitute_dependency (o,n);
28 if (o == stem_l_)
30 stem_l_ = n ? (Stem*)n->item() : 0;
34 void
35 Script::set_stem (Stem*st_l)
37 stem_l_ = st_l;
38 add_support (st_l);
42 Script::Script()
44 specs_l_ = 0;
45 inside_staff_b_ = false;
46 stem_l_ = 0;
47 dir_ = CENTER;
50 void
51 Script::set_default_dir()
53 int s_i=specs_l_->rel_stem_dir();
54 if (s_i)
56 if (stem_l_)
57 dir_ = stem_l_->dir_ * s_i;
58 else
60 specs_l_->warning ("Script needs stem direction");
61 dir_ = DOWN;
64 else
66 dir_ =specs_l_->staff_dir();
68 assert (dir_);
72 Interval
73 Script::do_width() const
75 return specs_l_->get_atom (paper(), dir_).extent ().x ();
78 void
79 Script::do_pre_processing()
81 if (breakable_b_ && break_status_i() != 1)
83 transparent_b_ = true;
84 set_empty (true);
87 if (!dir_)
88 set_default_dir();
89 inside_staff_b_ = specs_l_->inside_b();
92 Interval
93 Script::symbol_height() const
95 return specs_l_->get_atom (paper(), dir_).extent ().y ();
98 Molecule*
99 Script::brew_molecule_p() const
101 Real dy = paper()->internote_f ();
103 Molecule*out = new Molecule (specs_l_->get_atom (paper(), dir_));
104 out->translate (dy * pos_i_, Y_AXIS);
105 return out;
109 IMPLEMENT_IS_TYPE_B2(Script,Item,Staff_side);
111 int
112 Script::compare (Script *const&l1, Script *const&l2)
114 return l1->specs_l_->priority_i() - l2->specs_l_->priority_i ();