]> git.donarmstrong.com Git - lilypond.git/blob - lily/chord-name-engraver.cc
patch::: 1.3.109.jcn1
[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 stop_translation_timestep ();
30   virtual void acknowledge_grob (Grob_info i);
31   virtual void create_grobs ();
32   virtual bool 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::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 void
81 Chord_name_engraver::acknowledge_grob (Grob_info i)
82 {
83   if (Note_req* n = dynamic_cast<Note_req*> (i.req_l_))
84     add_note (n);
85 }
86
87 void
88 Chord_name_engraver::create_grobs ()
89 {
90   if (!chord_name_p_ && gh_car (chord_) != SCM_EOL)
91     {
92       chord_name_p_ = new Item (get_property ("ChordName"));
93       chord_name_p_->set_grob_property ("chord", chord_);
94       announce_grob (chord_name_p_, 0);
95       SCM s = get_property ("drarnChords"); //FIXME!
96       if (to_boolean (s) && last_chord_ != SCM_EOL &&
97           gh_equal_p (chord_, last_chord_))
98         chord_name_p_->set_grob_property ("begin-of-line-visible", SCM_BOOL_T);
99     }
100 }
101
102 void
103 Chord_name_engraver::stop_translation_timestep ()
104 {
105   if (chord_name_p_)
106     {
107       typeset_grob (chord_name_p_);
108     }
109   chord_name_p_ = 0;
110
111   last_chord_ = chord_;
112   chord_ = gh_cons (SCM_EOL, gh_cons (SCM_EOL, SCM_EOL));
113 }
114