]> git.donarmstrong.com Git - lilypond.git/blob - lily/performance.cc
Issue 4550 (1/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / performance.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 "performance.hh"
21
22 #include <ctime>
23 using namespace std;
24
25 #include "audio-column.hh"
26 #include "audio-item.hh"
27 #include "audio-staff.hh"
28 #include "file-name.hh"
29 #include "international.hh"
30 #include "lily-version.hh"
31 #include "main.hh"
32 #include "midi-chunk.hh"
33 #include "midi-stream.hh"
34 #include "score.hh"
35 #include "string-convert.hh"
36 #include "warn.hh"
37
38 using std::string;
39
40 Performance::Performance (bool ports)
41   : midi_ (0),
42     ports_ (ports),
43     header_ (SCM_EOL)
44 {
45 }
46
47 Performance::~Performance ()
48 {
49   junk_pointers (audio_elements_);
50 }
51
52 void
53 Performance::derived_mark () const
54 {
55   scm_gc_mark (header_);
56 }
57
58 SCM
59 Performance::get_header () const
60 {
61   return header_;
62 }
63
64 void
65 Performance::set_header (SCM module)
66 {
67   assert (ly_is_module (module));
68   header_ = module;
69 }
70
71 void
72 Performance::output (Midi_stream &midi_stream,
73                      const string &performance_name) const
74 {
75   int tracks_ = audio_staffs_.size ();
76
77   midi_stream.write (Midi_header (1, tracks_, 384));
78   debug_output (_ ("Track...") + " ", false);
79
80   //Find the first Audio_item in the performance, so all staves start
81   //at the same tick.
82   Moment start_mom = 0;
83   for (vsize i = 0; i < audio_elements_.size (); i++)
84     if (Audio_item *item = dynamic_cast<Audio_item *>(audio_elements_[i]))
85       start_mom = min (start_mom, item->audio_column_->when ());
86
87   for (vsize i = 0; i < audio_staffs_.size (); i++)
88     {
89       Audio_staff *s = audio_staffs_[i];
90       if (Audio_control_track_staff *c =
91           dynamic_cast<Audio_control_track_staff *>(s))
92         {
93           // The control track, created by Control_track_performer, should
94           // contain a placeholder for the name of the MIDI sequence as its
95           // initial audio element.  Fill in the name of the sequence to
96           // this element before outputting MIDI.
97           assert (!c->audio_items_.empty ());
98           Audio_text *text =
99             dynamic_cast<Audio_text *>(c->audio_items_.front ());
100           assert (text != 0);
101           assert (text->type_ == Audio_text::TRACK_NAME);
102           assert (text->text_string_ == "control track");
103           text->text_string_ = performance_name;
104         }
105       debug_output ("[" + ::to_string (i), true);
106       s->output (midi_stream, i, ports_, moment_to_ticks (start_mom));
107       debug_output ("]", false);
108     }
109 }
110
111 void
112 Performance::add_element (Audio_element *p)
113 {
114   audio_elements_.push_back (p);
115 }
116
117 void
118 Performance::write_output (string out, const string &performance_name) const
119 {
120   if (out == "-")
121     out = "lelie.midi";
122
123   /* Maybe a bit crude, but we had this before */
124   File_name file_name (out);
125   out = file_name.to_string ();
126
127   Midi_stream midi_stream (out);
128   message (_f ("MIDI output to `%s'...", out));
129
130   output (midi_stream, performance_name);
131   progress_indication ("\n");
132 }
133
134 void
135 Performance::process ()
136 {
137 }