-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmidi2pico.lua
executable file
·1286 lines (1225 loc) · 31.2 KB
/
midi2pico.lua
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
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env lua
local function print(...)
local args=table.pack(...)
for i=1, args.n do
args[i]=tostring(args[i])
end
io.stderr:write(table.concat(args, "\t").."\n")
end
-- LuaJIT and Lua5.1 compatibility
if not table.pack then
function table.pack(...) return {n=select("#", ...), ...} end
end
if not table.unpack then
table.unpack = unpack
end
local bit=bit
if not bit then
local ok
ok, bit=pcall(require, "bit32")
if not ok then
-- Fallback on pure lua bit implementation
local xtab={
{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15},
{ 1, 0, 3, 2, 5, 4, 7, 6, 9, 8,11,10,13,12,15,14},
{ 2, 3, 0, 1, 6, 7, 4, 5,10,11, 8, 9,14,15,12,13},
{ 3, 2, 1, 0, 7, 6, 5, 4,11,10, 9, 8,15,14,13,12},
{ 4, 5, 6, 7, 0, 1, 2, 3,12,13,14,15, 8, 9,10,11},
{ 5, 4, 7, 6, 1, 0, 3, 2,13,12,15,14, 9, 8,11,10},
{ 6, 7, 4, 5, 2, 3, 0, 1,14,15,12,13,10,11, 8, 9},
{ 7, 6, 5, 4, 3, 2, 1, 0,15,14,13,12,11,10, 9, 8},
{ 8, 9,10,11,12,13,14,15, 0, 1, 2, 3, 4, 5, 6, 7},
{ 9, 8,11,10,13,12,15,14, 1, 0, 3, 2, 5, 4, 7, 6},
{10,11, 8, 9,14,15,12,13, 2, 3, 0, 1, 6, 7, 4, 5},
{11,10, 9, 8,15,14,13,12, 3, 2, 1, 0, 7, 6, 5, 4},
{12,13,14,15, 8, 9,10,11, 4, 5, 6, 7, 0, 1, 2, 3},
{13,12,15,14, 9, 8,11,10, 5, 4, 7, 6, 1, 0, 3, 2},
{14,15,12,13,10,11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1},
{15,14,13,12,11,10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0},
}
local ff=2^32-1
bit={}
bit.bxor=function(a, b)
local n, m=0, 1
while a > 0 and b > 0 do
local a2, b2=a%16, b%16
n=n+xtab[a2+1][b2+1]*m
a=(a-a2)/16
b=(b-b2)/16
m=m*16
end
n=n+a*m+b*m
return n
end
bit.band=function(a, b) return ((a+b)-bit.bxor(a, b))/2 end
bit.bor=function(a, b) return ff-bit.band(ff-a, ff-b) end
bit.lshift=function(a, b)
return a*2^b
end
bit.rshift=function(a, b)
return math.floor(a/2^b)
end
end
end
local ok, midi=pcall(require, "MIDI")
if not ok then
print(midi)
print("MIDI api is missing, please install via: luarocks install midi")
os.exit(1)
end
local parse=require("argparse")
local args, opts=parse(...)
function math.round(n)
return math.floor(n+0.5)
end
if #args < 1 or opts.help then
print([[
Usage: ]] .. (arg and arg[0] or "midi2pico") .. [[ midi-file [p8-data]
Options:
--maxvol Maximum volume (0-7, 5)
--drumvol Drum volume, (0-7, 2)
--chvol Per channel volume (Comma separated, ch:vol format)
--div Time division slices (Auto)
--level Logging level
--speed Music speed (0-255)
--mute Mute channels (Comma separated, 0=All)
--mutet Mute tracks (Comma separated)
--mode Arragement mode (blob/channel/track)
--shift Pitch shift, instruments (0)
--dshift Pitch shift, drums (0)
All options above take the form: --name=value
--debug Output sfx and pattern info at end of lines
--musichax Write a special program to stream additional audio from gfx
--no2ndpass Skip second corrective pass
--nopwheel Ignore pitch wheel data
--novol Ignore volume data
--noexpr Ignore expression data
--notrunc Keep going despite no more sfx
--stub Write a lua stub to automatically play the generated music
--ignorediv Ignore bad time divisions
--fixdivone Correct time divisions off by one
--analysis Analyse and report on time information
All options above take the form: --name
MusicHAX:
MusicHAX is a system to store more audio data than pico-8 normally allows,
audio data is stored in gfx areas and copied into sfx as needed. Enabling
this option will use this system and also output a lua stub to process and
play the music.
]])
return
end
local function arg2num(name)
val=tonumber(tostring(opts[name]), 10)
if not val then
error("Invalid value for option '" .. name .. "': " .. tostring(opts[name]), 0)
end
return val
end
-- Instrument to PICO-8 Map
local picoinstr={
[0]={1, 0, 0, 5},
[1]={1, 0, 0, 5},
[3]={1, 2, 2, 5},
[4]={0, 0, 0, 5},
[5]={5, 0, 0, 5},
[7]={4, 0, 0, 5},
[11]={1, 0, 0, 5},
[16]={5, 0, 0, 5},
[17]={0, 0, 0, 5},
[18]={5, 2, 2, 5},
[19]={5, 4, 0, 5},
[20]={5, 4, 0, 5},
[30]={4, 0, 0, 5},
[33]={1, 0, 0, 5},
[38]={1, 0, 0, 5},
[42]={5, 4, 0, 5},
[71]={5, 4, 0, 5},
[72]={1, 4, 0, 5},
[73]={5, 4, 2, 5},
[74]={5, 4, 0, 5},
[78]={0, 4, 0, 5},
[79]={0, 4, 0, 5},
[81]={2, 0, 0, 0},
[89]={1, 4, 0, 5},
[97]={4, 4, 0, 5},
[100]={5, 0, 0, 5},
[101]={0, 4, 0, 5},
[105]={4, 0, 0, 5},
}
for i=0, 127 do
if picoinstr[i] == nil then
picoinstr[i]={3, 0, 0, 5}
end
end
-- Drums to PICO-8 Map
local picodrum={
[35]={2, 0, 0, 5, 42},
[37]={6, 5,-1,-1, 64},
[40]={6, 0, 0, 5, 64},
[42]={6, 5,-1,-1, 90},
[53]={5, 0, 0, 5, 90},
}
for i=0, 127 do
if picodrum[i] == nil then
picodrum[i]={6, 5,-1,-1, 84}
end
end
-- Allowed Channels
local chlisten={}
for i=0, 15 do
chlisten[i]=true
end
-- Allowed Tracks
trlisten_mt={__index=function(t, k)
t[k]=t.default
return t.default
end}
local trlisten=setmetatable({default=true}, trlisten_mt)
-- Drum Channels
local drumch={}
for i=0, 15 do
drumch[i]=false
end
drumch[9]=true
-- Per Channel Volume
local chvol={}
for i=0, 15 do
chvol[i]=5
end
chvol[9]=2
local maxlevel=math.huge
if opts.level then
maxlevel=arg2num("level")
end
local function log(level, ...)
if level <= maxlevel then
print(...)
end
end
local function logf(level, ...)
if level <= maxlevel then
print(string.format(...))
end
end
if opts.maxvol then
local maxvol=tonumber(tostring(opts.maxvol))
if not maxvol then
error("Invalid value for option 'maxvol': " .. tostring(opts.maxvol), 0)
elseif maxvol < 0 or maxvol > 7 then
error("Invalid range for option 'maxvol': " .. maxvol, 0)
end
for i=0, 15 do
if not drumch[i] then
chvol[i]=maxvol
end
end
end
if opts.drumvol then
local drumvol=tonumber(tostring(opts.drumvol))
if not drumvol then
error("Invalid value for option 'drumvol': " .. tostring(opts.drumvol), 0)
elseif drumvol < 0 or drumvol > 7 then
error("Invalid range for option 'drumvol': " .. drumvol, 0)
end
for i=0, 15 do
if drumch[i] then
chvol[i]=drumvol
end
end
end
if opts.mute then
for part in (opts.mute .. ","):gmatch("(.-),") do
local chmn=tonumber(part, 10)
if chmn == nil then
error("Invalid channel for option 'mute': " .. part, 0)
elseif chmn < -16 or chmn > 16 then
error("Invalid channel for option 'mute': " .. math.abs(chmn), 0)
elseif chmn == 0 then
local all=(part:sub(1, 1) == "-")
for i=0, 15 do
chlisten[i]=all
end
else
chlisten[math.abs(chmn)-1]=chmn < 0
end
end
end
if opts.mutet then
for part in (opts.mutet .. ","):gmatch("(.-),") do
local trmn=tonumber(part, 10)
if trmn == nil then
error("Invalid track for option 'mutet': " .. part, 0)
elseif trmn < -65536 or trmn > 65536 then
error("Invalid track for option 'mutet': " .. math.abs(trmn), 0)
elseif trmn == 0 then
trlisten=setmetatable({default=(part:sub(1, 1) == "-")}, trlisten_mt)
else
trlisten[math.abs(trmn)-1]=trmn < 0
end
end
end
local speed
if opts.speed then
speed=tonumber(tostring(opts.speed))
if not speed then
error("Invalid value for option 'speed': " .. tostring(opts.speed), 0)
elseif speed < 0 or speed > 255 then
error("Invalid range for option 'speed': " .. speed, 0)
end
end
if opts.chvol then
for part in (opts.chvol .. ","):gmatch("(.-),") do
local ch, vol=part:match("(.*):(.+)")
ch=tonumber(ch, 10)
vol=tonumber(vol, 10)
if ch == nil or vol == nil then
error("Invalid value for option 'chvol': " .. part, 0)
elseif ch < 1 or ch > 16 then
error("Invalid channel for option 'chvol': " .. ch, 0)
elseif vol < 0 or vol > 7 then
error("Invalid volume for option 'chvol': " .. vol, 0)
else
chvol[ch-1]=vol
end
end
end
local amodes={
blob=true,
channel=true,
track=true
}
local mode="channel"
if opts.mode then
if not amodes[opts.mode] then
error("Invalid value for option 'mode': " .. opts.mode, 0)
end
mode=opts.mode
end
local skip=0
if opts.skip then
skip=arg2num("skip")
end
local div
if opts.div then
div=arg2num("div")
end
local shift=0
if opts.shift then
shift=arg2num("shift")
end
local dshift=0
if opts.dshift then
dshift=arg2num("dshift")
end
local text_events={
text_event=true,
copyright_text_event=true,
track_name=true,
instrument_name=true,
lyric=true,
marker=true,
cue_point=true,
text_event_08=true,
text_event_09=true,
text_event_0a=true,
text_event_0b=true,
text_event_0c=true,
text_event_0d=true,
text_event_0e=true,
text_event_0f=true,
}
local function score2note(score)
local note={score[1]}
local trackpos={}
local nscore=#score
for i=2, nscore do
trackpos[i]=1
end
while true do
local ltime, tpos=math.huge
for i=2, nscore do
local event=score[i][trackpos[i]]
if event then
local ttime=event[2]
if ttime < ltime then
ltime, tpos=ttime, i
end
end
end
if not tpos then break end
local event=score[tpos][trackpos[tpos]]
score[tpos][trackpos[tpos]]=nil
trackpos[tpos]=trackpos[tpos] + 1
table.insert(event, 3, tpos-2)
-- Merge text events into one event type
local kind=event[1]
if text_events[kind] then
kind=kind:gsub("_event", ""):gsub("_text", "")
table.insert(event, 4, kind)
event[1]="text"
end
note[#note+1]=event
end
return note
end
log(1, "Info: Loading and parsing midi file ...")
local file, err=io.open(args[1], "rb")
if not file then
print(err)
os.exit(1)
end
local data=file:read("*a")
file:close()
if data == nil then
print("Received no data from file?")
os.exit(1)
end
if data:sub(1, 4) ~= "MThd" then
print("MIDI header missing from file")
os.exit(1)
end
local mididata=score2note(midi.midi2score(data))
local function gcd(m, n)
while m ~= 0 do
m, n=n%m, m
end
return n
end
-- MIDI timing analytics
local commondiv={}
for i=1, 30 do
commondiv[i*5]=0
commondiv[i*6]=0
end
local timediff={}
local lnote=0
if opts.analysis and not opts.ignorediv then
log(2, "Warning: --analysis implies --ignorediv")
opts.ignorediv=true
end
if not div then
log(1, "Info: Attempting to detect time division ...")
for i=2, #mididata do
local event=mididata[i]
if event[1] == "note" and chlisten[event[5]] and trlisten[event[3]] then
local time=event[2]-skip
if time > 0 then
if opts.analysis and time-lnote > 0 then
timediff[time-lnote]=(timediff[time-lnote] or 0)+1
lnote=time
end
if not div then
div=time
commondiv[div]=1
if div == 1 then
print("\nError: Failed to detect time division! First note starts at 1")
os.exit(1)
end
else
local ldiv=div
div=math.min(div, gcd(div, time))
if opts.analysis then
if not commondiv[div] then
commondiv[div]=1
else
local highest=-math.huge
for k, v in pairs(commondiv) do
if time/k == math.floor(time/k) or (opts.fixdivone and ((time-1)/k == math.floor((time-1)/k) or (time+1)/k == math.floor((time+1)/k))) then
highest=math.max(highest, k)
end
end
commondiv[highest]=commondiv[highest]+1
end
end
if ldiv ~= div and opts.fixdivone then
if math.min(ldiv, gcd(ldiv, time-1)) == ldiv then
div=ldiv
logf(2, "Warning: Corrected off by one error at %d/%d (-1)", time, div)
elseif math.min(ldiv, gcd(ldiv, time+1)) == ldiv then
div=ldiv
logf(2, "Warning: Corrected off by one error at %d/%d (+1)", time, div)
end
end
if div == 1 then
local bad=time/ldiv
if not opts.ignorediv then
print("\nError: Failed to detect time division!")
print("Last good division was "..ldiv)
print("Bad note at "..time.."/"..ldiv.." = "..bad.." ("..math.floor(bad).." + "..time-math.floor(bad)*ldiv.."/"..ldiv..")")
print("\nTry using --analysis for suggestions")
print("--ignorediv and --fixdivone may help correct errors")
os.exit(1)
else
log(2, "Warning: Ignoring bad time division of "..time.."/"..ldiv.." = "..bad)
div=ldiv
end
end
end
end
end
end
if not div then
print("\nError: Failed to detect time division! No notes?", 0)
os.exit(1)
end
log(1, "Info: Detected: " .. div)
end
local function process(tbl, message)
print(message)
local high=-math.huge
local highk=-math.huge
local sorttbl={}
for k, v in pairs(tbl) do
if v > high then
highk, high=k, v
elseif v == high then
highk=math.max(highk, k)
end
sorttbl[#sorttbl+1]={k, v}
end
table.sort(sorttbl, function(a, b) return a[2]<b[2] end)
for i=1, #sorttbl do
local k, v=sorttbl[i][1], sorttbl[i][2]
if v ~= 0 then
if v == high then
k="["..k.."]"
end
print(k..") "..v)
end
end
return high, highk
end
if opts.analysis then
local cdhigh, cdhighk=process(commondiv, "\nInfo: Common div usage:")
local cthigh, cthighk=process(timediff, "\nInfo: Common time difference:")
local factor=math.min(cdhighk, cthighk, gcd(cdhighk, cthighk))
print("\nInfo: Greatest common factor: "..factor)
if factor ~= 1 then
print("Try with --div="..factor)
else
print("Error: Analysis resulted in div of 1.")
end
local cdlowest=cdhighk
while commondiv[cdlowest/2] do
cdlowest=cdlowest/2
end
local ctlowest=cthighk
while timediff[ctlowest/2] do
ctlowest=ctlowest/2
end
local try={}
if cdhighk ~= 1 then
try[#try+1]=cdhighk
end
if cthighk ~= 1 and cthighk ~= cdhighk then
try[#try+1]=cthighk
end
if cdlowest ~= 1 and cdlowest ~= cdhighk then
try[#try+1]=cdlowest
end
if ctlowest ~= 1 and ctlowest ~= cthighk then
try[#try+1]=ctlowest
end
if #try > 0 then
local msg=(factor ~= 1) and "Other choices" or "Possibly try"
print(msg..": "..table.concat(try, ", "))
else
print("No suggestions available, look at above lists")
end
os.exit(1)
end
if not speed then
local ppq=mididata[1]
log(1, "Info: Attempting to detect speed ...")
local tempo
local warned=false
local notes=false
for i=2, #mididata do
local event=mididata[i]
if event[1] == "set_tempo" then
if not tempo or event[2] == 0 or not notes then
tempo=event[4]
elseif tempo ~= event[4] and not warned then
log(1, "Info: midi changes tempo mid song, this is currently not supported.")
warned=true
end
elseif event[1] == "note" then
notes=true
end
end
if not tempo then
log(1, "Info: No tempo events, using default of 500000")
tempo=500000
end
local fspeed=div*(tempo/1000/ppq)/(1220/147)
speed=math.max(math.round(fspeed), 1)
logf(1, "Info: Detected: %s (%d)", fspeed, speed)
end
local function note2pico(note, drum)
local val=(note-36)+(drum and dshift or shift)
local msg=(drum and "Drum note" or "Note")
if val > 63 then
logf(2, "Warning: %s too high, truncating: %d, %+d", msg, val, val-63)
val=63
end
if val < 0 then
logf(2, "Warning: %s too low, truncating: %d", msg, val)
val=0
end
return val
end
local slice={}
local function getChunk(i)
if not slice[i] then
slice[i]={}
end
return slice[i]
end
-- Configured Midi Information
local vol={}
local expr={}
local prgm={}
local pwheel={}
local nrpn={}
local rpn={}
local nrpns={}
local rpns={}
local lrpn
local function resetmidi()
for i=0, 15 do
vol[i]=127
expr[i]=127
prgm[i]=0
pwheel[i]=0
nrpn[i]={[0]=2}
rpn[i]={[0]=2}
nrpns[i]=0
rpns[i]=0
end
lrpn=nil
end
resetmidi()
local mtime=-math.huge
local stime=math.huge
local function parseevent(event)
if event[1] == "note" and chlisten[event[5]] and trlisten[event[3]] and event[2]-skip >= 0 then
event[2]=event[2]-skip
if event[2]/div ~= math.floor(event[2]/div) then
log(2, "Invalid division: " .. event[2] .. " -> " .. event[2]/div)
end
local time=math.floor(event[2]/div)
mtime=math.max(mtime, time)
stime=math.min(stime, time)
local chunk=getChunk(time)
local chunkdata={note=event[6], vol=vol[event[5]], expr=expr[event[5]], vel=event[7], prgm=prgm[event[5]], pwheel=pwheel[event[5]]/8192*rpn[event[5]][0], ch=event[5], durat=event[4]}
if drumch[event[5]] then
chunkdata.prgm=chunkdata.note
chunkdata.note=picodrum[chunkdata.prgm][5]
end
local placed=false
if mode == "blob" then
if #chunk < 4 then
chunk[#chunk+1]=chunkdata
placed=true
end
elseif mode == "channel" then
local cpos=(event[5]%4)+1
if chunk[cpos] == nil then
chunk[cpos]=chunkdata
placed=true
end
elseif mode == "track" then
local tpos=((event[3]-1)%4)+1
if chunk[tpos] == nil then
chunk[tpos]=chunkdata
placed=true
end
end
if not placed and mode ~= "blob" then
for i=1, 4 do
if chunk[i] == nil then
chunk[i]=chunkdata
placed=true
break
end
end
end
if not placed then
log(2, "Warning: Overran " .. time)
local kill
local note=event[6]
for i=1, 4 do
if event[6] > chunk[i].note then
kill=i
end
end
if kill then
chunk[kill]=chunkdata
end
end
elseif event[1] == "text" then
log(1, "Info: (Text) " .. event[4] .. ": " .. event[5])
elseif event[1] == "control_change" then
if event[5] == 0 then
-- No Banks.
elseif event[5] == 6 then
if lrpn == true then
rpn[event[4]][rpns[event[4]]]=event[6]
elseif lrpn == false then
nrpn[event[4]][nrpns[event[4]]]=event[6]
end
lrpn=nil
elseif event[5] == 7 then
vol[event[4]]=event[6]
elseif event[5] == 8 or event[5] == 10 then
-- No Balance/Panning.
if event[6] ~= 64 then
log(2, "Warning: " .. (event[5] == 8 and "balance" or "panning") .. " (ch:" .. event[4] .. "=" .. (event[6]-64) .. ") is not supported.")
end
elseif event[5] == 11 then
expr[event[4]]=event[6]
elseif event[5] == 98 then
nrpns[event[4]]=bit.bor(bit.band(nrpns[event[4]], 0x3f80), event[6])
lrpn=false
elseif event[5] == 99 then
nrpns[event[4]]=bit.bor(bit.band(nrpns[event[4]], 0x7f), bit.lshift(event[6], 7))
lrpn=false
elseif event[5] == 100 then
rpns[event[4]]=bit.bor(bit.band(rpns[event[4]], 0x3f80), event[6])
lrpn=true
elseif event[5] == 101 then
rpns[event[4]]=bit.bor(bit.band(rpns[event[4]], 0x7f), bit.lshift(event[6], 7))
lrpn=true
else
local time, track, channel, control, value=table.unpack(event, 2)
channel=channel+1
logf(2, "Warning: Unknown Controller: {%d, T%d, CH%d, CC%d, V%d}", time, track, channel, control, value)
end
elseif event[1] == "patch_change" then
prgm[event[4]]=event[5]
elseif event[1] == "pitch_wheel_change" then
if not drumch[event[4]] then
pwheel[event[4]]=event[5]
else
log(2, "Warning: Ignoring pitch wheel event on drum channel: " .. event[4])
end
else
end
end
for i=2, #mididata do
local event=mididata[i]
local ok, err=pcall(parseevent, event)
if not ok then
io.stderr:write("Crashed parsing event : {" .. table.concat(event, ", ") .. "}\n\n" .. err .. "\n")
os.exit(1)
end
end
log(1, "Info: Extending notes ...")
local cpparm={"note", "vol", "expr", "vel", "prgm", "pwheel", "ch"}
local lostnotes=0
for i=0, mtime do
if slice[i] then
local chunk=slice[i]
for j=1, 4 do
if chunk[j] and chunk[j].durat then
local kstop=math.ceil(chunk[j].durat/div)-1
for k=1, kstop do
mtime=math.max(mtime, i+k)
local chunk2=getChunk(i+k)
if not chunk2[j] then
chunk2[j]={}
end
if not chunk2[j].note then
for i=1, #cpparm do
chunk2[j][cpparm[i]]=chunk[j][cpparm[i]]
end
chunk2[j].pos=((k == kstop) and "E" or "M")
else
local lost=kstop - k + 1
local lchunk=slice[i+k-1][j]
if k > 1 then
lchunk.pos="E"
end
logf(2, "Warning: Note blocking Note, lost %d", lost)
lchunk.lost=lost
lostnotes=lostnotes+lost
break
end
end
chunk[j].durat=nil
chunk[j].pos="S"
end
end
end
end
if lostnotes > 0 then
logf(1, "Info: Lost %d notes", lostnotes)
end
if lostnotes > 0 and not opts.noregain then
local regained=0
log(1, "Info: Attempting to regain notes ...")
for i=0, mtime do
if slice[i] then
local chunk=slice[i]
for j=1, 4 do
local schunk=chunk[j]
if schunk and schunk.lost then
local chunk2=getChunk(i+1)
local tj
for k=1, 4 do
if not chunk2[k] or not chunk2[k].note then
tj=k
break
end
end
if tj then
for k=1, schunk.lost do
mtime=math.max(mtime, i+k)
local chunk2=getChunk(i+k)
if not chunk2[tj] then
chunk2[tj]={}
end
if not chunk2[tj].note then
for i=1, #cpparm do
chunk2[tj][cpparm[i]]=schunk[cpparm[i]]
end
chunk2[tj].pos=((k == schunk.lost) and "E" or "M")
if k == schunk.lost then
logf(2, "Warning: Regained %d notes", schunk.lost)
regained=regained+schunk.lost
end
else
local lost=schunk.lost - k + 1
local lchunk=slice[i+k-1][tj]
if k > 1 then
lchunk.pos="E"
end
logf(2, "Warning: Regained %d notes", k-1)
lchunk.lost=lost
regained=regained+k-1
break
end
end
schunk.lost=nil
schunk.pos="M"
end
end
end
end
end
logf(1, "Info: Regained %d notes", regained)
if lostnotes == regained then
log(1, "Info: Regained all notes back!")
end
end
if not opts.no2ndpass then
log(1, "Info: Performing second corrective pass ...")
resetmidi()
local pass2nd={}
local function parseevent2(event)
if event[1] == "control_change" then
if event[5] == 6 then
if lrpn == true then
rpn[event[4]][rpns[event[4]]]=event[6]
if rpns[event[4]] == 0 then
local time=math.floor(event[2]/div)
if not pass2nd[time] then
pass2nd[time]={}
end
local chunk=pass2nd[time]
if not chunk.pwheel then
chunk.pwheel={}
end
chunk.pwheel[event[4]]=pwheel[event[4]]/8192*event[6]
end
elseif lrpn == false then
nrpn[event[4]][nrpns[event[4]]]=event[6]
end
lrpn=nil
elseif event[5] == 7 then
local time=math.floor(event[2]/div)
if not pass2nd[time] then
pass2nd[time]={}
end
local chunk=pass2nd[time]
if not chunk.vol then
chunk.vol={}
end
chunk.vol[event[4]]=event[6]
elseif event[5] == 11 then
local time=math.floor(event[2]/div)
if not pass2nd[time] then
pass2nd[time]={}
end
local chunk=pass2nd[time]
if not chunk.expr then
chunk.expr={}
end
chunk.expr[event[4]]=event[6]
elseif event[5] == 98 then
nrpns[event[4]]=bit.bor(bit.band(nrpns[event[4]], 0x3f80), event[6])
lrpn=false
elseif event[5] == 99 then
nrpns[event[4]]=bit.bor(bit.band(nrpns[event[4]], 0x7f), bit.lshift(event[6], 7))
lrpn=false
elseif event[5] == 100 then
rpns[event[4]]=bit.bor(bit.band(rpns[event[4]], 0x3f80), event[6])
lrpn=true
elseif event[5] == 101 then
rpns[event[4]]=bit.bor(bit.band(rpns[event[4]], 0x7f), bit.lshift(event[6], 7))
lrpn=true
end
elseif event[1] == "patch_change" then
prgm[event[4]]=event[5]
elseif event[1] == "pitch_wheel_change" then
pwheel[event[4]]=event[5]
local time=math.floor(event[2]/div)
if not pass2nd[time] then
pass2nd[time]={}
end
local chunk=pass2nd[time]
if not chunk.pwheel then
chunk.pwheel={}
end
chunk.pwheel[event[4]]=event[5]/8192*rpn[event[4]][0]
end
end
for i=2, #mididata do
local event=mididata[i]
local ok, err=pcall(parseevent2, event)
if not ok then
io.stderr:write("Crashed parsing event : {" .. table.concat(event, ", ") .. "}\n\n" .. err .. "\n")
os.exit(1)
end
end
do
local vol={}
local expr={}
local pwheel={}
for i=0, 15 do
vol[i]=127
expr[i]=127
pwheel[i]=0
end
for i=0, mtime do
if pass2nd[i] then
local vold=pass2nd[i].vol
local exprd=pass2nd[i].expr
local pwheeld=pass2nd[i].pwheel
if vold then
for i=0, 15 do
if vold[i] then vol[i]=vold[i] end
end
end
if exprd then
for i=0, 15 do
if exprd[i] then expr[i]=exprd[i] end
end
end
if pwheeld then
for i=0, 15 do
if pwheeld[i] then pwheel[i]=pwheeld[i] end
end
end
end
local chunk=slice[i]
if chunk then
for j=1, 4 do
if chunk[j] then
local schunk=chunk[j]
if vol[schunk.ch] ~= schunk.vol and not opts.novol then
logf(2, "Warning: Corrected volume from %s to %s", schunk.vol, vol[schunk.ch])
end
schunk.vol=vol[schunk.ch]
if expr[schunk.ch] ~= schunk.expr and not opts.noexpr then
logf(2, "Warning: Corrected expression from %s to %s", schunk.expr, expr[schunk.ch])
end
schunk.expr=expr[schunk.ch]
if pwheel[schunk.ch] ~= schunk.pwheel and not opts.nopwheel then
logf(2, "Warning: Corrected pitch wheel from %s to %s", schunk.pwheel, pwheel[schunk.ch])
end
schunk.pwheel=pwheel[schunk.ch]