]> git.donarmstrong.com Git - lilypond.git/blob - lily/midi-item.cc
Merge branch 'master' into lilypond/translation
[lilypond.git] / lily / midi-item.cc
1 /*
2   midi-item.cc -- implement MIDI items.
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2009 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include "midi-item.hh"
10
11 #include "duration.hh"
12 #include "international.hh"
13 #include "main.hh"
14 #include "midi-stream.hh"
15 #include "misc.hh"
16 #include "program-option.hh"
17 #include "string-convert.hh"
18 #include "warn.hh"
19
20 #define PITCH_WHEEL_TOP 0x3FFF
21 #define PITCH_WHEEL_CENTER 0x2000
22 #define PITCH_WHEEL_BOTTOM 0x0000
23 #define PITCH_WHEEL_RANGE (PITCH_WHEEL_TOP - PITCH_WHEEL_BOTTOM)
24
25 Midi_item *
26 Midi_item::get_midi (Audio_item *a)
27 {
28   if (Audio_key *i = dynamic_cast<Audio_key *> (a))
29     return new Midi_key (i);
30   else if (Audio_instrument *i = dynamic_cast<Audio_instrument *> (a))
31     return i->str_.length () ? new Midi_instrument (i) : 0;
32   else if (Audio_note *i = dynamic_cast<Audio_note *> (a))
33     return new Midi_note (i);
34   else if (Audio_dynamic *i = dynamic_cast<Audio_dynamic *> (a))
35     return new Midi_dynamic (i);
36   else if (Audio_piano_pedal *i = dynamic_cast<Audio_piano_pedal *> (a))
37     return new Midi_piano_pedal (i);
38   else if (Audio_tempo *i = dynamic_cast<Audio_tempo *> (a))
39     return new Midi_tempo (i);
40   else if (Audio_time_signature *i = dynamic_cast<Audio_time_signature *> (a))
41     return new Midi_time_signature (i);
42   else if (Audio_text *i = dynamic_cast<Audio_text *> (a))
43     return new Midi_text (i);
44   else
45     assert (0);
46
47   return 0;
48 }
49
50
51
52 Midi_duration::Midi_duration (Real seconds_f)
53 {
54   seconds_ = seconds_f;
55 }
56
57 string
58 Midi_duration::to_string () const
59 {
60   return string ("<duration: ") + ::to_string (seconds_) + ">";
61 }
62
63 Midi_instrument::Midi_instrument (Audio_instrument *a)
64 {
65   audio_ = a;
66   audio_->str_ = String_convert::to_lower (audio_->str_);
67 }
68
69 string
70 Midi_instrument::to_string () const
71 {
72   Byte program_byte = 0;
73   bool found = false;
74
75   SCM proc = ly_lily_module_constant ("midi-program");
76   SCM program = scm_call_1 (proc, ly_symbol2scm (audio_->str_.c_str ()));
77   found = (program != SCM_BOOL_F);
78   if (found)
79     program_byte = scm_to_int (program);
80   else
81     warning (_f ("no such MIDI instrument: `%s'", audio_->str_.c_str ()));
82
83   string str = ::to_string ((char) (0xc0 + channel_)); //YIKES! FIXME : Should be track. -rz
84   str += ::to_string ((char)program_byte);
85   return str;
86 }
87
88 Midi_item::Midi_item ()
89 {
90 }
91
92 Midi_channel_item::Midi_channel_item ()
93 {
94   channel_ = 0;
95 }
96
97 Midi_item::~Midi_item ()
98 {
99 }
100
101 string
102 int2midi_varint_string (int i)
103 {
104   int buffer = i & 0x7f;
105   while ((i >>= 7) > 0)
106     {
107       buffer <<= 8;
108       buffer |= 0x80;
109       buffer += (i & 0x7f);
110     }
111
112   string str;
113   while (1)
114     {
115       str += ::to_string ((char)buffer);
116       if (buffer & 0x80)
117         buffer >>= 8;
118       else
119         break;
120     }
121   return str;
122 }
123
124 Midi_key::Midi_key (Audio_key *a)
125 {
126   audio_ = a;
127 }
128
129 string
130 Midi_key::to_string () const
131 {
132   string str = "ff5902";
133   str += String_convert::int2hex (audio_->accidentals_, 2, '0');
134   if (audio_->major_)
135     str += String_convert::int2hex (0, 2, '0');
136   else
137     str += String_convert::int2hex (1, 2, '0');
138   return String_convert::hex2bin (str);
139 }
140
141 Midi_time_signature::Midi_time_signature (Audio_time_signature *a)
142 {
143   audio_ = a;
144   clocks_per_1_ = 18;
145 }
146
147 string
148 Midi_time_signature::to_string () const
149 {
150   int num = abs (audio_->beats_);
151   if (num > 255)
152     {
153       warning ("Time signature with more than 255 beats. Truncating");
154       num = 255;
155     }
156
157   int den = audio_->one_beat_;
158
159
160   
161   string str = "ff5804";
162   str += String_convert::int2hex (num, 2, '0');
163   str += String_convert::int2hex (intlog2 (den), 2, '0');
164   str += String_convert::int2hex (clocks_per_1_, 2, '0');
165   str += String_convert::int2hex (8, 2, '0');
166   return String_convert::hex2bin (str);
167 }
168
169 Midi_note::Midi_note (Audio_note *a)
170 {
171   audio_ = a;
172   dynamic_byte_ = 0x5a;
173 }
174
175
176 int
177 Midi_note::get_fine_tuning () const
178 {
179   Rational tune = (audio_->pitch_.tone_pitch ()
180                    + audio_->transposing_.tone_pitch ()) * Rational (2);
181   tune -= Rational (get_semitone_pitch ());
182
183   tune *= 100;
184   return (int) double (tune);
185 }
186
187 int
188 Midi_note::get_semitone_pitch () const
189 {
190   return int (double ((audio_->pitch_.tone_pitch ()
191                        + audio_->transposing_.tone_pitch ()) * Rational (2)));
192 }
193
194 string
195 Midi_note::to_string () const
196 {
197   Byte status_byte = (char) (0x90 + channel_);
198   string str = "";
199   int finetune;
200
201   // print warning if fine tuning was needed, HJJ
202   if (get_fine_tuning () != 0)
203     {
204       finetune = PITCH_WHEEL_CENTER;
205       // Move pitch wheel to a shifted position.
206       // The pitch wheel range (of 4 semitones) is multiplied by the cents.
207       finetune += (PITCH_WHEEL_RANGE *get_fine_tuning ()) / (4 * 100);
208
209       str += ::to_string ((char) (0xE0 + channel_));
210       str += ::to_string ((char) (finetune & 0x7F));
211       str += ::to_string ((char) (finetune >> 7));
212       str += ::to_string ((char) (0x00));
213     }
214
215   str += ::to_string ((char) status_byte);
216   str += ::to_string ((char) (get_semitone_pitch () + c0_pitch_));
217   str += ::to_string ((char) dynamic_byte_);
218
219   return str;
220 }
221
222 Midi_note_off::Midi_note_off (Midi_note *n)
223   : Midi_note (n->audio_)
224 {
225   on_ = n;
226   channel_ = n->channel_;
227
228   // use note_on with velocity=0 instead of note_off
229   aftertouch_byte_ = 0;
230 }
231
232 string
233 Midi_note_off::to_string () const
234 {
235   Byte status_byte = (char) (0x90 + channel_);
236
237   string str = ::to_string ((char)status_byte);
238   str += ::to_string ((char) (get_semitone_pitch () + Midi_note::c0_pitch_));
239   str += ::to_string ((char)aftertouch_byte_);
240
241   if (get_fine_tuning () != 0)
242     {
243       // Move pitch wheel back to the central position.
244       str += ::to_string ((char) 0x00);
245       str += ::to_string ((char) (0xE0 + channel_));
246       str += ::to_string ((char) (PITCH_WHEEL_CENTER &0x7F));
247       str += ::to_string ((char) (PITCH_WHEEL_CENTER >> 7));
248     }
249
250   return str;
251 }
252
253 Midi_dynamic::Midi_dynamic (Audio_dynamic *a)
254 {
255   audio_ = a;
256 }
257
258 string
259 Midi_dynamic::to_string () const
260 {
261   Byte status_byte = (char) (0xB0 + channel_);
262   string str = ::to_string ((char)status_byte);
263
264   /*
265     Main volume controller (per channel):
266     07 MSB
267     27 LSB
268   */
269   static Real const full_scale = 127;
270
271   int volume = (int) (audio_->volume_ * full_scale);
272   if (volume <= 0)
273     volume = 1;
274   if (volume > full_scale)
275     volume = (int)full_scale;
276
277   str += ::to_string ((char)0x07);
278   str += ::to_string ((char)volume);
279   return str;
280 }
281
282 Midi_piano_pedal::Midi_piano_pedal (Audio_piano_pedal *a)
283 {
284   audio_ = a;
285 }
286
287 string
288 Midi_piano_pedal::to_string () const
289 {
290   Byte status_byte = (char) (0xB0 + channel_);
291   string str = ::to_string ((char)status_byte);
292
293   if (audio_->type_string_ == "Sostenuto")
294     str += ::to_string ((char)0x42);
295   else if (audio_->type_string_ == "Sustain")
296     str += ::to_string ((char)0x40);
297   else if (audio_->type_string_ == "UnaCorda")
298     str += ::to_string ((char)0x43);
299
300   int pedal = ((1 - audio_->dir_) / 2) * 0x7f;
301   str += ::to_string ((char)pedal);
302   return str;
303 }
304
305 Midi_tempo::Midi_tempo (Audio_tempo *a)
306 {
307   audio_ = a;
308 }
309
310 string
311 Midi_tempo::to_string () const
312 {
313   int useconds_per_4 = 60 * (int)1e6 / audio_->per_minute_4_;
314   string str = "ff5103";
315   str += String_convert::int2hex (useconds_per_4, 6, '0');
316   return String_convert::hex2bin (str);
317 }
318
319 Midi_text::Midi_text (Audio_text *a)
320 {
321   audio_ = a;
322 }
323
324 string
325 Midi_text::to_string () const
326 {
327   string str = "ff" + String_convert::int2hex (audio_->type_, 2, '0');
328   str = String_convert::hex2bin (str);
329   str += int2midi_varint_string (audio_->text_string_.length ());
330   str += audio_->text_string_;
331   return str;
332 }
333
334 char const *
335 Midi_item::name () const
336 {
337    return this->class_name ();
338 }