]> git.donarmstrong.com Git - lilypond.git/blob - lily/mark-engraver.cc
eeada948563860f7cb47457961907211068c121a
[lilypond.git] / lily / mark-engraver.cc
1 /*
2   mark-engraver.cc -- implement Mark_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6  (c) 1998--2000 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include <ctype.h>
10 #include "bar.hh"
11 #include "command-request.hh"
12 #include "staff-symbol.hh"
13 #include "engraver-group-engraver.hh"
14 #include "engraver.hh"
15 #include "lily-guile.hh"
16 #include "paper-column.hh"
17 #include "paper-def.hh"
18
19 #include "side-position-interface.hh"
20 #include "staff-symbol-referencer.hh"
21 #include "item.hh"
22 #include "group-interface.hh"
23
24 /**
25   put stuff over or next to  bars.  Examples: bar numbers, marginal notes,
26   rehearsal marks.
27  */
28 class Mark_engraver : public Engraver
29 {
30 public:
31   VIRTUAL_COPY_CONS(Translator);
32   Mark_engraver ();
33 protected:
34   Item* text_p_;
35   
36 protected:
37   virtual void do_pre_move_processing ();
38   virtual void acknowledge_element (Score_element_info);
39   void create_items(Request*);
40   virtual bool do_try_music (Music *req_l);
41   virtual void do_process_music ();
42   virtual void do_post_move_processing ();
43   virtual void do_creation_processing ();
44   
45 private:
46   Mark_req * mark_req_l_;
47 };
48
49
50 ADD_THIS_TRANSLATOR (Mark_engraver);
51
52
53 Mark_engraver::Mark_engraver ()
54 {
55   text_p_ =0;
56   mark_req_l_ = 0;
57 }
58
59 void
60 Mark_engraver::do_creation_processing ()
61 {
62   daddy_trans_l_->set_property ("staffsFound", SCM_EOL); // ugh: sharing with barnumber grav.
63 }
64
65
66 void
67 Mark_engraver::acknowledge_element (Score_element_info inf)
68 {
69   Score_element * s = inf.elem_l_;
70   if (Staff_symbol::has_interface (s))
71     {
72       SCM sts = get_property ("staffsFound");
73       SCM thisstaff = inf.elem_l_->self_scm ();
74       if (scm_memq (thisstaff, sts) == SCM_BOOL_F)
75         daddy_trans_l_->set_property ("staffsFound", gh_cons (thisstaff, sts));
76     }
77   else if (text_p_ && Bar::has_interface (s))
78     {
79       /*
80         Ugh. Figure out how to do this right at beginning of line, (without
81         creating class Bar_script : public Item).
82       */
83       text_p_->set_parent (s, X_AXIS);
84     }
85 }
86
87 void 
88 Mark_engraver::do_pre_move_processing ()
89 {
90   if (text_p_)
91     {
92       text_p_->set_elt_property("side-support-elements" , get_property ("staffsFound"));
93       typeset_element (text_p_);
94       text_p_ =0;
95     }
96 }
97
98
99 void
100 Mark_engraver::create_items (Request *rq)
101 {
102   if (text_p_)
103     return;
104
105   SCM s = get_property ("RehearsalMark");
106   text_p_ = new Item (s);
107
108
109   Side_position::set_axis (text_p_, Y_AXIS);
110
111   /*
112     -> Generic props.
113    */
114   SCM prop = get_property ("markDirection");
115   if (!isdir_b (prop))
116     {
117       prop = gh_int2scm (UP);
118     }
119   text_p_->set_elt_property ("direction", prop);
120
121   SCM padding = get_property ("markScriptPadding");
122   if (gh_number_p(padding))
123     {
124       text_p_->set_elt_property ("padding", padding);
125     }
126   else
127     {
128       text_p_
129         ->set_elt_property ("padding",
130                             gh_double2scm(paper_l ()->get_var ("staffspace")));
131     }
132
133   
134   announce_element (text_p_, rq);
135 }
136
137
138 void
139 Mark_engraver::do_post_move_processing ()
140 {
141   mark_req_l_ = 0;
142 }
143
144
145 bool
146 Mark_engraver::do_try_music (Music* r_l)
147 {
148   if (Mark_req *mr = dynamic_cast <Mark_req *> (r_l))
149     {
150       if (mark_req_l_ && mr->equal_b (mark_req_l_))
151         return true;
152       if (mark_req_l_)
153         return false;
154       mark_req_l_ = mr;
155       return true;
156     }
157   return false;
158 }
159
160 void
161 Mark_engraver::do_process_music ()
162 {
163   if (mark_req_l_)
164     {
165       create_items (mark_req_l_);
166
167       String t;
168
169       /*
170         automatic marks.
171        */
172       
173       SCM m = mark_req_l_->get_mus_property ("label");
174       if (!gh_string_p (m)) 
175         m =  get_property ("rehearsalMark");
176 ;
177       
178       if (gh_number_p (m))
179         {
180           int mark_count = gh_scm2int (m);
181           t = to_str (mark_count);
182           mark_count ++;
183           m = gh_int2scm (mark_count);
184         }
185       else if (gh_string_p (m))
186         {
187           t = ly_scm2string (m);
188           String next;
189           if (t.length_i ())
190             {
191               char c = t[0];
192               c++;
193               next = to_str (c);
194             }
195           m = ly_str02scm (next.ch_C());
196         }
197       else
198         {
199           m = gh_int2scm (1);
200         }
201           
202       daddy_trans_l_->set_property ("rehearsalMark", m);
203
204       
205       text_p_->set_elt_property ("text",
206                                  ly_str02scm ( t.ch_C()));
207
208       String style = "mark";
209       for (int i=0; i < t.length_i(); i++)
210         {
211           if (!isdigit(t[i])) 
212             {
213               style = "large";
214               break;
215             }
216         }
217       SCM st = ly_str02scm (style.ch_C());
218       text_p_->set_elt_property ("style",  st);
219     }
220 }
221