]> git.donarmstrong.com Git - lilypond.git/blob - lily/chord-name-engraver.cc
patch::: 1.3.108.jcn3
[lilypond.git] / lily / chord-name-engraver.cc
1 /*
2   chord-name-engraver.cc -- implement Chord_name_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2000 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include "engraver.hh"
10 #include "chord-name.hh"
11 #include "chord.hh"
12 #include "musical-request.hh"
13 #include "paper-def.hh"
14 #include "font-interface.hh"
15 #include "paper-def.hh"
16 #include "main.hh"
17 #include "dimensions.hh"
18 #include "item.hh"
19 #include "pitch.hh"
20 #include "protected-scm.hh"
21
22 class Chord_name_engraver : public Engraver 
23 {
24 public:
25   Chord_name_engraver ();
26   VIRTUAL_COPY_CONS (Translator);
27
28 protected:
29   virtual void do_pre_move_processing ();
30   virtual void acknowledge_element (Score_element_info i);
31   void deprecated_process_music ();
32   virtual bool do_try_music (Music *);
33
34 private:
35   void add_note (Note_req *);
36   
37   Item* chord_name_p_;
38   Protected_scm chord_;
39   Protected_scm last_chord_;
40 };
41
42 ADD_THIS_TRANSLATOR (Chord_name_engraver);
43
44 Chord_name_engraver::Chord_name_engraver ()
45 {
46   chord_name_p_ = 0;
47   chord_ = gh_cons (SCM_EOL, gh_cons (SCM_EOL, SCM_EOL));
48   last_chord_ = gh_cons (SCM_EOL, gh_cons (SCM_EOL, SCM_EOL));
49 }
50
51 void
52 Chord_name_engraver::add_note (Note_req* n)
53 {
54   SCM pitches = gh_car (chord_);
55   SCM modifiers = gh_cdr (chord_);
56   SCM inversion = modifiers == SCM_EOL ? SCM_EOL : gh_car (modifiers);
57   SCM bass = modifiers == SCM_EOL ? SCM_EOL : gh_cdr (modifiers);
58   
59   if (n->get_mus_property ("inversion") == SCM_BOOL_T)
60     inversion = n->get_mus_property ("pitch");
61   else if (n->get_mus_property ("bass") == SCM_BOOL_T)
62     bass = n->get_mus_property ("pitch");
63   else
64     pitches = scm_sort_list (gh_cons (n->get_mus_property ("pitch"), pitches),
65                              Pitch::less_p_proc);
66   chord_ = gh_cons (pitches, gh_cons (inversion, bass));
67 }
68
69 bool
70 Chord_name_engraver::do_try_music (Music* m)
71 {
72   if (Note_req* n = dynamic_cast<Note_req*> (m))
73     {
74       add_note (n);
75       return true;
76     }
77   return false;
78 }
79
80 /* Uh, if we do acknowledge_element, shouldn't we postpone
81   deprecated_process_music until do_process_acknowlegded?
82
83    Sigh, I can *never* remember how this works, can't we
84    possibly-please just number these functions:
85
86      do_creation0
87      
88      post_move1
89      do_try_music2
90   deprecated_process_music3 (or is it acknowledge_element3 ?)
91      acknowledge_element4
92   
93      do_pre_move9
94      
95      do_removal99
96
97   and what was the deal with this ``do'' prefix again? */
98 void
99 Chord_name_engraver::acknowledge_element (Score_element_info i)
100 {
101   if (Note_req* n = dynamic_cast<Note_req*> (i.req_l_))
102     add_note (n);
103 }
104
105 void
106 Chord_name_engraver::deprecated_process_music ()
107 {
108   if (!chord_name_p_ && gh_car (chord_) != SCM_EOL)
109     {
110 #if 0
111       bool find_inversion_b = false;
112       SCM chord_inversion = get_property ("chordInversion");
113       if (gh_boolean_p (chord_inversion))
114         find_inversion_b = gh_scm2bool (chord_inversion);
115
116       chord_ = Chord::pitches_and_requests_to_chord (pitches_,
117                                                      inversion_,
118                                                      bass_,
119                                                      find_inversion_b);
120
121 #endif
122       
123       chord_name_p_ = new Item (get_property ("ChordName"));
124       chord_name_p_->set_elt_property ("chord", chord_);
125       announce_element (chord_name_p_, 0);
126       SCM s = get_property ("drarnChords"); //FIXME!
127       if (to_boolean (s) && last_chord_ != SCM_EOL &&
128           gh_equal_p (chord_, last_chord_))
129         chord_name_p_->set_elt_property ("begin-of-line-visible", SCM_BOOL_T);
130     }
131 }
132
133 void
134 Chord_name_engraver::do_pre_move_processing ()
135 {
136   if (chord_name_p_)
137     {
138       typeset_element (chord_name_p_);
139     }
140   chord_name_p_ = 0;
141
142   last_chord_ = chord_;
143   chord_ = gh_cons (SCM_EOL, gh_cons (SCM_EOL, SCM_EOL));
144 }
145