LSR: Update.
[lilypond/mpolesky.git] / lily / staff-symbol-engraver.cc
blob11f14ea1c6040dbbd5c544a777b9c066a2d0414b
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2010 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 #include "engraver.hh"
21 #include "international.hh"
22 #include "spanner.hh"
23 #include "stream-event.hh"
24 #include "warn.hh"
26 #include "translator.icc"
28 class Staff_symbol_engraver : public Engraver
30 public:
31 TRANSLATOR_DECLARATIONS (Staff_symbol_engraver);
33 protected:
34 Drul_array<Stream_event *> span_events_;
35 Spanner *span_;
36 Spanner *finished_span_;
37 bool first_start_;
39 protected:
40 virtual void start_spanner ();
41 virtual void stop_spanner ();
43 void stop_translation_timestep ();
44 virtual ~Staff_symbol_engraver ();
45 DECLARE_ACKNOWLEDGER (grob);
46 DECLARE_TRANSLATOR_LISTENER (staff_span);
47 virtual void finalize ();
48 void process_music ();
51 Staff_symbol_engraver::~Staff_symbol_engraver ()
53 assert (!span_);
56 Staff_symbol_engraver::Staff_symbol_engraver ()
58 finished_span_ = 0;
59 first_start_ = true;
60 span_ = 0;
61 span_events_.set (0, 0);
64 IMPLEMENT_TRANSLATOR_LISTENER (Staff_symbol_engraver, staff_span);
65 void
66 Staff_symbol_engraver::listen_staff_span (Stream_event *ev)
68 Direction d = to_dir (ev->get_property ("span-direction"));
69 if (d)
70 ASSIGN_EVENT_ONCE (span_events_[d], ev);
71 else
72 programming_error ("staff-span event has no direction");
75 void
76 Staff_symbol_engraver::process_music ()
78 if (span_events_[STOP])
80 finished_span_ = span_;
81 span_ = 0;
82 if (first_start_)
83 first_start_ = false;
86 if (span_events_[START]
87 || (first_start_ && !span_events_[STOP]))
88 start_spanner ();
91 void
92 Staff_symbol_engraver::start_spanner ()
94 if (!span_)
96 span_ = make_spanner ("StaffSymbol", SCM_EOL);
97 span_->set_bound (LEFT,
98 unsmob_grob (get_property ("currentCommandColumn")));
102 void
103 Staff_symbol_engraver::stop_spanner ()
105 if (!finished_span_)
106 return;
108 if (!finished_span_->get_bound (RIGHT))
109 finished_span_->set_bound (RIGHT, unsmob_grob (get_property ("currentCommandColumn")));
111 announce_end_grob (finished_span_,
112 span_events_[STOP]
113 ? span_events_[STOP]->self_scm ()
114 : SCM_EOL);
116 finished_span_ = 0;
119 void
120 Staff_symbol_engraver::stop_translation_timestep ()
122 if ((span_events_[START] || first_start_)
123 && span_)
124 first_start_ = false;
126 span_events_.set (0, 0);
127 stop_spanner ();
130 void
131 Staff_symbol_engraver::finalize ()
133 finished_span_ = span_;
134 span_ = 0;
135 stop_spanner ();
139 Todo: staff-symbol-referencer iface.
141 void
142 Staff_symbol_engraver::acknowledge_grob (Grob_info s)
144 if (span_ || finished_span_)
146 Spanner *my = span_ ? span_ : finished_span_;
147 s.grob ()->set_object ("staff-symbol", my->self_scm ());
151 ADD_ACKNOWLEDGER (Staff_symbol_engraver, grob);
153 ADD_TRANSLATOR (Staff_symbol_engraver,
154 /* doc */
155 "Create the constellation of five (default) staff lines.",
157 /* create */
158 "StaffSymbol ",
160 /* read */
163 /* write */