]> git.donarmstrong.com Git - lilypond.git/blob - lily/bar-number-engraver.cc
release: 1.3.94
[lilypond.git] / lily / bar-number-engraver.cc
1 /*
2   bar-number-grav.cc -- implement Bar_number_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #include "lily-guile.hh"
11 #include "paper-column.hh"
12 #include "paper-def.hh"
13 #include "side-position-interface.hh"
14 #include "staff-symbol.hh"
15 #include "item.hh"
16 #include "moment.hh"
17 #include "engraver.hh"
18 #include "translator-group.hh"
19
20
21 class Bar_number_engraver : public Engraver
22 {
23 protected:
24   Item* text_p_;
25
26 protected:
27   virtual void do_pre_move_processing ();
28   virtual void acknowledge_element (Score_element_info);
29   virtual void do_creation_processing ();
30   void create_items();
31   void do_process_music ();
32 public:
33   VIRTUAL_COPY_CONS(Translator);
34   Bar_number_engraver();
35 };
36
37 void
38 Bar_number_engraver::do_process_music ()
39 {
40   // todo include (&&!time->cadenza_b_ )
41   SCM bn = get_property("currentBarNumber");
42   SCM smp = get_property ("measurePosition");
43   Moment mp =  (unsmob_moment (smp)) ? *unsmob_moment (smp) : Moment (0);
44   
45   if (gh_number_p (bn) &&
46       !mp && now_mom () > Moment (0))
47     {
48       create_items ();
49
50       // guh.
51       text_p_->set_elt_property ("text",
52                                  ly_str02scm (to_str (gh_scm2int (bn)).ch_C()));
53     }
54 }
55
56 ADD_THIS_TRANSLATOR(Bar_number_engraver);
57
58 Bar_number_engraver::Bar_number_engraver ()
59 {
60   text_p_ =0;
61 }
62
63 void
64 Bar_number_engraver::do_creation_processing ()
65 {
66   /*
67     ugh: need to share code with mark_engraver
68    */
69   daddy_trans_l_->set_property ("staffsFound", SCM_EOL); 
70 }
71
72
73                                                
74 void
75 Bar_number_engraver::acknowledge_element (Score_element_info inf)
76 {
77   Score_element * s = inf.elem_l_;
78   if (Staff_symbol::has_interface (s))
79     {
80       SCM sts = get_property ("staffsFound");
81       SCM thisstaff = inf.elem_l_->self_scm ();
82       if (scm_memq (thisstaff, sts) == SCM_BOOL_F)
83         daddy_trans_l_->set_property ("staffsFound", gh_cons (thisstaff, sts));
84     }
85   else if (text_p_
86            && dynamic_cast<Item*> (s)
87            && s->get_elt_property ("break-align-symbol") == ly_symbol2scm ("Left_edge_item"))
88     {
89       /*
90         By default this would land on the Paper_column -- so why
91         doesn't it work when you leave this out?  */
92       text_p_->set_parent (s, X_AXIS);
93     }
94 }
95
96 void 
97 Bar_number_engraver::do_pre_move_processing ()
98 {
99   if (text_p_)
100     {
101       text_p_->set_elt_property ("side-support-elements", get_property ("staffsFound"));
102       typeset_element (text_p_);
103       text_p_ =0;
104     }
105 }
106
107
108 void
109 Bar_number_engraver::create_items ()
110 {
111   if (text_p_)
112     return;
113
114   SCM b = get_property ("BarNumber");
115   text_p_ = new Item (b);
116   Side_position::set_axis(text_p_,Y_AXIS);
117
118   announce_element (text_p_, 0);
119 }
120