]> git.donarmstrong.com Git - lilypond.git/blob - lily/performance.cc
add 2007 to (c) year.
[lilypond.git] / lily / performance.cc
1 /*
2   performance.cc -- implement Performance
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2007 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include "performance.hh"
10
11 #include <ctime>
12 using namespace std;
13
14 #include "audio-column.hh"
15 #include "audio-staff.hh"
16 #include "file-name.hh"
17 #include "international.hh"
18 #include "lily-version.hh"
19 #include "main.hh"
20 #include "midi-item.hh"
21 #include "midi-stream.hh"
22 #include "score.hh"
23 #include "string-convert.hh"
24 #include "warn.hh"
25
26 Performance::Performance ()
27 {
28   midi_ = 0;
29 }
30
31 Performance::~Performance ()
32 {
33   junk_pointers (audio_elements_);
34 }
35
36 void
37 Performance::output (Midi_stream &midi_stream)
38 {
39   int tracks_ = audio_staffs_.size ();
40
41   // ugh
42   int clocks_per_4 = 384;
43
44   midi_stream << Midi_header (1, tracks_, clocks_per_4);
45   message (_ ("Track...") + " ");
46   
47   int channel = 0;
48   for (vsize i = 0; i < audio_staffs_.size (); i++)
49     {
50       Audio_staff *s = audio_staffs_[i];
51       if (be_verbose_global)
52         progress_indication ("[" + to_string (i));
53
54       int midi_channel =  s->channel_;
55
56       if (midi_channel < 0)
57         {
58           midi_channel = channel;
59           channel ++;
60           /*
61             MIDI players tend to ignore instrument settings on
62             channel 10, the percussion channel.
63           */
64           if (channel % 16 == 9)
65             channel ++;
66         }
67
68       /*
69         Huh? Why does each staff also have a separate channel? We
70         should map channels to voices, not staves. --hwn.
71       */
72       if (midi_channel > 15)
73         {
74           warning (_ ("MIDI channel wrapped around"));
75           warning (_ ("remapping modulo 16"));
76
77           midi_channel = midi_channel % 16; 
78         }
79
80       s->output (midi_stream, midi_channel);
81       if (be_verbose_global)
82         progress_indication ("]");
83     }
84 }
85 void
86 Performance::add_element (Audio_element *p)
87 {
88   audio_elements_.push_back (p);
89 }
90
91 void
92 Performance::write_output (string out)
93 {
94   if (out == "-")
95     out = "lelie.midi";
96
97   /* Maybe a bit crude, but we had this before */
98   File_name file_name (out);
99   file_name.ext_ = "midi";
100   out = file_name.to_string ();
101
102   Midi_stream midi_stream (out);
103   message (_f ("MIDI output to `%s'...", out));
104
105   output (midi_stream);
106   progress_indication ("\n");
107 }
108
109