]> git.donarmstrong.com Git - lilypond.git/blob - lily/voice-element.cc
release: 0.0.56
[lilypond.git] / lily / voice-element.cc
1 /*
2   voice-elt.cc -- implement Voice_element
3
4   source file of the LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9 #include "proto.hh"
10 #include "plist.hh"
11 #include "debug.hh"
12 #include "voice.hh"
13 #include "voice-element.hh"
14 #include "musical-request.hh"
15 #include "command-request.hh"
16
17
18 void
19 Voice_element::transpose(Melodic_req const&d)const
20 {
21     for (iter_top(req_p_list_,i); i.ok(); i++) {
22         i->transpose(d);
23       }
24 }
25
26 void
27 Voice_element::print() const
28 {
29 #ifndef NPRINT
30     mtor << "voice_element { dur :"<< duration_ <<"\n";
31     mtor << "principal: " << principal_req_l_->name() << "\n";
32     for (iter_top(req_p_list_,rc); rc.ok(); rc++) {
33         rc->print();
34     }
35     
36     mtor << "}\n";
37 #endif
38 }
39
40 void
41 Voice_element::add(Request*r)
42 {
43     if (! principal_req_l_ ) 
44         principal_req_l_ = r;
45
46     if (r->duration()) {
47         assert (!duration_  || duration_ == r->duration());
48         duration_ = r->duration();
49     }
50     
51     r->elt_l_ = this;
52     req_p_list_.bottom().add(r);
53 }
54
55
56 Voice_element::Voice_element()
57 {
58     principal_req_l_ = 0;
59     voice_C_ = 0;
60     duration_ = 0;
61 }
62
63 Voice_element::Voice_element(Voice_element const&src)
64     : Input(src)
65 {
66     voice_C_=0;
67     for (iter_top(src.req_p_list_, i); i.ok(); i++)
68         add(i->clone());
69
70 }
71 bool
72 Voice_element::find_plet_start_b(char c, Moment& moment_r)// b unused?
73 {
74     assert( c == ']' );
75     moment_r += duration_;
76     for ( PCursor<Request*> i( req_p_list_.top() ); i.ok(); i++ ) {
77         if (i->beam() && i->beam()->spantype == Span_req::START )
78             return true;
79     }
80     return false;
81 }
82
83 void
84 Voice_element::set_default_group(String s)
85 {
86     for (iter_top(req_p_list_, i); i.ok(); i++)
87         if (i->command() &&i->command()->groupchange())
88             return ;
89     Group_change_req *greq = new Group_change_req;
90     greq->newgroup_str_ = s;
91     add(greq);
92 }
93
94 void
95 Voice_element::set_plet_backwards(Moment& now_moment_r,
96                                   Moment until_moment, int num_i, int den_i)
97 {
98     now_moment_r += duration_;
99     if ( now_moment_r > until_moment )
100         return;
101     for ( PCursor<Request*> i( req_p_list_.top() ); i.ok(); i++ ) {
102         if (i->beam() && i->beam()->spantype == Span_req::START )
103             i->beam()->nplet = den_i;
104         if (i->rhythmic()) {
105             i->rhythmic()->duration_.plet_.type_i_ = den_i;
106             i->rhythmic()->duration_.plet_.iso_i_  = num_i;
107             
108         }
109     }
110 }