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