2 clef-engraver.cc -- implement Clef_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>,
8 Mats Bengtsson <matsb@s3.kth.se>
15 #include "bar-line.hh"
16 #include "staff-symbol-referencer.hh"
17 #include "engraver.hh"
18 #include "direction.hh"
19 #include "side-position-interface.hh"
21 #include "translator.icc"
23 class Clef_engraver
: public Engraver
26 TRANSLATOR_DECLARATIONS (Clef_engraver
);
28 Direction octave_dir_
;
31 void stop_translation_timestep ();
32 void process_music ();
33 DECLARE_ACKNOWLEDGER (bar_line
);
35 virtual void derived_mark () const;
45 void inspect_clef_properties ();
49 Clef_engraver::derived_mark () const
51 scm_gc_mark (prev_octavation_
);
52 scm_gc_mark (prev_cpos_
);
53 scm_gc_mark (prev_glyph_
);
56 Clef_engraver::Clef_engraver ()
63 will trigger a clef at the start since #f != ' ()
65 prev_octavation_
= prev_cpos_
= prev_glyph_
= SCM_BOOL_F
;
69 Clef_engraver::set_glyph ()
71 SCM glyph_sym
= ly_symbol2scm ("glyph");
72 SCM basic
= ly_symbol2scm ("Clef");
74 execute_pushpop_property (context (), basic
, glyph_sym
, SCM_UNDEFINED
);
75 execute_pushpop_property (context (), basic
, glyph_sym
, get_property ("clefGlyph"));
79 Generate a clef at the start of a measure. (when you see a Bar,
83 Clef_engraver::acknowledge_bar_line (Grob_info info
)
85 Item
*item
= dynamic_cast<Item
*> (info
.grob ());
86 if (item
&& scm_is_string (get_property ("clefGlyph")))
91 Clef_engraver::create_clef ()
95 Item
*c
= make_item ("Clef", SCM_EOL
);
98 SCM cpos
= get_property ("clefPosition");
100 if (scm_is_number (cpos
))
101 clef_
->set_property ("staff-position", cpos
);
103 SCM oct
= get_property ("clefOctavation");
104 if (scm_is_number (oct
) && scm_to_int (oct
))
106 Item
*g
= make_item ("OctavateEight", SCM_EOL
);
108 int abs_oct
= scm_to_int (oct
);
109 int dir
= sign (abs_oct
);
110 abs_oct
= abs (abs_oct
) + 1;
112 SCM txt
= scm_number_to_string (scm_from_int (abs_oct
),
115 g
->set_property ("text",
116 scm_list_n (ly_lily_module_constant ("vcenter-markup"),
117 txt
, SCM_UNDEFINED
));
118 Side_position_interface::add_support (g
, clef_
);
120 g
->set_parent (clef_
, Y_AXIS
);
121 g
->set_parent (clef_
, X_AXIS
);
122 g
->set_property ("direction", scm_from_int (dir
));
128 Clef_engraver::process_music ()
130 inspect_clef_properties ();
134 Clef_engraver::inspect_clef_properties ()
136 SCM glyph
= get_property ("clefGlyph");
137 SCM clefpos
= get_property ("clefPosition");
138 SCM octavation
= get_property ("clefOctavation");
139 SCM force_clef
= get_property ("forceClef");
141 if (clefpos
== SCM_EOL
142 || scm_equal_p (glyph
, prev_glyph_
) == SCM_BOOL_F
143 || scm_equal_p (clefpos
, prev_cpos_
) == SCM_BOOL_F
144 || scm_equal_p (octavation
, prev_octavation_
) == SCM_BOOL_F
145 || to_boolean (force_clef
))
147 set_context_property_on_children (context (),
148 ly_symbol2scm ("localKeySignature"),
149 get_property ("keySignature"));
152 if (prev_cpos_
!= SCM_BOOL_F
|| to_boolean (get_property ("firstClef")))
156 clef_
->set_property ("non-default", SCM_BOOL_T
);
158 prev_cpos_
= clefpos
;
160 prev_octavation_
= octavation
;
163 if (to_boolean (force_clef
))
166 Context
*w
= context ()->where_defined (ly_symbol2scm ("forceClef"), &prev
);
167 w
->set_property ("forceClef", SCM_EOL
);
172 Clef_engraver::stop_translation_timestep ()
177 if (to_boolean (clef_
->get_property ("non-default")))
178 vis
= get_property ("explicitClefVisibility");
182 clef_
->set_property ("break-visibility", vis
);
184 octavate_
->set_property ("break-visibility", vis
);
193 ADD_ACKNOWLEDGER (Clef_engraver
, bar_line
);
194 ADD_TRANSLATOR (Clef_engraver
,
195 /* doc */ "Determine and set reference point for pitches",
203 "explicitClefVisibility "