-
Notifications
You must be signed in to change notification settings - Fork 2
/
MDX_Tool.lpr
611 lines (558 loc) · 20 KB
/
MDX_Tool.lpr
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
{
*****************************************************************************
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
Author: Boban Spasic
Program description:
This program can get some info from Yamaha DX7 SysEx files. The info is more about the integrity/corruption of the files.
Second aspect of the program is to repair some of the common corrupted files found on the internet.
Third aspect (not yet implemented) will be the conversion from VMEM to VCED and vice-versa.
}
program MDX_Tool;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
Classes,
SysUtils,
CustApp,
untUtils,
untDXUtils,
untDXObjInterface;
type
{ TMDX_Tool }
TMDX_Tool = class(TCustomApplication)
protected
procedure DoRun; override;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure WriteHelp; virtual;
end;
{ TMDX_Tool }
procedure TMDX_Tool.DoRun;
var
ErrorMsg: string;
fInput: string;
fOutputDir: string;
slReport: TStringList;
msInputFile: TMemoryStream;
i: integer;
iStartPos: integer;
iDmpPos: integer;
bNullVoice: boolean;
iErrCode: integer;
bOverwrite: boolean;
begin
bNullVoice := False;
fInput := '';
bOverwrite := False;
// quick check parameters
ErrorMsg := CheckOptions('hiomnzywrvcsxjqf:d:',
'help info overwrite hname vname normalize markcorr marknull repair voices crop split xsplit join quest file: dir:');
if ErrorMsg <> '' then
begin
WriteHelp;
ShowException(Exception.Create(ErrorMsg));
Terminate;
Exit;
end;
if (ParamCount = 0) or HasOption('h', 'help') then
begin
WriteHelp;
Terminate;
Exit;
end;
if HasOption('f', 'file') then
fInput := GetOptionValue('f', 'file');
if HasOption('o', 'overwrite') then
bOverwrite := True;
if HasOption('r', 'repair') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end;
slReport := TStringList.Create;
WriteLn('Repairing file ' + ExtractFileName(fInput));
if trim(ExtractFileDir(fInput)) = '' then
fInput := IncludeTrailingPathDelimiter(GetCurrentDir) + fInput;
if RepairDX7SysEx(fInput, slReport, bOverwrite) then
begin
for i := 0 to slReport.Count - 1 do
WriteLn(slReport[i]);
end
else
if MultiVCED2VMEM(fInput, slReport, bOverwrite) then
begin
for i := 0 to slReport.Count - 1 do
WriteLn(slReport[i]);
end
else
WriteLn('No defects recognized');
slReport.Free;
end;
if HasOption('i', 'info') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end
else
begin
slReport := TStringList.Create;
msInputFile := TMemoryStream.Create;
msInputFile.LoadFromFile(fInput);
iStartPos := 0;
iDmpPos := 0;
if ContainsDX_SixOP_Data_New(msInputFile, iStartPos, slReport) then
begin
for i := 0 to slReport.Count - 1 do
WriteLn(slReport[i]);
iStartPos := 0;
if ContainsDX7BankDump(msInputFile, iStartPos, iDmpPos) then
if CheckVMEMIntegrity(msInputFile, iDmpPos, bNullVoice) = 0 then
WriteLn('VMEM data integrity is OK');
iStartPos := 0;
if ContainsDX7VoiceDump(msInputFile, iStartPos, iDmpPos) then
if CheckVCEDIntegrity(msInputFile, iDmpPos, bNullVoice) = 0 then
WriteLn('VCED data integrity is OK');
end
else
begin
for i := 0 to slReport.Count - 1 do
WriteLn(slReport[i]);
end;
msInputFile.Free;
slReport.Free;
end;
end;
if HasOption('y', 'markcorr') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end
else
begin
slReport := TStringList.Create;
msInputFile := TMemoryStream.Create;
msInputFile.LoadFromFile(fInput);
iStartPos := 0;
iDmpPos := 0;
if ContainsDX_SixOP_Data_New(msInputFile, iStartPos, slReport) then
begin
for i := 0 to slReport.Count - 1 do
WriteLn(slReport[i]);
iStartPos := 0;
if ContainsDX7BankDump(msInputFile, iStartPos, iDmpPos) then
begin
iErrCode := CheckVMEMIntegrity(msInputFile, iDmpPos, bNullVoice);
if iErrCode <> 0 then
begin
WriteLn('VMEM data is corrupted. Renaming file');
if bNullVoice then
RenameFile(fInput, fInput + '.nl_' + IntToStr(iErrCode) + '_corr')
else
RenameFile(fInput, fInput + '.' + IntToStr(iErrCode) + '_corr');
end;
end;
iStartPos := 0;
if ContainsDX7VoiceDump(msInputFile, iStartPos, iDmpPos) then
begin
iErrCode := CheckVCEDIntegrity(msInputFile, iDmpPos, bNullVoice);
if iErrCode <> 0 then
begin
WriteLn('VCED data is corrupted. Renaming file');
if bNullVoice then
RenameFile(fInput, fInput + '.nl_' + IntToStr(iErrCode) + '_corr')
else
RenameFile(fInput, fInput + '.' + IntToStr(iErrCode) + '_corr');
end;
end;
end
else
begin
for i := 0 to slReport.Count - 1 do
WriteLn(slReport[i]);
end;
msInputFile.Free;
slReport.Free;
end;
end;
if HasOption('w', 'marknull') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end
else
begin
slReport := TStringList.Create;
msInputFile := TMemoryStream.Create;
msInputFile.LoadFromFile(fInput);
iStartPos := 0;
iDmpPos := 0;
if ContainsDX_SixOP_Data_New(msInputFile, iStartPos, slReport) then
begin
for i := 0 to slReport.Count - 1 do
WriteLn(slReport[i]);
iStartPos := 0;
if ContainsDX7BankDump(msInputFile, iStartPos, iDmpPos) then
begin
iErrCode := CheckVMEMIntegrity(msInputFile, iDmpPos, bNullVoice);
if iErrCode <> 0 then
begin
if bNullVoice then
begin
WriteLn('Voice name contains nulls ($00). Renaming file');
RenameFile(fInput, fInput + '.nl');
end;
end;
end;
iStartPos := 0;
if ContainsDX7VoiceDump(msInputFile, iStartPos, iDmpPos) then
begin
iErrCode := CheckVCEDIntegrity(msInputFile, iDmpPos, bNullVoice);
if iErrCode <> 0 then
begin
if bNullVoice then
begin
WriteLn('Voice name contains nulls ($00). Renaming file');
RenameFile(fInput, fInput + '.nl');
end;
end;
end;
end
else
begin
for i := 0 to slReport.Count - 1 do
WriteLn(slReport[i]);
end;
msInputFile.Free;
slReport.Free;
end;
end;
if HasOption('z', 'normalize') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end
else
begin
slReport := TStringList.Create;
msInputFile := TMemoryStream.Create;
if trim(ExtractFileDir(fInput)) = '' then
fInput := IncludeTrailingPathDelimiter(GetCurrentDir) + fInput;
WriteLn('Input file: ' + fInput);
msInputFile.LoadFromFile(fInput);
iStartPos := 0;
iDmpPos := 0;
if ContainsDX_SixOP_Data_New(msInputFile, iStartPos, slReport) then
begin
for i := 0 to slReport.Count - 1 do
WriteLn(slReport[i]);
iStartPos := 0;
if ContainsDX7BankDump(msInputFile, iStartPos, iDmpPos) then
begin
if CheckVMEMIntegrity(msInputFile, iDmpPos, bNullVoice) = 0 then
begin
WriteLn('VMEM data integrity is OK');
end
else
begin
NormalizeVMEM(msInputFile, iDmpPos, fInput, bOverwrite);
WriteLn('VMEM data integrity is normalized');
end;
end;
iStartPos := 0;
if ContainsDX7VoiceDump(msInputFile, iStartPos, iDmpPos) then
begin
if CheckVCEDIntegrity(msInputFile, iDmpPos, bNullVoice) = 0 then
begin
WriteLn('VCED data integrity is OK');
end
else
begin
NormalizeVCED(msInputFile, iDmpPos, fInput, bOverwrite);
WriteLn('VCED data integrity is normalized');
end;
end;
end
else
begin
for i := 0 to slReport.Count - 1 do
WriteLn(slReport[i]);
end;
msInputFile.Free;
slReport.Free;
end;
end;
if HasOption('m', 'hname') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end
else
begin
Hash2Name(fInput);
end;
end;
if HasOption('n', 'vname') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end
else
begin
Voice2Name(fInput);
end;
end;
if HasOption('v', 'voices') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end
else
begin
slReport := TStringList.Create;
msInputFile := TMemoryStream.Create;
msInputFile.LoadFromFile(fInput);
GetVoices(msInputFile, slReport);
for i := 0 to slReport.Count - 1 do
WriteLn(slReport[i]);
msInputFile.Free;
slReport.Free;
end;
end;
if HasOption('c', 'crop') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end;
if trim(ExtractFileDir(fInput)) = '' then
fInput := IncludeTrailingPathDelimiter(GetCurrentDir) + fInput;
if CropHeaders(fInput) then
begin
WriteLn('Cropping file ' + ExtractFileName(fInput) + ': OK');
end
else
WriteLn('Cropping file ' + ExtractFileName(fInput) + ': FAIL');
end;
if HasOption('s', 'split') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end
else
begin
if not HasOption('d', 'dir') then
begin
WriteLn('Parameter -d {directory} is missing');
Terminate;
Exit;
end
else
begin
fOutputDir := IncludeTrailingPathDelimiter(GetOptionValue('d', 'outdir'));
if pos(':\', fOutputDir) = 0 then
fOutputDir := IncludeTrailingPathDelimiter(GetCurrentDir) + fOutputDir;
if not DirectoryExists(fOutputDir) then
ForceDirectories(fOutputDir);
msInputFile := TMemoryStream.Create;
msInputFile.LoadFromFile(fInput);
SplitVMEM2VCED(msInputFile, fOutputDir);
msInputFile.Free;
WriteLn('Done!');
end;
end;
end;
if HasOption('x', 'xsplit') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end
else
begin
if not HasOption('d', 'dir') then
begin
WriteLn('Parameter -d {directory} is missing');
Terminate;
Exit;
end
else
begin
fOutputDir := IncludeTrailingPathDelimiter(GetOptionValue('d', 'outdir'));
if pos(':\', fOutputDir) = 0 then
fOutputDir := IncludeTrailingPathDelimiter(GetCurrentDir) + fOutputDir;
if not DirectoryExists(fOutputDir) then
ForceDirectories(fOutputDir);
msInputFile := TMemoryStream.Create;
msInputFile.LoadFromFile(fInput);
XSplitVMEM2VCED(msInputFile, fOutputDir);
msInputFile.Free;
WriteLn('Done!');
end;
end;
end;
if HasOption('j', 'join') then
begin
fOutputDir := IncludeTrailingPathDelimiter(GetOptionValue('d', 'dir'));
if pos(':\', fOutputDir) = 0 then
fOutputDir := IncludeTrailingPathDelimiter(GetCurrentDir) + fOutputDir;
if not DirectoryExists(fOutputDir) then
begin
WriteLn('Parameter -d {directory} is missing or the directory could not be found');
Terminate;
Exit;
end
else
begin
if not HasOption('f', 'file') then
begin
WriteLn('Parameter -f {filename} is missing');
Terminate;
Exit;
end
else
begin
JoinVCED2VMEM(fOutputDir, fInput);
WriteLn('Done!');
end;
end;
end;
if HasOption('q', 'quest') then
begin
if not FileExists(fInput) then
begin
WriteLn('Parameter -f {filename} is missing or the file {filename} could not be found');
Terminate;
Exit;
end
else
begin
if not HasOption('d', 'dir') then
begin
WriteLn('Parameter -d {directory} is missing');
Terminate;
Exit;
end
else
begin
fOutputDir := IncludeTrailingPathDelimiter(GetOptionValue('d', 'outdir'));
if pos(':\', fOutputDir) = 0 then
fOutputDir := IncludeTrailingPathDelimiter(GetCurrentDir) + fOutputDir;
if not DirectoryExists(fOutputDir) then
ForceDirectories(fOutputDir);
msInputFile := TMemoryStream.Create;
msInputFile.LoadFromFile(fInput);
RipMidiQuest(msInputFile, fOutputDir);
msInputFile.Free;
WriteLn('Done!');
end;
end;
end;
Terminate;
end;
constructor TMDX_Tool.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
StopOnException := True;
end;
destructor TMDX_Tool.Destroy;
begin
inherited Destroy;
end;
procedure TMDX_Tool.WriteHelp;
begin
writeln('');
writeln('');
writeln('MDX_Tool 1.8 - tool for various manipulation of DX7 VMEM and VCED SysEx files');
writeln('Author: Boban Spasic');
writeln('https://github.com/BobanSpasic/MDX_Tool');
writeln('');
writeln('Usage: ', ExtractFileName(ExeName), ' -parameters');
writeln(' Parameters (short and long form):');
writeln(' -h --help This help message');
writeln(' -i --info Information');
writeln(' -n --vname Rename file to the name of the contained voice');
writeln(' -m --hname Rename file to the SHA2-256 hash of the file');
writeln(' -z --normalize Set parameters to be between minimum and maximum allowed values');
writeln(' -y --markcorr Mark files that have parameters outside the min/max limits');
writeln(' Adds .x_corr as the file extension where x is the error code');
writeln(' Lower 4 numbers are the count of min/max errors');
writeln(' Higher numbers are the count of voices with values in normally unused bits');
writeln(' -w --marknull Mark files that have nulls ($00) in voice names');
writeln(' Adds .nl as the file extension');
writeln(' -r --repair Repair/extract DX7 VMEM data from files');
writeln(' Adds _DX7_repaired in the file name');
writeln(' Adds _x_DX7_repaired in the file name,');
writeln(' where the x is the number of the dump');
writeln(' in a multi-dump file');
writeln(' -c --crop Crop headers from the VMEM/VCED files');
writeln(' -s --split Split bank (VMEM) into single voices (VCED)');
writeln(' -x --xsplit Split bank (VMEM) into single voices (VCED)');
writeln(' and take the SHA2-256 hash as a file name.');
writeln(' Voice name (10xASCII) is not a part of the hash');
writeln(' -j --join Join single voices (VCED) into a bank (VMEM)');
writeln(' If the file voices.lst exists inside the input directory');
writeln(' - the voices inside the bank will be sorted according to the list');
writeln(' -q --quest Rip MidiQuest SQL files (tested on MidiQuest 6)');
writeln('');
writeln(' -f {filename} --file={filename} Input file (or output file for -j parameter)');
writeln(' -d {directory} --dir={directory} Output directory for -s and -x parameters');
writeln(' Input directory for -j parameter');
writeln(' If it does not contain a drive letter, a sub-directory in');
writeln(' the current directory will be created.');
writeLn('');
writeln(' -o --overwrite Overwrite source file at repairing or normalizing');
writeLn('');
writeln(' Example usage:');
writeln(' MDX_Tool -i -f my_dx_file.syx');
writeln(' MDX_Tool -r -f my_dx_file.syx');
writeln(' MDX_Tool -s -f my_dx_file.syx -d new_directory');
writeln(' MDX_Tool -j -f my_new_bank.syx -d directory_with_VCEDs');
writeln(' MDX_Tool --info --file=my_dx_file.syx');
writeLn('');
writeLn('');
writeLn('Split and Join parameters expect non-corrupted files as input (headerless files are accepted).');
end;
var
Application: TMDX_Tool;
begin
Application := TMDX_Tool.Create(nil);
Application.Title := 'MDX_Tool';
Application.Run;
Application.Free;
end.