]> git.donarmstrong.com Git - lilypond.git/blob - lily/grace-position-engraver.cc
patch::: 1.3.18.jcn1
[lilypond.git] / lily / grace-position-engraver.cc
1 /*   
2   grace-position-engraver.cc --  implement Grace_position_engraver
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "engraver.hh"
11 #include "grace-align-item.hh"
12 #include "note-head.hh"
13 #include "local-key-item.hh"
14 #include "paper-column.hh"
15 #include "dimension-cache.hh"
16
17 class Grace_position_engraver:public Engraver
18 {
19   Paper_column *last_musical_col_l_;
20 protected:
21   VIRTUAL_COPY_CONS(Translator);
22   virtual void acknowledge_element (Score_element_info);
23   virtual void process_acknowledged ();
24   virtual void do_post_move_processing ();
25   virtual void do_pre_move_processing ();
26   Grace_align_item*align_l_;
27   Link_array<Item> support_;
28 public:
29   Grace_position_engraver();
30 };
31
32 ADD_THIS_TRANSLATOR (Grace_position_engraver);
33
34 Grace_position_engraver::Grace_position_engraver ()
35 {
36   align_l_ =0;
37   last_musical_col_l_ =0;
38 }
39
40 void
41 Grace_position_engraver::acknowledge_element (Score_element_info i)
42 {
43   if (Grace_align_item*g  =dynamic_cast<Grace_align_item*>(i.elem_l_))
44     {
45       align_l_ = g;
46     }
47   else if (Note_head * n = dynamic_cast <Note_head*> (i.elem_l_))
48     {
49       if (!to_boolean (n->get_elt_property ("grace")))
50         support_.push (n);
51     }
52   else if (Local_key_item*it = dynamic_cast<Local_key_item*>(i.elem_l_))
53     {
54       if (!to_boolean (it->get_elt_property ("grace")))
55         support_.push (it);
56       else if (align_l_) 
57         it->add_dependency (align_l_);
58     }
59 }
60
61 void
62 Grace_position_engraver::process_acknowledged ()
63 {
64   if (align_l_)
65     {
66       for (int i=0; i < support_.size (); i++)
67         align_l_->add_support (support_[i]);
68       support_.clear ();
69     }
70 }
71
72 void
73 Grace_position_engraver::do_pre_move_processing ()
74 {
75   /*
76      We don't have support. Either some moron tried attaching us to a rest,
77      or we're at the end of the piece.  In the latter case, we have a
78      problem if there are spanners in the grace section,
79      they will want to  be broken into pieces (their line_l () field  is nil).
80
81      Solution: attach ourselves to  the last musical column known.  A little intricate.
82      
83   */
84   if (align_l_ && !align_l_->supported_b ())
85     {
86       Score_element * elt = align_l_->parent_l (X_AXIS);
87       if (elt)
88         return;
89
90       warning (_("Unattached grace notes.  Attaching to last musical column."));
91       /*      if (ae)
92         ae->remove_element (align_l_);
93         else if (elt)*/
94
95       
96       align_l_->set_parent (0, X_AXIS);
97       last_musical_col_l_->add_element (align_l_);
98     }
99
100   last_musical_col_l_ = get_staff_info ().musical_pcol_l ();
101 }
102
103 void
104 Grace_position_engraver::do_post_move_processing ()
105 {
106   support_.clear ();
107   align_l_ =0;
108 }
109