(Which properties to
[lilypond.git] / lily / dynamic-performer.cc
blob97641a729769059d72083958339cff5725d1a8f7
1 /*
2 dynamic-performer.cc -- implement Dynamic_performer
4 source file of the GNU LilyPond music typesetter
6 (c) 2000--2004 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
9 #include "performer.hh"
11 #include "event.hh"
12 #include "audio-item.hh"
15 TODO:
17 handle multiple events
19 perform absolute (text) dynamics
21 class Dynamic_performer : public Performer
23 public:
24 TRANSLATOR_DECLARATIONS (Dynamic_performer);
25 protected:
26 virtual bool try_music (Music* req);
27 virtual void stop_translation_timestep ();
28 virtual void create_audio_elements ();
30 private:
31 Music* script_req_;
32 Audio_dynamic* audio_;
35 Dynamic_performer::Dynamic_performer ()
37 script_req_ = 0;
38 audio_ = 0;
41 void
42 Dynamic_performer::create_audio_elements ()
44 if (script_req_)
46 SCM proc = get_property ("dynamicAbsoluteVolumeFunction");
48 SCM svolume = SCM_EOL;
49 if (gh_procedure_p (proc))
51 // urg
52 svolume = gh_call1 (proc, script_req_->get_property ("text"));
55 Real volume = robust_scm2double (svolume, 0.5);
58 properties override default equaliser setting
60 SCM min = get_property ("midiMinimumVolume");
61 SCM max = get_property ("midiMaximumVolume");
62 if (gh_number_p (min) || gh_number_p (max))
64 Interval iv (0, 1);
65 if (gh_number_p (min))
66 iv[MIN] = gh_scm2double (min);
67 if (gh_number_p (max))
68 iv[MAX] = gh_scm2double (max);
69 volume = iv[MIN] + iv.length () * volume;
71 else
74 urg, code duplication:: staff_performer
76 SCM s = get_property ("midiInstrument");
78 if (!gh_string_p (s))
79 s = get_property ("instrument");
81 if (!gh_string_p (s))
82 s = scm_makfrom0str ("piano");
85 SCM eq = get_property ("instrumentEqualizer");
86 if (gh_procedure_p (eq))
88 s = gh_call1 (eq, s);
91 if (is_number_pair (s))
93 Interval iv = ly_scm2interval (s);
94 volume = iv[MIN] + iv.length () * volume;
98 audio_ = new Audio_dynamic (volume);
99 Audio_element_info info (audio_, script_req_);
100 announce_element (info);
101 script_req_ = 0;
105 void
106 Dynamic_performer::stop_translation_timestep ()
108 if (audio_)
110 play_element (audio_);
111 audio_ = 0;
115 bool
116 Dynamic_performer::try_music (Music* r)
118 if (!script_req_)
120 if (r->is_mus_type ("absolute-dynamic-event")) // fixme.
122 script_req_ = r;
123 return true;
126 return false;
129 ENTER_DESCRIPTION (Dynamic_performer,
130 /*descr*/ "",
131 /* creats*/ "",
132 /* accepts */ "absolute-dynamic-event",
133 /* acks */ "",
134 /*reads */"dynamicAbsoluteVolumeFunction midiMaximumVolume midiMinimumVolume midiInstrument instrumentEqualizer",
135 /*writes*/"");