]> git.donarmstrong.com Git - lilypond.git/blob - lily/text-engraver.cc
tie accs
[lilypond.git] / lily / text-engraver.cc
1 /*   
2   text-engraver.cc --  implement Text_engraver
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10
11 #include "engraver.hh"
12 #include "side-position-interface.hh"
13 #include "item.hh"
14 #include "musical-request.hh"
15 #include "stem.hh"
16 #include "rhythmic-head.hh"
17
18
19 /**
20    typeset directions that are  plain text.
21  */
22 class Text_engraver : public Engraver
23 {
24   Link_array<Text_script_req> reqs_;
25   Link_array<Item> texts_;
26 public:
27   TRANSLATOR_DECLARATIONS(Text_engraver);
28 protected:
29   virtual bool try_music (Music* m);
30   virtual void stop_translation_timestep ();
31   virtual void start_translation_timestep ();
32   virtual void create_grobs ();
33   virtual void acknowledge_grob (Grob_info);
34 };
35
36 bool
37 Text_engraver::try_music (Music *m)
38 {
39   if (dynamic_cast<Text_script_req*> (m)
40       && m->get_mus_property ("text-type") != ly_symbol2scm ("finger")
41       && m->get_mus_property ("text-type") != ly_symbol2scm ("dynamic"))
42     {
43       reqs_.push (dynamic_cast<Text_script_req*> (m));
44       return true;
45     }
46   return false;
47 }
48
49 void
50 Text_engraver::acknowledge_grob (Grob_info inf)
51 {
52   if (Rhythmic_head::has_interface (inf.grob_l_))
53     {
54       for (int i=0; i < texts_.size (); i++)
55         {
56           Grob*t = texts_[i];
57           Side_position_interface::add_support (t,inf.grob_l_);
58
59           /*
60             ugh.
61            */
62           if (Side_position_interface::get_axis (t) == X_AXIS
63               && !t->get_parent (Y_AXIS))
64             t->set_parent (inf.grob_l_, Y_AXIS);
65           else if (Side_position_interface::get_axis (t) == Y_AXIS
66               && !t->get_parent (X_AXIS))
67             t->set_parent (inf.grob_l_, X_AXIS);
68         }
69     }
70   
71   if (Stem::has_interface (inf.grob_l_))
72     {
73       for (int i=0; i < texts_.size (); i++)
74         {
75           Side_position_interface::add_support (texts_[i],inf.grob_l_);
76         }
77     }
78 }
79
80 void
81 Text_engraver::create_grobs ()
82 {
83   if (texts_.size ())
84     return;
85   for (int i=0; i < reqs_.size (); i++)
86     {
87       Text_script_req * r = reqs_[i];
88       
89       // URG: Text vs TextScript
90       String basic = "TextScript";
91
92       if (r->get_mus_property ("text-type") == ly_symbol2scm ("finger"))
93         {
94           basic = "Fingering";
95         }
96
97       Item *text = new Item (get_property (basic.ch_C ()));
98
99       /*
100         FIXME -> need to use basic props.
101        */
102       SCM axisprop = get_property ("scriptHorizontal");
103       
104       Axis ax = to_boolean (axisprop) ? X_AXIS : Y_AXIS;
105       Side_position_interface::set_axis (text, ax);
106
107 #if 0
108       if (r->style_str_ == "finger" && ax == Y_AXIS)
109         {
110           /*
111             nicely center the scripts.
112            */ 
113           text->add_offset_callback (Side_position_interface::aligned_on_self_proc, X_AXIS);
114           text->add_offset_callback (Side_position_interface::centered_on_parent_proc, X_AXIS);
115         }
116 #endif
117       
118
119       
120       /*
121         make sure they're in order by adding i to the priority field.
122         */
123       text->set_grob_property ("script-priority",
124                               gh_int2scm (200 + i));
125
126       if (r->get_direction ())
127         Side_position_interface::set_direction (text, r->get_direction ());
128       
129       text->set_grob_property ("text", r->get_mus_property ("text"));
130       
131       SCM nonempty = get_property ("textNonEmpty");
132
133       if (gh_boolean_p (nonempty))
134         if (gh_scm2bool (nonempty))
135           /*
136             empty text: signal that no rods should be applied.
137             Default nowadays.
138           */
139           text->set_grob_property ("no-spacing-rods" , SCM_BOOL_F);
140         else
141           text->set_grob_property ("no-spacing-rods" , SCM_BOOL_T);
142        
143       announce_grob (text, r->self_scm ());
144       texts_.push (text);
145     }
146 }
147
148 void
149 Text_engraver::stop_translation_timestep ()
150 {
151   for (int i=0; i < texts_.size (); i++)
152     {
153       Item *ti = texts_[i];
154       if (!to_boolean (get_property ("scriptHorizontal")))
155         Side_position_interface::add_staff_support (ti);
156       typeset_grob (ti);
157     }
158   texts_.clear ();
159 }
160
161 void
162 Text_engraver::start_translation_timestep ()
163 {
164   reqs_.clear ();
165 }
166
167
168 Text_engraver::Text_engraver(){}
169
170 ENTER_DESCRIPTION(Text_engraver,
171 /* descr */       "Create text-scripts",
172 /* creats*/       "TextScript",
173 /* acks  */       "rhythmic-head-interface stem-interface",
174 /* reads */       "scriptHorizontal textNonEmpty",
175 /* write */       "");