]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-column.cc
release: 0.1.14
[lilypond.git] / lily / note-column.cc
1 /*
2   note-column.cc -- implement Note_column
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8 #include "dot-column.hh"
9 #include "note-column.hh"
10 #include "script.hh"
11 #include "note-head.hh"
12 #include "stem.hh"
13 #include "rest.hh"
14 #include "debug.hh"
15
16 IMPLEMENT_IS_TYPE_B1(Note_column,Script_column);
17
18 bool
19 Note_column::rest_b () const
20 {
21   return rest_l_arr_.size ();
22 }
23
24 Note_column::Note_column()
25 {
26   stem_l_ = 0;
27   h_shift_b_ = false;
28   dir_ =CENTER;
29 }
30
31 void
32 Note_column::sort()
33 {
34   head_l_arr_.sort (Note_head::compare);
35 }
36   
37 Interval_t<int>
38 Note_column::head_positions_interval() const
39 {
40   ((Note_column*)this)->sort();
41   return Interval_t<int> (head_l_arr_[0]->position_i_, 
42                           head_l_arr_.top()->position_i_);
43
44 }
45
46 void
47 Note_column::do_pre_processing()
48 {
49
50   if (!dir_)
51     {
52       if (stem_l_)
53         dir_ = stem_l_->dir_;
54       else if (head_l_arr_.size ())
55         {
56           dir_ = (head_positions_interval().center () >=  5) ? DOWN:UP;
57         }
58     }
59   Script_column::do_pre_processing();
60 }
61
62   
63
64 void
65 Note_column::set (Stem * stem_l)
66 {
67   add_support (stem_l);
68   stem_l_ = stem_l;
69   /* 
70      don't add stem to support; mostly invisible for rest-columns (and possibly taken . .)
71    */
72   Score_elem::add_dependency (stem_l);
73   for (int i=0; i < script_l_arr_.size(); i++)
74     script_l_arr_[i]->set_stem (stem_l);
75 }
76
77 void
78 Note_column::add (Script *script_l)
79 {
80   Script_column::add (script_l) ;
81   if  (stem_l_)
82     script_l->set_stem (stem_l_);
83 }
84
85 void
86 Note_column::do_substitute_dependency (Score_elem*o, Score_elem*n)
87 {
88   if (stem_l_ == o) 
89     {
90       stem_l_ = n ? (Stem*)n->item():0;
91     }
92   if (o->is_type_b (Note_head::static_name ()))
93     {
94       head_l_arr_.substitute ((Note_head*)o->item(), 
95                               (n)? (Note_head*)n->item() : 0);
96     }
97   Script_column::do_substitute_dependency (o,n);
98   if (o->is_type_b (Rest::static_name ())) 
99     {
100       rest_l_arr_.substitute ((Rest*)o->item(), 
101                               (n)? (Rest*)n->item() : 0);
102     }
103 }
104
105 void
106 Note_column::add (Rhythmic_head *h)
107 {
108   if (h->is_type_b (Rest::static_name ()))
109     {
110       rest_l_arr_.push ((Rest*)h);
111       add_support (h);  
112     }
113   if (h->is_type_b (Note_head::static_name ()))
114     {
115       head_l_arr_.push ((Note_head*) h);
116       add_support (h);
117     }
118 }
119
120 /**
121   translate the rest symbols
122  */
123 void
124 Note_column::translate_rests (int dy_i)
125 {
126   invalidate_cache (Y_AXIS);
127   for (int i=0; i < rest_l_arr_.size(); i++)
128     rest_l_arr_[i]->position_i_ += dy_i;
129 }
130
131 void
132 Note_column::do_print() const
133 {
134 #ifndef NPRINT
135   DOUT << "rests: " << rest_l_arr_.size() << ", ";
136   DOUT << "heads: " << head_l_arr_.size();
137 #endif
138 }
139
140 void
141 Note_column::set (Dot_column *d)
142 {
143   add_element (d);
144 }