]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-column.cc
release: 1.1.18
[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--1998 Han-Wen Nienhuys <hanwen@cs.uu.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
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   Interval_t<int>  iv;
42
43   iv.set_empty ();
44
45   if (head_l_arr_.size ())
46     iv = Interval_t<int>(head_l_arr_[0]->position_i_, 
47                          head_l_arr_.top()->position_i_);
48   
49   return iv;
50 }
51
52 /*
53 Interval 
54 Note_column::do_width () const
55 {
56   if (head_l_arr_.size ())
57     return head_l_arr_[0]->extent (X_AXIS);
58   else
59     return Interval (0,0);
60 }
61 */
62 void
63 Note_column::do_pre_processing()
64 {
65   if (!dir_)
66     {
67       if (stem_l_)
68         dir_ = stem_l_->dir_;
69       else if (head_l_arr_.size ())
70         {
71           assert (false);       // looks obsolete?
72           dir_ = sign (head_positions_interval().center ());
73         }
74     }
75   Script_column::do_pre_processing();
76 }
77
78   
79
80 void
81 Note_column::set_stem (Stem * stem_l)
82 {
83   add_support (stem_l);
84   stem_l_ = stem_l;
85   /* 
86      don't add stem to support; mostly invisible for rest-columns (and possibly taken . .)
87   */
88   Score_element::add_dependency (stem_l);
89   for (int i=0; i < script_l_arr_.size(); i++)
90     script_l_arr_[i]->set_stem (stem_l);
91 }
92
93 void
94 Note_column::add_script (Script *script_l)
95 {
96   Script_column::add_script (script_l) ;
97   if  (stem_l_)
98     script_l->set_stem (stem_l_);
99 }
100
101 void
102 Note_column::do_substitute_dependency (Score_element*o, Score_element*n)
103 {
104   if (stem_l_ == o) 
105     {
106       stem_l_ = n ? dynamic_cast<Stem *> (n):0;
107     }
108   if (dynamic_cast<Note_head *> (o))
109     {
110       head_l_arr_.substitute (dynamic_cast<Note_head *> (o), 
111                               (n)? dynamic_cast<Note_head *> (n) : 0);
112     }
113   Script_column::do_substitute_dependency (o,n);
114   if (dynamic_cast<Rest *> (o)) 
115     {
116       rest_l_arr_.substitute (dynamic_cast<Rest *> (o), 
117                               (n)? dynamic_cast<Rest *> (n) : 0);
118     }
119 }
120
121 void
122 Note_column::add_head (Rhythmic_head *h)
123 {
124   if (dynamic_cast<Rest *> (h))
125     {
126       rest_l_arr_.push ((Rest*)h);
127       add_support (h);  
128     }
129   if (dynamic_cast<Note_head *> (h))
130     {
131       head_l_arr_.push ((Note_head*) h);
132       add_support (h);
133     }
134 }
135
136 /**
137   translate the rest symbols
138  */
139 void
140 Note_column::translate_rests (int dy_i)
141 {
142   invalidate_cache (Y_AXIS);
143   for (int i=0; i < rest_l_arr_.size(); i++)
144     rest_l_arr_[i]->position_i_ += dy_i;
145 }
146
147 void
148 Note_column::do_print() const
149 {
150 #ifndef NPRINT
151   DOUT << "rests: " << rest_l_arr_.size() << ", ";
152   DOUT << "heads: " << head_l_arr_.size();
153 #endif
154 }
155
156 void
157 Note_column::set_dotcol (Dot_column *d)
158 {
159   add_element (d);
160 }