]> git.donarmstrong.com Git - lilypond.git/blob - lily/ambitus-engraver.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / ambitus-engraver.cc
1 /*
2   ambitus-engraver.cc -- implement Ambitus_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2002--2006 Juergen Reuter <reuter@ipd.uka.de>
7
8   Han-Wen Nienhuys <hanwen@xs4all.nl
9 */
10
11 #include "engraver.hh"
12 #include "note-head.hh"
13 #include "pitch-interval.hh"
14 #include "protected-scm.hh"
15 #include "staff-symbol-referencer.hh"
16 #include "axis-group-interface.hh"
17 #include "side-position-interface.hh"
18
19 #include "translator.icc"
20
21 class Ambitus_engraver : public Engraver
22 {
23 public:
24   TRANSLATOR_DECLARATIONS (Ambitus_engraver);
25   void process_music ();
26   void acknowledge_note_head (Grob_info);
27   void stop_translation_timestep ();
28   virtual void finalize ();
29   virtual void derived_mark () const;
30
31 private:
32   void create_ambitus ();
33   Item *ambitus_;
34   Item *group_;
35   Drul_array<Item *> heads_;
36   Drul_array<Item *> accidentals_;
37   Pitch_interval pitch_interval_;
38   bool is_typeset_;
39   int start_c0_;
40   SCM start_key_sig_;
41 };
42
43 void
44 Ambitus_engraver::derived_mark () const
45 {
46   scm_gc_mark (start_key_sig_);
47 }
48
49 void
50 Ambitus_engraver::create_ambitus ()
51 {
52   ambitus_ = make_item ("AmbitusLine", SCM_EOL);
53   group_ = make_item ("Ambitus", SCM_EOL);
54   Direction d = DOWN;
55   do
56     {
57       heads_[d] = make_item ("AmbitusNoteHead", SCM_EOL);
58       accidentals_[d] = make_item ("AmbitusAccidental", SCM_EOL);
59       accidentals_[d]->set_parent (heads_[d], Y_AXIS);
60       heads_[d]->set_object ("accidental-grob",
61                              accidentals_[d]->self_scm ());
62       Axis_group_interface::add_element (group_, heads_[d]);
63       Axis_group_interface::add_element (group_, accidentals_[d]);
64       Side_position_interface::add_support (accidentals_[d], heads_[d]);
65     }
66   while (flip (&d) != DOWN);
67
68   ambitus_->set_parent (heads_[DOWN], X_AXIS);
69   Axis_group_interface::add_element (group_, ambitus_);
70
71   is_typeset_ = false;
72 }
73
74 Ambitus_engraver::Ambitus_engraver ()
75 {
76   ambitus_ = 0;
77   heads_[LEFT] = heads_[RIGHT] = 0;
78   accidentals_[LEFT] = accidentals_[RIGHT] = 0;
79   group_ = 0;
80   is_typeset_ = false;
81   start_key_sig_ = SCM_EOL;
82 }
83
84 void
85 Ambitus_engraver::process_music ()
86 {
87   /*
88    * Ensure that ambitus is created in the very first timestep (on
89    * which lily does not call start_translation_timestep ()).
90    * Otherwise, if a voice begins with a rest, the ambitus grob will
91    * be placed after the rest.
92    */
93   if (!ambitus_)
94     create_ambitus ();
95 }
96
97 void
98 Ambitus_engraver::stop_translation_timestep ()
99 {
100   if (ambitus_ && !is_typeset_)
101     {
102       /*
103        * Evaluate middleCPosition not until now, since otherwise we
104        * may then oversee a clef that is defined in a staff context if
105        * we are in a voice context; middleCPosition would then be
106        * assumed to be 0.
107        */
108       start_c0_ = robust_scm2int (get_property ("middleCPosition"), 0);
109       start_key_sig_ = get_property ("keySignature");
110
111       is_typeset_ = true;
112     }
113 }
114
115 void
116 Ambitus_engraver::acknowledge_note_head (Grob_info info)
117 {
118   Music *nr = info.music_cause ();
119   if (nr && nr->is_mus_type ("note-event"))
120     {
121       Pitch pitch = *unsmob_pitch (nr->get_property ("pitch"));
122       pitch_interval_.add_point (pitch);
123     }
124 }
125
126 void
127 Ambitus_engraver::finalize ()
128 {
129   if (ambitus_ && !pitch_interval_.is_empty ())
130     {
131       Direction d = DOWN;
132       do
133         {
134           Pitch p = pitch_interval_[d];
135           heads_[d]->set_property ("staff-position",
136                                    scm_from_int (start_c0_
137                                                  + p.steps ()));
138
139           SCM handle = scm_assoc (scm_cons (scm_from_int (p.get_octave ()),
140                                             scm_from_int (p.get_notename ())),
141                                   start_key_sig_);
142
143           if (handle == SCM_BOOL_F)
144             handle = scm_assoc (scm_from_int (p.get_notename ()),
145                                 start_key_sig_);
146
147           int sig_alter = (handle != SCM_BOOL_F)
148             ? scm_to_int (scm_cdr (handle)) : 0;
149
150           if (sig_alter == p.get_alteration ())
151             {
152               accidentals_[d]->suicide ();
153               heads_[d]->set_object ("accidental-grob", SCM_EOL);
154             }
155           else
156             {
157               SCM l = scm_list_1 (scm_from_int (p.get_alteration ()));
158               accidentals_[d]->set_property ("accidentals", l);
159             }
160         }
161       while (flip (&d) != DOWN);
162
163       ambitus_->set_object ("note-heads", scm_list_2 (heads_[DOWN]->self_scm (),
164                                                       heads_[UP]->self_scm ()));
165     }
166   else
167     {
168       Direction d = DOWN;
169       do
170         {
171           accidentals_[d]->suicide ();
172           heads_[d]->suicide ();
173         }
174       while (flip (&d) != DOWN);
175
176       ambitus_->suicide ();
177     }
178 }
179
180 ADD_ACKNOWLEDGER (Ambitus_engraver, note_head);
181 ADD_TRANSLATOR (Ambitus_engraver,
182                 /* doc */ "",
183                 /* create */ "Ambitus AmbitusLine AmbitusNoteHead AmbitusAccidental",
184                 /* accept */ "",
185                 /* read */ "",
186                 /* write */ "");