-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
487 lines (424 loc) · 18.9 KB
/
Program.cs
File metadata and controls
487 lines (424 loc) · 18.9 KB
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Commons.Music.Midi;
using SightReader.Engine.Interpreter;
using SightReader.Engine.ScoreBuilder;
using CommandLine;
using System.Text;
namespace Desktop
{
[Verb("debug", HelpText = "Print developer debug information.")]
class DebugOptions
{
}
[Verb("play", HelpText = "Runs in the default networked mode.")]
class PlayOptions
{
}
[Verb("play-direct", HelpText = "Runs sightreader assistance on the specified sheet music with the specified MIDI inputs and outputs.")]
class PlayDirectOptions
{
[Option('i', "inputs", Required = true, HelpText = "The MIDI inputs to use. Each partial match which be added as an input.")]
public IEnumerable<string> MidiInputs { get; set; }
[Option('o', "outputs", Required = true, HelpText = "The MIDI output to use. Each partial match will be added as an output.")]
public IEnumerable<string> MidiOutputs { get; set; }
[Option('f', "file", Required = false, HelpText = "Path to MusicXML sheet music for direct mode.")]
public string FilePath { get; set; }
}
[Verb("passthru", HelpText = "Runs like a regular digital piano. All inputs are passed through without interpretation.")]
class PassThruOptions
{
[Option('i', "inputs", Required = true, HelpText = "The MIDI inputs to use. Each partial match which be added as an input.")]
public IEnumerable<string> MidiInputs { get; set; }
[Option('o', "outputs", Required = true, HelpText = "The MIDI output to use. Each partial match will be added as an output.")]
public IEnumerable<string> MidiOutputs { get; set; }
}
class Program
{
static int counter1 = 1;
static int RunDebug(DebugOptions options)
{
var engine = new DesktopEngine();
var midiAccess = MidiAccessManager.Default;
Console.WriteLine("MIDI Inputs");
Console.WriteLine("-----------");
Console.WriteLine("");
Console.WriteLine($"\tId\tName");
Console.WriteLine($"-----------------------------------");
foreach (var input in midiAccess.Inputs)
{
Console.WriteLine($"\t{input.Id}\t{input.Name}");
}
Console.WriteLine();
Console.WriteLine("MIDI Outputs");
Console.WriteLine("------------");
Console.WriteLine("");
Console.WriteLine($"\tId\tName");
Console.WriteLine($"-----------------------------------");
foreach (var output in midiAccess.Outputs)
{
Console.WriteLine($"\t{output.Id}\t{output.Name}");
}
return 0;
}
static int RunPlay(PlayOptions options)
{
var engine = new DesktopEngine();
engine.Server.Run(engine);
return 0;
}
static int RunPlayDirect(PlayDirectOptions options)
{
var engine = new DesktopEngine();
var midiAccess = MidiAccessManager.Default;
foreach (var input in options.MidiInputs)
{
var foundMidiInput = midiAccess.Inputs.Where(x => x.Name.ToLower().Contains(input.ToLower()) || x.Id.ToLower().Contains(input.ToLower())).FirstOrDefault();
if (foundMidiInput == null)
{
Console.Error.WriteLine($"Did not find any MIDI input partially matching '{input}'.");
return 1;
}
else
{
Console.WriteLine($"Using MIDI input '{foundMidiInput.Name}'.");
}
engine.MidiInputs.Add(midiAccess.OpenInputAsync(foundMidiInput.Id).Result);
}
foreach (var output in options.MidiOutputs)
{
var foundMidiOutput = midiAccess.Outputs.Where(x => x.Name.ToLower().Contains(output.ToLower()) || x.Id.ToLower().Contains(output.ToLower())).FirstOrDefault();
if (foundMidiOutput == null)
{
Console.Error.WriteLine($"Did not find any MIDI output partially matching '{output}'.");
return 1;
}
else
{
Console.WriteLine($"Using MIDI output'{foundMidiOutput.Name}'.");
}
engine.MidiOutputs.Add(midiAccess.OpenOutputAsync(foundMidiOutput.Id).Result);
}
var scoreFilePath = options.FilePath;
FileStream fileStream = null;
ScoreBuilder scoreBuilder = null;
Score score = null;
Dictionary<byte, byte> noteVelocityMap = new Dictionary<byte, byte>();
foreach (var index in Enumerable.Range(0, 128))
{
noteVelocityMap.Add((byte)index, 0);
}
var lastNoteOnVelocities = new Queue<decimal>(3);
if (scoreFilePath != null)
{
if (!File.Exists(options.FilePath))
{
Console.Error.WriteLine($"Could not find sheet music file '{options.FilePath}'.");
return 1;
}
try
{
fileStream = new FileStream(scoreFilePath, FileMode.Open);
}
catch (Exception ex)
{
Console.Error.WriteLine($"Could not open sheet music file path {scoreFilePath}: {ex}");
}
if (fileStream == null)
{
return 2;
}
try
{
scoreBuilder = new ScoreBuilder(fileStream);
score = scoreBuilder.Build();
}
catch (Exception ex)
{
Console.Error.WriteLine($"Could not build sheet music score from file path {scoreFilePath}: {ex}");
}
if (scoreBuilder == null || score == null)
{
return 3;
}
else
{
Console.WriteLine($"Successfully loaded sheet music at {scoreFilePath}.");
}
engine.Interpreter.SetScore(score, scoreFilePath);
}
foreach (var midiInput in engine.MidiInputs)
{
midiInput.MessageReceived += (object sender, MidiReceivedEventArgs e) =>
{
switch (e.Data[0])
{
case MidiEvent.NoteOff:
{
var pitch = e.Data[1];
Console.WriteLine($"Off (actual): {pitch}");
engine.Interpreter.Input(new NoteRelease()
{
Pitch = pitch
});
}
break;
case MidiEvent.NoteOn:
{
var pitch = e.Data[1];
var velocity = e.Data[2];
var isSimulatedNoteOff = velocity == 0;
var isRequestedPitchAlreadyAtZeroVelocity = noteVelocityMap[pitch] == 0;
var isRequestedNoteOffAlreadyNoteOff = isRequestedPitchAlreadyAtZeroVelocity;
var shouldNoteOffBeNoteOn = isSimulatedNoteOff && isRequestedNoteOffAlreadyNoteOff;
if (shouldNoteOffBeNoteOn)
{
var averagePreviousNoteVelocities = (byte)(lastNoteOnVelocities.Average());
Console.WriteLine($"<!!! CAUGHT !!!> On (simulated) {counter1++}: {pitch} at {String.Format("{0:0%}", averagePreviousNoteVelocities / 127.0)}");
noteVelocityMap[pitch] = averagePreviousNoteVelocities;
engine.Interpreter.Input(new NotePress()
{
Pitch = pitch,
Velocity = averagePreviousNoteVelocities
});
}
else
{
/** The Yamaha P-45 sends Note Off messages as Note On
* messages with zero velocity. */
var isNoteOnActuallyNoteOff = velocity == 0;
if (isNoteOnActuallyNoteOff)
{
Console.WriteLine($"Off (simulated) {counter1++}: {pitch} at {String.Format("{0:0%}", velocity / 127.0)} <---> (Last) {String.Format("{0:0%}", (byte)noteVelocityMap[pitch] / 127.0)}");
noteVelocityMap[pitch] = 0;
engine.Interpreter.Input(new NoteRelease()
{
Pitch = pitch
});
}
else
{
lastNoteOnVelocities.Enqueue(velocity);
if (lastNoteOnVelocities.Count > 3)
{
lastNoteOnVelocities.Dequeue();
}
noteVelocityMap[pitch] = velocity;
Console.WriteLine($"On {counter1++}: {pitch} at {String.Format("{0:0%}", velocity / 127.0)}");
engine.Interpreter.Input(new NotePress()
{
Pitch = pitch,
Velocity = velocity
});
}
}
}
break;
case MidiEvent.CC:
{
var pedalKind = e.Data[1];
var position = (byte)(127 - e.Data[2]);
// Console.WriteLine($"Pedal {counter1++}: {String.Format("{0:0%}", position / 127.0)}");
engine.Interpreter.Input(new PedalChange()
{
Pedal = PedalKind.Sustain,
Position = position
});
}
break;
}
};
}
engine.Interpreter.Output += (IPianoEvent e) =>
{
foreach (var output in engine.MidiOutputs)
{
switch (e)
{
case PedalChange pedal:
output.Send(new byte[]
{
MidiEvent.CC,
pedal.Pedal switch
{
PedalKind.UnaCorda => 67,
PedalKind.Sostenuto => 66,
PedalKind.Sustain => 64,
_ => 64
},
(byte)(pedal.Position)
}, 0, 3, 0);
break;
case NoteRelease release:
output.Send(new byte[]
{
MidiEvent.NoteOff,
release.Pitch,
0 /* Default release velocity */
}, 0, 3, 0);
break;
case NotePress press:
var measureNumbers = engine.Interpreter.GetMeasureNumbers();
output.Send(new byte[]
{
MidiEvent.NoteOn,
press.Pitch,
press.Velocity
}, 0, 3, 0);
break;
}
}
};
Console.WriteLine();
while (true)
{
Console.Write("Measure Number or Sheet Music:");
var seekToMeasureNumberInput = Console.ReadLine();
if (int.TryParse(seekToMeasureNumberInput, out var seekToMeasureNumber))
{
engine.Interpreter.SeekMeasure(seekToMeasureNumber);
}
else
{
scoreFilePath = seekToMeasureNumberInput.Replace('"', ' ').Replace('\'', ' ').Trim();
if (!File.Exists(scoreFilePath))
{
Console.Error.WriteLine($"Could not find sheet music file '{scoreFilePath}'.");
continue;
}
try
{
fileStream = new FileStream(scoreFilePath, FileMode.Open);
}
catch (Exception ex)
{
Console.Error.WriteLine($"Could not open sheet music file path {scoreFilePath}: {ex}");
}
if (fileStream == null)
{
continue;
}
scoreBuilder = null;
score = null;
try
{
scoreBuilder = new ScoreBuilder(fileStream);
score = scoreBuilder.Build();
}
catch (Exception ex)
{
Console.Error.WriteLine($"Could not build sheet music score from file path {scoreFilePath}: {ex}");
continue;
}
if (scoreBuilder == null || score == null)
{
continue;
}
else
{
Console.WriteLine($"Successfully loaded sheet music at {scoreFilePath}.");
engine.Interpreter.SetScore(score, scoreFilePath);
}
}
}
}
static int RunPassThru(PassThruOptions options)
{
var engine = new DesktopEngine();
var midiAccess = MidiAccessManager.Default;
foreach (var input in options.MidiInputs)
{
var foundMidiInput = midiAccess.Inputs.Where(x => x.Name.ToLower().Contains(input.ToLower()) || x.Id.ToLower().Contains(input.ToLower())).FirstOrDefault();
if (foundMidiInput == null)
{
Console.Error.WriteLine($"Did not find any MIDI input partially matching '{input}'.");
}
else
{
Console.WriteLine($"Using MIDI input '{foundMidiInput.Name}'.");
}
engine.MidiInputs.Add(midiAccess.OpenInputAsync(foundMidiInput.Id).Result);
}
foreach (var output in options.MidiOutputs)
{
var foundMidiOutput = midiAccess.Outputs.Where(x => x.Name.ToLower().Contains(output.ToLower()) || x.Id.ToLower().Contains(output.ToLower())).FirstOrDefault();
if (foundMidiOutput == null)
{
Console.Error.WriteLine($"Did not find any MIDI output partially matching '{output}'.");
}
else
{
Console.WriteLine($"Using MIDI output'{foundMidiOutput.Name}'.");
}
engine.MidiOutputs.Add(midiAccess.OpenOutputAsync(foundMidiOutput.Id).Result);
}
foreach (var midiInput in engine.MidiInputs)
{
midiInput.MessageReceived += (object sender, MidiReceivedEventArgs e) =>
{
foreach (var output in engine.MidiOutputs)
{
switch (e.Data[0])
{
case MidiEvent.CC:
output.Send(new byte[]
{
MidiEvent.CC,
e.Data[1],
(byte)(127 - e.Data[2])
}, 0, 3, 0);
break;
case MidiEvent.NoteOff:
output.Send(new byte[]
{
MidiEvent.NoteOff,
e.Data[1],
0 /* Default release velocity */
}, 0, 3, 0);
break;
case MidiEvent.NoteOn:
var byteData = new byte[]
{
MidiEvent.NoteOn,
e.Data[1],
e.Data[2]
};
Console.WriteLine($"Raw Note: {String.Join(' ', byteData.Select(b => b.ToString()))}");
output.Send(new byte[]
{
MidiEvent.NoteOn,
e.Data[1],
e.Data[2]
}, 0, 3, 0);
break;
}
}
};
}
Console.WriteLine();
Console.WriteLine("Digital piano pass-thru mode is now active. Press <ENTER> to quit the program at any time.");
Console.ReadLine();
return 0;
}
static int OnConsoleArgsParseError(IEnumerable<Error> errors)
{
return 1;
}
static void Main(string[] args)
{
Console.Title = "SightReader Piano Assistant";
Parser.Default.ParseArguments<DebugOptions, PlayOptions, PlayDirectOptions, PassThruOptions>(args)
.MapResult(
(DebugOptions o) => RunDebug(o),
(PlayOptions o) => RunPlay(o),
(PlayDirectOptions o) => RunPlayDirect(o),
(PassThruOptions o) => RunPassThru(o),
errors => OnConsoleArgsParseError(errors));
Console.ReadLine();
Console.WriteLine();
Console.WriteLine("Press <ENTER> to exit the program.");
}
}
}