]> git.donarmstrong.com Git - lilypond.git/blob - lily/axis-group-spanner.cc
release: 1.1.32
[lilypond.git] / lily / axis-group-spanner.cc
1 /*
2   axis-group-spanner.cc -- implement Axis_group_spanner
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "axis-group-spanner.hh"
10 #include "debug.hh"
11 #include "item.hh"
12 #include "p-col.hh"
13
14 /** Do stuff if we're not broken. In this case the last and first
15   columns usually are pre- and postbreak respectively,
16   so the items from these columns need adjusting.
17   */
18 void
19 Axis_group_spanner::do_break_processing_if_unbroken()
20 {
21   Link_array<Score_element> elems = elem_l_arr ();
22   Line_of_score *my_line = line_l();
23   for (int i=0; i < elems.size(); i++) 
24     {
25       if (!elems[i]->line_l()) 
26         {
27           Item * item_l = dynamic_cast<Item*> (elems[i]);
28           if  (item_l
29                && item_l->breakable_b_ 
30                && item_l->break_status_dir() == 0) 
31             {
32               // last two checks are paranoia
33               Item * broken_item_l = 
34                 item_l->find_prebroken_piece (my_line);
35               add_element (broken_item_l);
36             }
37           remove_element (elems[i]);  
38         }
39     }
40 }
41
42 void
43 Axis_group_spanner::do_break_processing()
44 {
45   DOUT << "do_break_processing ()\n";
46   bool breaking_self_b = ! Spanner::line_l();
47   if (!breaking_self_b)  
48     {
49       do_break_processing_if_unbroken();
50       Spanner::do_break_processing();
51       return;
52     }
53
54   break_into_pieces ();
55   Link_array<Score_element> loose_elems = elem_l_arr ();
56   remove_all();
57   
58   for (int i=0; i < loose_elems.size(); i++) 
59     {
60       Score_element * elt = loose_elems[i];
61       Line_of_score *elt_line = elt->line_l();
62         
63       if (! elt_line)
64         {
65           /* this piece doesn't know where it belongs.
66              Find out if it was broken, and use the broken remains
67              */
68
69           Item *it = dynamic_cast <Item *> (elt) ;        
70           if (Spanner * sp =dynamic_cast <Spanner *> (elt))
71             {
72               for (int j =0; j < sp->broken_info_.size(); j++) 
73                 {
74                   Line_of_score *l = sp->broken_info_[j].line_l_;
75
76                   Axis_group_spanner * my_broken_l
77                     = dynamic_cast<Axis_group_spanner*>(find_broken_piece (l));
78                   
79                   Spanner * broken_span_l 
80                     = sp->find_broken_piece (l);
81                     
82                   if (broken_span_l) 
83                     my_broken_l->add_element (broken_span_l);
84                 }
85             }
86           else if (it && it->breakable_b_ && it->break_status_dir () == 0) 
87             {
88               // broken items
89               Direction  j=LEFT;
90               do 
91                 {
92                   Item * my_item = it->broken_to_drul_[j];
93                   Line_of_score * item_line_l = my_item->line_l() ;
94                   if (! item_line_l) 
95                     continue;
96                     
97                   Axis_group_spanner * v
98                     = dynamic_cast<Axis_group_spanner*>(find_broken_piece (item_line_l));
99                   if (v)
100                     v->add_element (my_item);
101                   else
102                     {
103                       my_item->transparent_b_ = true;
104                       my_item->set_empty (true);
105                       /*my_item->unlink ();
106                       delete my_item;*/
107                     }
108
109                 }
110               while (flip(&j) != LEFT);
111             }
112         }
113       else 
114         {
115           /* this piece *does* know where it belongs.
116              Put it in appropriate piece of this spanner
117              */
118           Axis_group_spanner * my_broken_l
119             = dynamic_cast<Axis_group_spanner*> (find_broken_piece (elt->line_l()));
120           my_broken_l->add_element (elt);
121         }
122     }
123   
124   Spanner::do_break_processing();
125 }
126
127 void
128 Axis_group_spanner::do_print() const
129 {
130   Axis_group_element::do_print();
131
132   Spanner::do_print ();
133 }
134
135
136
137