]> git.donarmstrong.com Git - lilypond.git/blob - lily/beam-engraver.cc
4260dfc44c72a5adf20bfb63ec666665757c5b53
[lilypond.git] / lily / beam-engraver.cc
1 /*   
2   beam-engraver.cc --  implement Beam_engraver
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "beam-engraver.hh"
11 #include "musical-request.hh"
12 #include "beam.hh"
13 #include "rhythmic-grouping.hh"
14 #include "stem.hh"
15 #include "warn.hh"
16 #include "time-description.hh"
17
18 Beam_engraver::Beam_engraver ()
19 {
20   beam_p_ = 0;
21   finished_beam_p_ =0;
22   finished_grouping_p_ = 0;
23   grouping_p_ =0;
24   reqs_drul_[LEFT] = reqs_drul_[RIGHT] =0;
25   prev_start_req_ =0;
26 }
27
28 bool
29 Beam_engraver::do_try_music (Music *m)
30 {
31   if (Beam_req * c = dynamic_cast<Beam_req*>(m))
32     {
33       Direction d =c->spantype_;
34
35       if (d == STOP && !beam_p_)
36         {
37           m->warning (_ ("No Beam to end"));
38           return false;
39         }
40       reqs_drul_[d ] = c;
41       return true;
42     }
43   return false;
44 }
45
46
47 void
48 Beam_engraver::do_process_requests ()
49 {
50   if (reqs_drul_[STOP])
51     {
52       if (!beam_p_)
53         reqs_drul_[STOP]->warning (_("No beam to end"));
54       prev_start_req_ =0;
55       finished_beam_p_ = beam_p_;
56       finished_grouping_p_ = grouping_p_;
57
58       beam_p_ = 0;
59       grouping_p_ = 0;
60     }
61   
62   if (reqs_drul_[START])
63     {
64       if (beam_p_)
65         {
66           reqs_drul_[START]->warning (_ ("Already have a Beam"));
67           return;
68         }
69
70       prev_start_req_ = reqs_drul_[START];
71       beam_p_ = new Beam;
72       grouping_p_ = new Rhythmic_grouping;
73
74       Scalar prop = get_property ("beamslopedamping", 0);
75       if (prop.isnum_b ()) 
76         beam_p_->set_elt_property (damping_scm_sym, gh_int2scm( prop));
77       
78       prop = get_property ("beamquantisation", 0);
79       if (prop.isnum_b ()) 
80         beam_p_->quantisation_ = (Beam::Quantisation)(int)prop;
81  
82       announce_element (Score_element_info (beam_p_, reqs_drul_[START]));
83     }
84 }
85
86 void
87 Beam_engraver::typeset_beam ()
88 {
89   if (finished_beam_p_)
90     {
91       Rhythmic_grouping const * rg_C = get_staff_info().rhythmic_C_;
92       rg_C->extend (finished_grouping_p_->interval());
93       finished_beam_p_->set_grouping (*rg_C, *finished_grouping_p_);
94       typeset_element (finished_beam_p_);
95       finished_beam_p_ = 0;
96     
97       delete finished_grouping_p_;
98       finished_grouping_p_= 0;
99     
100       reqs_drul_[STOP] = 0;
101     }
102 }
103
104 void
105 Beam_engraver::do_post_move_processing ()
106 {
107   reqs_drul_ [START] =0;
108 }
109
110 void
111 Beam_engraver::do_pre_move_processing ()
112 {
113   typeset_beam ();
114 }
115
116 void
117 Beam_engraver::do_removal_processing ()
118 {
119   typeset_beam ();
120   if (beam_p_)
121     {
122       prev_start_req_->warning (_ ("Unfinished beam"));
123       finished_beam_p_ = beam_p_;
124       finished_grouping_p_ = grouping_p_;
125       typeset_beam ();
126     }
127 }
128
129 void
130 Beam_engraver::acknowledge_element (Score_element_info info)
131 {
132     if (beam_p_)
133       {
134         Stem* stem_l = dynamic_cast<Stem *> (info.elem_l_);
135         if (!stem_l)
136           return;
137
138
139         Rhythmic_req *rhythmic_req = dynamic_cast <Rhythmic_req *> (info.req_l_);
140         if (!rhythmic_req)
141           {
142             String s = _ ("Stem must have Rhythmic structure.");
143             if (info.req_l_)
144               info.req_l_->warning (s);
145             else
146               ::warning (s);
147           
148             return;
149           }
150       
151
152         if (rhythmic_req->duration_.durlog_i_<= 2)
153           {
154             rhythmic_req->warning (_ ("stem doesn't fit in beam"));
155             prev_start_req_->warning (_ ("beam was started here"));
156             return;
157           }
158
159         /*
160           TODO: do something sensible if it doesn't fit in the beam.
161         */
162         Moment start = get_staff_info().time_C_->whole_in_measure_;
163
164         if (!grouping_p_->child_fit_b (start))
165           {
166             String s (_ ("please fix me") + ": " 
167                       + _f ("stem at %s doesn't fit in beam", now_mom ().str ()));
168
169             if (info.req_l_)
170               info.req_l_->warning(s);
171             else 
172               warning (s);
173           }
174         else
175           {
176             grouping_p_->add_child (start, rhythmic_req->length_mom ());
177             stem_l->flag_i_ = rhythmic_req->duration_.durlog_i_;
178             beam_p_->add_stem (stem_l);
179           }
180       }
181 }
182
183
184
185 ADD_THIS_TRANSLATOR(Beam_engraver);