]> git.donarmstrong.com Git - lilypond.git/blob - lily/ottava-engraver.cc
(overdone_heads): enlarge harmonic head.
[lilypond.git] / lily / ottava-engraver.cc
1 /*
2   text-spanner-engraver.cc -- implement Ottava_spanner_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2003 Han-Wen Nienhuys
7   Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #include "protected-scm.hh"
11 #include "note-column.hh"
12 #include "item.hh"
13 #include "side-position-interface.hh"
14 #include "engraver.hh"
15
16 class Ottava_spanner_engraver : public Engraver
17 {
18 public:
19   TRANSLATOR_DECLARATIONS(Ottava_spanner_engraver);  
20 protected:
21   virtual void finalize ();
22   virtual void acknowledge_grob (Grob_info);
23   virtual void process_music ();
24   virtual void stop_translation_timestep ();
25 private:
26   Spanner *span_;
27   Spanner *finished_;
28   
29   Protected_scm last_ottavation_;
30   
31   void typeset_all ();
32 };
33
34
35 Ottava_spanner_engraver::Ottava_spanner_engraver ()
36 {
37   finished_ = 0;
38   span_ =0;
39   last_ottavation_ = SCM_EOL;
40 }
41
42 void
43 Ottava_spanner_engraver::process_music ()
44 {
45   SCM ott = get_property ("ottavation");
46   if (ott != last_ottavation_)
47     {
48       finished_= span_;
49       span_ = 0;
50       if (gh_string_p (ott))
51         {
52           span_  = new Spanner (get_property ("OttavaBracket"));
53           span_->set_grob_property ("text", ott);
54           announce_grob (span_, SCM_EOL);
55
56           SCM c0 (get_property ("centralCPosition"));
57           SCM oc0 (get_property ("originalCentralCPosition"));
58           if (scm_less_p (oc0, c0) == SCM_BOOL_T)
59             span_->set_grob_property ("direction", gh_int2scm (DOWN));
60         }
61     }
62   last_ottavation_ = ott;
63 }
64
65 void
66 Ottava_spanner_engraver::acknowledge_grob (Grob_info info)
67 {
68   Item *it = dynamic_cast<Item*> (info.grob_);
69   if (span_ && it && Note_column::has_interface (info.grob_))
70     {
71       Side_position_interface::add_support (span_, it);
72
73       if (!span_->get_bound (LEFT))
74         span_->set_bound (LEFT, it);
75       span_->set_bound (RIGHT, it);
76     }
77 }
78
79 void
80 Ottava_spanner_engraver::typeset_all ()
81 {  
82   if (finished_)
83     {
84       Direction d = LEFT;
85       do
86         {
87           if (!finished_->get_bound (RIGHT))
88             {
89               Grob* e = unsmob_grob (get_property ("currentMusicalColumn"));
90               finished_->set_bound (d, e);
91             }
92         }
93       while (flip (&d) != LEFT);
94       
95       typeset_grob (finished_);
96       finished_ = 0;
97     }
98 }
99
100 void
101 Ottava_spanner_engraver::stop_translation_timestep ()
102 {
103   if (span_ && !span_->get_bound (LEFT))
104     {
105       Grob* e = unsmob_grob (get_property ("currentMusicalColumn"));
106       span_->set_bound (LEFT, e);
107     }
108
109   typeset_all ();
110 }
111
112 void
113 Ottava_spanner_engraver::finalize ()
114 {
115   typeset_all ();
116   if (span_)
117     finished_ = span_;
118   typeset_all();
119   last_ottavation_ = SCM_EOL;
120 }
121
122 ENTER_DESCRIPTION(Ottava_spanner_engraver,
123 /* descr */       "Create a text spanner when the ottavation property changes..",
124 /* creats*/       "OttavaBracket",
125 /* accepts */     "",
126 /* acks  */      "note-column-interface",
127 /* reads */       "ottavation",
128 /* write */       "");