summaryrefslogtreecommitdiff
path: root/ly/performer-init.ly
blob: 00c4bdf3dabcd3b64b4b07ac369acc627cbf78b5 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
%%%% This file is part of LilyPond, the GNU music typesetter.
%%%%
%%%% Copyright (C) 1996--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
%%%%                          Jan Nieuwenhuizen <janneke@gnu.org>
%%%%
%%%% LilyPond is free software: you can redistribute it and/or modify
%%%% it under the terms of the GNU General Public License as published by
%%%% the Free Software Foundation, either version 3 of the License, or
%%%% (at your option) any later version.
%%%%
%%%% LilyPond is distributed in the hope that it will be useful,
%%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
%%%% GNU General Public License for more details.
%%%%
%%%% You should have received a copy of the GNU General Public License
%%%% along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.

\version "2.19.16"

%%
%% setup for Request->Element conversion.
%%
\context {
  \type "Performer_group"
  \name Staff
  \accepts CueVoice
  \accepts NullVoice
  \accepts Voice
  \defaultchild Voice

  \consists "Staff_performer"
  \consists "Key_performer"
  \consists "Midi_control_function_performer"
}

\context {
  \name Global
  \accepts Score
  \defaultchild Score
  \description "Hard coded entry point for LilyPond.  Cannot be tuned."
}

\context {
  \Staff
  \name KievanStaff
  \alias Staff
  \denies Voice
  \accepts KievanVoice
  \defaultchild KievanVoice
}

\context {
  \Staff
  \name VaticanaStaff
  \alias Staff
  \denies Voice
  \accepts VaticanaVoice
  \defaultchild VaticanaVoice
}

\context {
  \Staff
  \name MensuralStaff
  \alias Staff
  \denies Voice
  \accepts MensuralVoice
  \defaultchild MensuralVoice
}

\context {
  \Staff
  \name PetrucciStaff
  \alias Staff
  \denies Voice
  \accepts PetrucciVoice
  \defaultchild PetrucciVoice
}

\context {
  \Staff
  \name GregorianTranscriptionStaff
  \alias Staff
  \denies Voice
  \accepts GregorianTranscriptionVoice
  \defaultchild GregorianTranscriptionVoice
}

\context {
  \Staff
  \name DrumStaff
  \alias Staff
  midiInstrument = #"drums"
  \denies Voice
  \accepts DrumVoice
  \defaultchild DrumVoice
}

\context {
  \type "Performer_group"
  \name Voice
  \consists "Dynamic_performer"
  \consists "Tie_performer"
  \consists "Piano_pedal_performer"
  \consists "Note_performer"
  \consists "Beam_performer"
  \consists "Slur_performer"
}

\context {
  \Voice
  \name CueVoice
  \alias Voice
}

\context {
  \Voice
  \name VaticanaVoice
  \alias Voice
  autoBeaming = ##f  % needed for consistent melismata with engravers"
}

\context {
  \Voice
  \name KievanVoice
  \alias Voice
  autoBeaming = ##f  % needed for consistent melismata with engravers"
}

\context {
  \Voice
  \name MensuralVoice
  \alias Voice
  autoBeaming = ##f  % needed for consistent melismata with engravers
}

\context {
  \Voice
  \name PetrucciVoice
  \alias Voice
  autoBeaming = ##f  % needed for consistent melismata with engravers
}

\context {
  \Voice
  \name GregorianTranscriptionVoice
  \alias Voice
  autoBeaming = ##f  % needed for consistent melismata with engravers
}

\context {
  \Voice
  \name DrumVoice
  \alias Voice
  \remove "Note_performer"
  \consists "Drum_note_performer"
}

\context {
  \type "Performer_group"
  \name FiguredBass
}

\context {
  \type "Performer_group"
  \name FretBoards
  \alias Staff
}

\context {
  \type "Performer_group"
  \name GrandStaff
  \accepts ChordNames
  \accepts DrumStaff
  \accepts Dynamics
  \accepts FiguredBass
  \accepts Lyrics
  \accepts RhythmicStaff
  \accepts Staff
  \accepts TabStaff
  \defaultchild Staff
}

\context {
  \GrandStaff
  \name PianoStaff
  \alias GrandStaff
}

\context {
  \Voice
  \name TabVoice
  \alias Voice
}

\context {
  \type "Performer_group"
  \name Devnull
  \alias Voice
  \alias Staff
}

\context {
  \type "Performer_group"
  \name NullVoice
  \alias Staff
  \alias Voice
  %% needed for melismata
  \consists "Tie_performer"
  \consists "Beam_performer"
  \consists "Slur_performer"
}

\context {
  \Staff
  \name TabStaff
  midiInstrument = #"acoustic guitar (nylon)"
  \alias Staff
  \denies Voice
  \accepts TabVoice
  \defaultchild TabVoice
  autoBeaming = ##f  % needed for consistent melismata with engravers
}

\context {
  \type "Score_performer"

  \name Score

  melismaBusyProperties = #default-melisma-properties
  instrumentName = #"bright acoustic"
  midiChannelMapping = #'staff

  %% quarter = 60
  tempoWholesPerMinute = #(ly:make-moment 15/1)

  \accepts ChoirStaff
  \accepts ChordNames
  \accepts Devnull
  \accepts DrumStaff
  \accepts Dynamics
  \accepts FiguredBass
  \accepts GrandStaff
  \accepts GregorianTranscriptionStaff
  \accepts KievanStaff
  \accepts Lyrics
  \accepts MensuralStaff
  \accepts NoteNames
  \accepts NullVoice
  \accepts OneStaff
  \accepts PetrucciStaff
  \accepts PianoStaff
  \accepts RhythmicStaff
  \accepts FretBoards
  \accepts Staff
  \accepts StaffGroup
  \accepts TabStaff
  \accepts VaticanaStaff

  \consists "Time_signature_performer"
  \consists "Control_track_performer"
  \consists "Tempo_performer"

  \alias "Timing"

  %% An alias for Timing is established by the Timing_translator in
  %% whatever context it is initialized, and the timing variables are
  %% then copied from wherever Timing had been previously established.
  %% The alias at Score level provides a target for initializing
  %% Timing variables in layout definitions before any
  %% Timing_translator has been run.

  timeSignatureSettings = #default-time-signature-settings
  timeSignatureFraction = 4/4
  autoBeaming = ##t  % needed for consistent melismata with engravers

  %% Other beaming variables are not important as autobeams don't affect
  %% the Midi.  Melismata are only affected by beams when autobeaming
  %% is switched off.

  \consists "Timing_translator"

  \defaultchild "Staff"

  dynamicAbsoluteVolumeFunction = #default-dynamic-absolute-volume
  instrumentEqualizer = #default-instrument-equalizer
  drumPitchTable = #(alist->hash-table midiDrumPitches)

  %% \quoteDuring is supposed to quote everything but we don't admit
  %% cue events by default in order not to get multiple midi
  %% renditions in an orchestral score.

  quotedEventTypes = #'(StreamEvent)
  quotedCueEventTypes = #'()

  timing = ##t
}


\context {
  \type "Performer_group"
  \consists "Staff_performer" % Performer_group ?
  \consists "Lyric_performer"
  \name Lyrics
}

\context{
  \type "Performer_group"
  \name ChoirStaff
  \accepts ChoirStaff
  \accepts ChordNames
  \accepts FiguredBass
  \accepts DrumStaff
  \accepts GrandStaff
  \accepts Lyrics
  \accepts OneStaff
  \accepts PianoStaff
  \accepts RhythmicStaff
  \accepts Staff
  \accepts StaffGroup
  \defaultchild Staff
}

\context {
  \type "Performer_group"
  \consists "Staff_performer"
  \name NoteNames
}

\context {
  \Voice			% We want all the actual performers
  \name ChordNames
  \alias Staff			% Catch Staff-level overrides like
				% \key, \transposition
  \consists "Staff_performer"
}

\context {
  \type "Performer_group"
  \name StaffGroup
  \accepts ChoirStaff
  \accepts ChordNames
  \accepts DrumStaff
  \accepts FiguredBass
  \accepts FretBoards
  \accepts GrandStaff
  \accepts Lyrics
  \accepts OneStaff
  \accepts PianoStaff
  \accepts RhythmicStaff
  \accepts Staff
  \accepts StaffGroup
  \accepts TabStaff
  \defaultchild Staff
}

\context {
  \type "Performer_group"
  \name "OneStaff"
  \accepts "ChordNames"
  \accepts "DrumStaff"
  \accepts "Dynamics"
  \accepts "FiguredBass"
  \accepts "FretBoards"
  \accepts "GregorianTranscriptionStaff"
  \accepts "KievanStaff"
  \accepts "Lyrics"
  \accepts "MensuralStaff"
  \accepts "NoteNames"
  \accepts "PetrucciStaff"
  \accepts "RhythmicStaff"
  \accepts "Staff"
  \accepts "TabStaff"
  \accepts "VaticanaStaff"
  \defaultchild "Staff"
}

\context {
  \Staff
  \name RhythmicStaff
  \alias Staff
  \defaultchild Voice
}

\context {
  \type "Performer_group"
  \name Dynamics
  \alias Voice
  \consists "Piano_pedal_performer"
}