]> git.donarmstrong.com Git - lilypond.git/blob - lily/key-performer.cc
* scm/music-functions.scm (has-request-chord): don't use
[lilypond.git] / lily / key-performer.cc
1 /*
2   key-performer.cc -- implement Key_performer
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2005 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include "music-sequence.hh"
10 #include "audio-item.hh"
11 #include "performer.hh"
12 #include "warn.hh"
13
14 class Key_performer : public Performer
15 {
16 public:
17   TRANSLATOR_DECLARATIONS (Key_performer);
18   ~Key_performer ();
19
20 protected:
21   virtual bool try_music (Music* ev);
22   virtual void create_audio_elements ();
23   virtual void stop_translation_timestep ();
24
25 private:
26   Event* key_ev_;
27   Audio_key* audio_;
28 };
29
30 Key_performer::Key_performer ()
31 {
32   key_ev_ = 0;
33   audio_ = 0;
34 }
35
36 Key_performer::~Key_performer ()
37 {
38 }
39
40 void
41 Key_performer::create_audio_elements ()
42 {
43   if (key_ev_) 
44     {
45       SCM pitchlist = key_ev_->get_property ("pitch-alist");
46       SCM proc = ly_lily_module_constant ("alterations-in-key");
47       
48       SCM acc = scm_call_1 (proc, pitchlist);
49       
50       Pitch key_do (0, 
51                     scm_to_int (scm_caar (pitchlist)),
52                     scm_to_int (scm_cdar (pitchlist)));
53
54       Pitch c_do (0, 0, 0);
55                   
56       SCM c_pitchlist
57         = ly_transpose_key_alist (pitchlist,
58                                   pitch_interval (key_do, c_do).smobbed_copy ());
59
60       /* MIDI keys are too limited for lilypond scales.
61          We check for minor scale and assume major otherwise.  */
62       SCM minor = scm_c_eval_string ("minor");
63       audio_ = new Audio_key (scm_to_int (acc),
64                               SCM_BOOL_T != scm_equal_p (minor, c_pitchlist));
65
66       Audio_element_info info (audio_, key_ev_);
67       announce_element (info);
68       key_ev_ = 0;
69     }
70 }
71
72 void
73 Key_performer::stop_translation_timestep ()
74 {
75   if (audio_)
76     {
77       play_element (audio_);
78       audio_ = 0;
79     }
80 }
81
82 bool
83 Key_performer::try_music (Music* ev)
84 {
85   if (Event *kc = dynamic_cast <Event *> (ev))
86     {
87       if (key_ev_)
88         warning (_ ("FIXME: key change merge"));
89
90       key_ev_ = kc;
91       return true;
92     }
93
94   return false;
95 }
96
97 ADD_TRANSLATOR (Key_performer,
98                   "", "",
99                   "key-change-event",
100                   "", "", "");