]> git.donarmstrong.com Git - lilypond.git/blob - lily/key-performer.cc
Issue 4814: grob.cc segfaults with gcc6
[lilypond.git] / lily / key-performer.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2015 Jan Nieuwenhuizen <janneke@gnu.org>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "audio-item.hh"
21 #include "music-sequence.hh"
22 #include "performer.hh"
23 #include "stream-event.hh"
24 #include "warn.hh"
25 #include "lily-imports.hh"
26
27 #include "translator.icc"
28
29 class Key_performer : public Performer
30 {
31 public:
32   TRANSLATOR_DECLARATIONS (Key_performer);
33   ~Key_performer ();
34
35 protected:
36   void process_music ();
37   void stop_translation_timestep ();
38
39   void listen_key_change (Stream_event *);
40 private:
41   Stream_event *key_ev_;
42   Audio_key *audio_;
43 };
44
45 Key_performer::Key_performer ()
46 {
47   key_ev_ = 0;
48   audio_ = 0;
49 }
50
51 Key_performer::~Key_performer ()
52 {
53 }
54
55 void
56 Key_performer::process_music ()
57 {
58   if (key_ev_)
59     {
60       SCM pitchlist = key_ev_->get_property ("pitch-alist");
61
62       SCM acc = Lily::alterations_in_key (pitchlist);
63
64       Pitch key_do (0,
65                     scm_to_int (scm_caar (pitchlist)),
66                     ly_scm2rational (scm_cdar (pitchlist)));
67
68       Pitch c_do;
69
70       SCM c_pitchlist
71         = ly_transpose_key_alist (pitchlist,
72                                   pitch_interval (key_do, c_do).smobbed_copy ());
73
74       /* MIDI keys are too limited for lilypond scales.
75          We check for minor scale and assume major otherwise.  */
76
77       SCM third = scm_assoc (scm_from_int (2),
78                              c_pitchlist);
79       bool minor = (scm_is_pair (third)
80                     && scm_is_number (scm_cdr (third))
81                     && ly_scm2rational (scm_cdr (third)) == FLAT_ALTERATION);
82
83       audio_ = new Audio_key (scm_to_int (acc),
84                               !minor);
85
86       Audio_element_info info (audio_, key_ev_);
87       announce_element (info);
88       key_ev_ = 0;
89     }
90 }
91
92 void
93 Key_performer::stop_translation_timestep ()
94 {
95   if (audio_)
96     {
97       audio_ = 0;
98     }
99 }
100
101 void
102 Key_performer::listen_key_change (Stream_event *ev)
103 {
104   if (!key_ev_)
105     key_ev_ = ev;
106 }
107
108 void
109 Key_performer::boot ()
110 {
111   ADD_LISTENER (Key_performer, key_change);
112 }
113
114 ADD_TRANSLATOR (Key_performer,
115                 /* doc */
116                 "",
117
118                 /* create */
119                 "",
120
121                 /* read */
122                 "",
123
124                 /* write */
125                 ""
126                );