]> git.donarmstrong.com Git - lilypond.git/blob - lily/output-property-engraver.cc
Web-ja: update introduction
[lilypond.git] / lily / output-property-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2000--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
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.
10
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.
15
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/>.
18 */
19
20 #include "engraver.hh"
21 #include "context.hh"
22 #include "grob.hh"
23 #include "stream-event.hh"
24
25 #include "translator.icc"
26
27
28 class Output_property_engraver : public Engraver
29 {
30   TRANSLATOR_DECLARATIONS (Output_property_engraver);
31 protected:
32   vector<Stream_event*> props_;
33   
34   void acknowledge_grob (Grob_info);
35   void listen_apply_output (Stream_event *);
36
37   void stop_translation_timestep ();
38 };
39
40 // We only run this in the Score context, so all events are likely to
41 // find a target
42 void
43 Output_property_engraver::listen_apply_output (Stream_event *ev)
44 {
45   props_.push_back (ev);
46 }
47
48 void
49 Output_property_engraver::acknowledge_grob (Grob_info inf)
50 {
51   for (vsize i = props_.size (); i--;)
52     {
53       Stream_event *o = props_[i];
54       Context *d = inf.context ();
55       SCM grob = o->get_property ("symbol");
56       if (scm_is_symbol (grob)
57           && ly_symbol2string (grob) != inf.grob ()->name ())
58         continue;
59       SCM typ = o->get_property ("context-type");
60       SCM proc = o->get_property ("procedure");
61       for (Context *c = d; c; c = c->get_parent_context ())
62         {
63           if (c->is_alias (typ))
64             scm_call_3 (proc,
65                         inf.grob ()->self_scm (),
66                         d->self_scm (),
67                         c->self_scm ());
68         }
69     }
70 }
71
72 void
73 Output_property_engraver::stop_translation_timestep ()
74 {
75   props_.clear ();
76 }
77
78 Output_property_engraver::Output_property_engraver (Context *c)
79   : Engraver (c)
80 {
81 }
82
83 void
84 Output_property_engraver::boot ()
85 {
86   ADD_LISTENER (Output_property_engraver, apply_output);
87   ADD_ACKNOWLEDGER (Output_property_engraver, grob);
88 }
89
90 ADD_TRANSLATOR (Output_property_engraver,
91                 /* doc */
92                 "Apply a procedure to any grob acknowledged.",
93                 
94                 /* create */
95                 "",
96                 
97                 /* read */
98                 "",
99                 
100                 /* write */
101                 ""
102                 );