2 performance.cc -- implement Performance
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2007 Jan Nieuwenhuizen <janneke@gnu.org>
9 #include "performance.hh"
14 #include "audio-column.hh"
15 #include "audio-staff.hh"
16 #include "file-name.hh"
17 #include "international.hh"
18 #include "lily-version.hh"
20 #include "midi-chunk.hh"
21 #include "midi-stream.hh"
23 #include "string-convert.hh"
26 Performance::Performance ()
31 Performance::~Performance ()
33 junk_pointers (audio_elements_
);
37 Performance::output (Midi_stream
&midi_stream
) const
39 int tracks_
= audio_staffs_
.size ();
41 midi_stream
.write (Midi_header (1, tracks_
, 384));
42 if (be_verbose_global
)
43 progress_indication (_ ("Track...") + " ");
46 for (vsize i
= 0; i
< audio_staffs_
.size (); i
++)
48 Audio_staff
*s
= audio_staffs_
[i
];
49 if (be_verbose_global
)
50 progress_indication ("[" + to_string (i
));
52 int midi_channel
= s
->channel_
;
56 midi_channel
= channel
;
59 MIDI players tend to ignore instrument settings on
60 channel 10, the percussion channel.
62 if (channel
% 16 == 9)
67 Huh? Why does each staff also have a separate channel? We
68 should map channels to voices, not staves. --hwn.
70 if (midi_channel
> 15)
72 warning (_ ("MIDI channel wrapped around"));
73 warning (_ ("remapping modulo 16"));
75 midi_channel
= midi_channel
% 16;
78 s
->output (midi_stream
, midi_channel
);
79 if (be_verbose_global
)
80 progress_indication ("]");
84 Performance::add_element (Audio_element
*p
)
86 audio_elements_
.push_back (p
);
90 Performance::write_output (string out
) const
95 /* Maybe a bit crude, but we had this before */
96 File_name
file_name (out
);
97 file_name
.ext_
= "midi";
98 out
= file_name
.to_string ();
100 Midi_stream
midi_stream (out
);
101 message (_f ("MIDI output to `%s'...", out
));
103 output (midi_stream
);
104 progress_indication ("\n");
109 Performance::process ()
114 unsmob_performance (SCM x
)
116 return dynamic_cast<Performance
*> (unsmob_music_output (x
));