forked from iamgreaser/it2everything
-
Notifications
You must be signed in to change notification settings - Fork 0
/
munch.py
1593 lines (1322 loc) · 43.6 KB
/
munch.py
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 python2 --
# -*- coding: utf-8 -*-
#
# munch.py - The only .it packer you'll need (eventually)
# by Ben "GreaseMonkey" Russell, 2011 - PUBLIC DOMAIN
#
# ok the hype about IT214 compression was getting out of hand.
# it finally decompresses AND compresses samples correctly.
# i believe all IT214-related bugs have been ironed out with a chainsaw.
# unfortunately, nothing supports compressed stereo... HMM I WONDER WHY
# (IT seems to take it fine, albeit w/o a right channel)
#
# with that said, thanks to xaimus for making thor-ainor.it,
# it was a really good compressor test and exposed a bug in the 16-bit compressor/decompressor.
#
# UPDATE: At the suggestion of Storlek, this now does IT215. Enjoy.
#
# UPDATE: Now has some slight optimisation in the comparisons department.
# In this case, this does the arranging for stereo.it in under a second.
#
# UPDATE: compressed stereo samples follow the XMPlay scheme.
# Also, fillin has been updated so it's actually useful.
# TODO: get an optimal algorithm.
# ok, this usually fares better than IT itself for some weird reason.
# Jeffery Lim, take note of this.
# in fact, you're allowed to steal my algorithm. it's public domain, after all.
# so yeah, this is now SET. time to listen to this COMP304 lecture more intently.
DECOMPRESS_IT214 = True
# however, if you don't have IT, this actually works. i think.
# if it doesn't, you might want to turn it off.
COMPRESS_IT214 = True
# this only makes sense if you have COMPRESS_IT214 enabled.
# DOUBLE DELTAS LOLS
COMPRESS_IT215 = True
# this only makes sense if you have COMPRESS_IT214 enabled.
# WARNING: not supported in most players!
# TRIPLE DELTAS LOLS
COMPRESS_BYTEDELTA = False
# de-stereos samples.
# use this if IT hates you.
STEREO_TAKELEFT = True
# types are "recursive crater", "abstract fillin", "fillin", and "crater".
IT214_ALGO_SELECT = "recursive crater"
# this should hopefully speed up what's been done.
IT214_ALGO_RECURSIVE_CRATER = IT214_ALGO_SELECT == "recursive crater"
# this has been an experiment and is currently very inefficient. don't use it.
IT214_ALGO_ABSTRACT_FILLIN = IT214_ALGO_SELECT == "abstract fillin"
# if you want to, try this algorithm. about half the time, it beats crater.
IT214_ALGO_FILLIN = IT214_ALGO_SELECT == "fillin"
import sys, struct
import heapq
# <del><del>O(n^2) comparison. IT'S EVERYWHERE.</del>
# THIS NOW USES KNUTH-MORRIS-PRATT / O(n). HAVE A NICE DAY.</del>
# OK, back to O(n^2). BUT WITH SOME OPTIMISATION THING
class ITFloater:
#kmp_search_tree = None
first_instance_map = None
none_instance_map = None
def compare_floaters_part(self, other, offs):
for i in xrange(min(len(other.mask),len(self.mask)-offs)):
m1 = self.mask[offs+i]
m2 = other.mask[i]
if m1 == None or m2 == None:
continue
if m1 != m2:
return False
if m1 == -1:
return False
return True
def compare_floaters(self, other, offs):
# mask[0] is neither -1 nor None for self or other
# how's that for a mouthful of logical contractions
p = self.none_instance_map[:]
q = self.first_instance_map[other.mask[0]][:]
qoffs = 0
while p or q:
if p and ((not q) or p[0] < q[0]):
qoffs = heapq.heappop(p)
else:
qoffs = heapq.heappop(q)
if qoffs < offs:
continue
offs = qoffs
if self.compare_floaters_part(other, offs):
return offs
return len(self.mask)
def calculate_first_instance_map(self, start, length):
self.first_instance_map = [[] for i in xrange(256)]
self.none_instance_map = []
for i in xrange(start, length, 1):
v = self.mask[i]
if v == None:
self.none_instance_map.append(i)
elif v != -1:
self.first_instance_map[v].append(i)
for v in xrange(256):
heapq.heapify(self.first_instance_map[v])
heapq.heapify(self.none_instance_map)
# using wikipedia's def^n of this.
def compare_floaters_kmp(self, other, offs):
if other.kmp_search_tree == None:
other.build_kmp_search_tree()
t = other.kmp_search_tree
#print t
# algo start
m = offs
i = 0
s = self.mask
w = other.mask
while m+i < len(s):
#print i,len(w),m+i,len(s)
# both None checks are necessary for this to pack well.
if w[i] == s[m+i] or s[m+i] == None or w[i] == None:
#print "match",m,i
if i == len(w)-1:
return m
i += 1
else:
#print "skip",m,i,t[i]
m += i - t[i]
if t[i] > -1:
i = t[i]
else:
i = 0
# this is where it varies.
#return len(s)
return m
# using wikipedia's def^n of this.
# THERE SHOULDN'T BE ANY STRINGS LESS THAN 2 BYTES HERE.
# (i.e. DON'T USE 1-BYTE SAMPLES)
def build_kmp_search_tree(self):
pos = 2
cnd = 0
self.kmp_search_tree = [-1,0] + [0 for i in xrange(len(self.mask))]
while pos < len(self.mask):
# first case: the substring continues
# NOTE: the first None check made a file larger than it should be.
# the second actually produces incorrect data and is caught by the AssertionError.
if self.mask[pos - 1] == self.mask[cnd] or self.mask[cnd] == None:# or self.mask[pos - 1] == None:
cnd += 1
self.kmp_search_tree[pos] = cnd
pos += 1
# second case: it doesn't, but we can fall back
elif cnd > 0:
cnd = self.kmp_search_tree[cnd]
# third case: we have run out of candidates. Note cnd = 0
else:
cnd = 0
pos += 1
# TODO unravel patterns and repack them
class ITPattern(ITFloater):
def __init__(self, fp):
patlen, self.rows, _ = struct.unpack("<HHI",fp.read(8))
# Ignore pattern length. Very occasionally, patterns are >= 64KB.
# Plus there's plenty of checks and balances in everything ever.
# Not sure about IT, sadly.
# We'll calculate to check if it's correct, though.
pdroot = fp.tell()
self.data = [[[253,0,255,0,0] for i in xrange(64)] for r in xrange(self.rows)]
# TODO? check what the defaults are?
lmask = [-1 for i in xrange(64)]
ldata = [[-1,-1,-1,-1,-1] for i in xrange(64)]
for r in xrange(self.rows):
while True:
ch = ord(fp.read(1))
if ch == 0:
break
elif ch & 0x80:
ch -= 0x81
lmask[ch] = ord(fp.read(1))
else:
ch -= 0x01
if lmask[ch] & 0x01:
ldata[ch][0] = ord(fp.read(1))
if lmask[ch] & 0x02:
ldata[ch][1] = ord(fp.read(1))
if lmask[ch] & 0x04:
ldata[ch][2] = ord(fp.read(1))
if lmask[ch] & 0x08:
ldata[ch][3] = ord(fp.read(1))
ldata[ch][4] = ord(fp.read(1))
if lmask[ch] & 0x11:
self.data[r][ch][0] = ldata[ch][0]
if lmask[ch] & 0x22:
self.data[r][ch][1] = ldata[ch][1]
if lmask[ch] & 0x44:
self.data[r][ch][2] = ldata[ch][2]
if lmask[ch] & 0x88:
self.data[r][ch][3] = ldata[ch][3]
self.data[r][ch][4] = ldata[ch][4]
self.currently_used = False
def use(self, module):
if not self.currently_used:
lins = [0 for i in xrange(64)]
for row in self.data:
for chidx in xrange(64):
chn = row[chidx]
if chn[0] <= 119:
module.chn_has_sound[chidx] = True
if chn[1] != 0:
lins[chidx] = chn[1]
if module.flags & 4:
if chn[1] != 0:
if chn[1]-1 < len(module.inslist):
module.make_use_of(module.inslist[chn[1]-1],"instrument",chn[1]-1)
else:
if chn[1] != 0:
if chn[1]-1 < len(module.smplist):
module.make_use_of(module.smplist[chn[1]-1],"sample",chn[1]-1)
if module.flags & 4:
if lins[chidx] != 0:
if chn[0] < 120:
if lins[chidx]-1 < len(module.inslist):
module.inslist[lins[chidx]-1].patuse(module,chn[0])
self.currently_used = True
def remap_smpins(self, smpinsmap):
for row in self.data:
for chidx in xrange(64):
chn = row[chidx]
if chn[1] != 0:
#print chn[1],smpinsmap[chn[1]-1]+1
if chn[1]-1 in smpinsmap:
chn[1] = smpinsmap[chn[1]-1]+1
else:
chn[1] = 99
def pack(self):
packdata = []
lmask = [-1 for i in xrange(64)]
ldata = [[-1,-1,-1,-1,-1] for i in xrange(64)]
print "Packing pattern..."
for row in self.data:
for ch in xrange(64):
cell = row[ch]
# TODO delegate mask calc to own method
mask = 0
if cell[0] != 253:
if cell[0] == ldata[ch][0]:
mask |= 0x10
else:
mask |= 0x01
ldata[ch][0] = cell[0]
if cell[1] != 0:
if cell[1] == ldata[ch][1]:
mask |= 0x20
else:
mask |= 0x02
ldata[ch][1] = cell[1]
if cell[2] != 255:
if cell[2] == ldata[ch][2]:
mask |= 0x40
else:
mask |= 0x04
ldata[ch][2] = cell[2]
if cell[3] != 0 or cell[4] != 0:
if cell[3] == ldata[ch][3] and cell[4] == ldata[ch][4]:
mask |= 0x80
else:
mask |= 0x08
ldata[ch][3] = cell[3]
ldata[ch][4] = cell[4]
if mask:
if lmask[ch] == mask:
packdata.append(ch+0x01)
else:
packdata.append(ch+0x81)
packdata.append(mask)
lmask[ch] = mask
if mask & 0x01:
packdata.append(cell[0])
if mask & 0x02:
packdata.append(cell[1])
if mask & 0x04:
packdata.append(cell[2])
if mask & 0x08:
packdata.append(cell[3])
packdata.append(cell[4])
packdata.append(0)
if len(packdata) > 0xFFFF:
print "WARNING: Pattern length > 65535 bytes."
q = struct.pack("<HH", len(packdata), self.rows)
self.mask = [ord(q[0]),ord(q[1]),ord(q[2]),ord(q[3]),None,None,None,None] + packdata
def optimise(self, module):
print "Optimising pattern..."
print "- checking for effects that do absolutely nothing"
for row in self.data:
for cell in row:
# .xx -> .00
if cell[3] == 0:
cell[4] = 0
# [A]00 -> .00
if cell[3] in [1] and cell[4] == 0:
cell[3] = 0
print "- checking for unnecessary changes in voleffect/effect data"
for ch in xrange(64):
left = 0
lefp = 0
lvol = 0
# TODO? check for (e.g. G_) Gx -> thing -> G0 -> Gx?
# same deal with (e.g. G__) Gxx -> thing -> G00 -> Gxx?
# NOTE: this may screw up blatant crazy row jumpers
# even without that extra check O_O
# but more notoriously with that extra check D:
for r in xrange(self.rows):
cell = self.data[r][ch]
if cell[2] != 0:
if cell[2] >= 65 and cell[2] <= 124:
if cell[2]%10 == 5 and (cell[2]-65)//10 == (lvol-65)//10:
cell[2] = lvol
if cell[2] >= 193 and cell[2] <= 212:
if cell[2]%10 == 3 and (cell[2]-193)//10 == (lvol-193)//10:
cell[2] = lvol
lvol = cell[2]
if cell[3] != 0:
if cell[3] in [4,5,6,7,8,9,10,11,12,14,15,16,17,18,19,20,21,23,25]:
if cell[3] == left and cell[4] == 0:
cell[4] = lefp
left = cell[3]
lefp = cell[4]
# TODO: awesome mask hacks
class IT214Exception(Exception):
pass
class IT214ContinueException(Exception):
pass
IT214_COMP_LOWER8 = [0,-1,-3,-7,-15,-31]
IT214_COMP_LOWER8 += [-(1<<(i-1))+4 for i in xrange(7,8+1,1)]
IT214_COMP_LOWER8 += [-128]
IT214_COMP_UPPER8 = [0, 1, 3, 7, 15, 31]
IT214_COMP_UPPER8 += [ (1<<(i-1))-5 for i in xrange(7,8+1,1)]
IT214_COMP_UPPER8 += [ 127]
IT214_COMP_LOWER16 = [0,-1,-3,-7,-15,-31]
IT214_COMP_LOWER16 += [-(1<<(i-1))+8 for i in xrange(7,16+1,1)]
IT214_COMP_LOWER16 += [-32768]
IT214_COMP_UPPER16 = [0, 1, 3, 7, 15, 31]
IT214_COMP_UPPER16 += [ (1<<(i-1))-9 for i in xrange(7,16+1,1)]
IT214_COMP_UPPER16 += [ 32767]
IT214_WIDTHCHANGESIZE = [4,5,6,7,8,9,7,8,9,10,11,12,13,14,15,16,17]
class IT214Compressor:
def __init__(self, data, offs, length, is16, is215):
# Probably the only IT214 compressor in the world to handle stereo samples.
# (ok i can just about guarantee that Storlek has something)
self.base_length = min(length,0x4000 if is16 else 0x8000)
self.length = self.base_length
self.packed_data = [0,0]
self.bpos = 0
self.brem = 8
self.bval = 0
self.block_length_pos = 0
self.offs = offs
self.is16 = is16
self.lowertab = IT214_COMP_LOWER16 if is16 else IT214_COMP_LOWER8
self.uppertab = IT214_COMP_UPPER16 if is16 else IT214_COMP_UPPER8
self.dwidth = 17 if is16 else 9
self.fetch_a = 4 if is16 else 3
self.lower_b = -8 if is16 else -4
self.data = []
if is16:
clamp_part = lambda x : x - 0x10000 if x >= 0x8000 else x
self.clamp = lambda x : clamp_part(x&0xFFFF)
self.clamp_unsigned = lambda x : (x&0xFFFF)
for i in xrange(self.base_length):
self.data.append(ord(data[(offs+i)*2])|(ord(data[(offs+i)*2+1])<<8))
else:
clamp_part = lambda x : x - 0x100 if x >= 0x80 else x
self.clamp = lambda x : clamp_part(x&0xFF)
self.clamp_unsigned = lambda x : (x&0xFF)
for i in xrange(self.base_length):
self.data.append(ord(data[(offs+i)]))
self.deltafy()
if is215:
# DO IT AGAIN LOLOLOLOLOLOL
self.deltafy()
if IT214_ALGO_RECURSIVE_CRATER:
self.squish_recursive()
else:
self.squish()
self.packed_data.append(self.bval)
self.packed_data[0] = (len(self.packed_data)-2)&0xFF
self.packed_data[1] = (len(self.packed_data)-2)>>8
if len(self.packed_data) >= 0x10002:
raise Exception("somehow we exceeded the 16-bit counter while packing the data.")
def get_length(self):
return self.base_length
def get_data(self):
return self.packed_data
def write(self, width, v):
while width > self.brem:
self.bval |= (v<<self.bpos)&0xFF
width -= self.brem
v >>= self.brem
self.bpos = 0
self.brem = 8
self.packed_data.append(self.bval)
self.bval = 0
if width > 0: # uhh, this check might be redundant
self.bval |= (v & ((1<<width)-1)) << self.bpos
self.brem -= width
self.bpos += width
def deltafy(self):
root = 0
for i in xrange(self.base_length):
root, self.data[i] = self.data[i], self.clamp(self.data[i]-root)
def get_width_change_size(self, w):
wcs = IT214_WIDTHCHANGESIZE[w-1]
if w <= 6 and self.is16:
wcs += 1
return wcs
def squish_recursive_part(self, bwt, swidth, lwidth, rwidth, width, offs, length):
#print "width", width+1, offs, length
if width+1 < 1:
for i in xrange(offs,offs+length,1):
bwt[i] = swidth
return
i = offs
itarg = length+offs
while i < itarg:
if self.data[i] >= self.lowertab[width] and self.data[i] <= self.uppertab[width]:
j = i
while i < itarg and self.data[i] >= self.lowertab[width] and self.data[i] <= self.uppertab[width]:
i += 1
blklen = i-j
twidth = swidth
comparison = False
xlwidth = lwidth if j == offs else swidth
xrwidth = rwidth if i == itarg else swidth
wcsl = self.get_width_change_size(xlwidth)
wcss = self.get_width_change_size(swidth)
wcsw = self.get_width_change_size(width+1)
if i == self.base_length:
keep_down = wcsl+(width+1)*blklen
level_left = wcsl+swidth*blklen
if xlwidth == swidth:
level_left -= wcsl
comparison = keep_down <= level_left
else:
keep_down = wcsl+(width+1)*blklen+wcsw
level_left = wcsl+swidth*blklen+wcss
if xlwidth == swidth:
level_left -= wcsl
if xrwidth == swidth:
level_left -= wcss
comparison = keep_down <= level_left
if comparison:
self.squish_recursive_part(bwt, width+1, xlwidth, xrwidth, width-1, j, blklen)
else:
self.squish_recursive_part(bwt, swidth, xlwidth, xrwidth, width-1, j, blklen)
else:
bwt[i] = swidth
i += 1
def squish_recursive(self):
# initialise bit width table with initial values
bwt = [self.dwidth for i in xrange(self.base_length)]
# recurse
self.squish_recursive_part(bwt, self.dwidth, self.dwidth, self.dwidth, self.dwidth-2, 0, self.base_length)
# write
self.squish_write(bwt)
def squish(self):
# initialise bit width table with initial values
bwt = [self.dwidth for i in xrange(self.base_length)]
if IT214_ALGO_ABSTRACT_FILLIN: # "Abstract fillin" algorithm
# precrater then analyse
print "building craters"
for i in xrange(self.base_length):
for width in xrange(self.dwidth):
if self.data[i] >= self.lowertab[width] and self.data[i] <= self.uppertab[width]:
bwt[i] = width+1
break
assert width != self.dwidth-1
print "analysing cratery"
l = []
w = self.dwidth
c = 0
n = 0
for v in bwt:
if w != v:
l.append((w,c,n))
w = v
c = IT214_WIDTHCHANGESIZE[w-1]
if w <= 6 and self.is16:
c += 1
n = 0
n += 1
l.append((w,c,n))
print "removing crap cratery"
k = True
r = 0
while k:
k = False
print len(l)
print "iteration", r+1
r += 1
i = len(l)-1
while i >= 1:
wl,cl,nl = l[i-1]
wm,cm,nm = l[i]
# action cost for keep / merge
ak = wl*nl + cl + wm*nm + cm
am = wl*(nl+nm) + cl
act = 0 # middle -> left
# target width for merge
tw = wl
tn = nl+nm
if i == len(l)-1:
ak -= cm
am -= cl
else:
wr,cr,nr = l[i+1]
if wr == wl:
act = 1 # right -> middle -> left base
am -= cl
tn = nl+nm+nr
else:
amr = cl + wr*(nl+nm)
if amr < am and wl > wm:
act = 2 # right base -> middle
tm = l[i+1][0]
tw = wm
tn = nm+nr
if am < ak and tw > wm:
if act == 0:
l = l[:i-1] + [(tw,self.get_width_change_size(tw),tn)] + l[i+1:]
elif act == 1:
l = l[:i-1] + [(tw,self.get_width_change_size(tw),tn)] + l[i+2:]
elif act == 2:
l = l[:i] + [(tw,self.get_width_change_size(tw),tn)] + l[i+2:]
else:
raise Exception("EDOOFUS this should never happen")
i -= 2
k = True
else:
i -= 1
print len(l)
print "recreating bit width table"
w,c,n = l.pop(0)
for i in xrange(len(bwt)):
if n == 0:
w,c,n = l.pop(0)
bwt[i] = w
n -= 1
elif IT214_ALGO_FILLIN: # "Fill in" algorithm
# precrater then raise craters
print "building craters"
for i in xrange(self.base_length):
for width in xrange(self.dwidth):
if self.data[i] >= self.lowertab[width] and self.data[i] <= self.uppertab[width]:
bwt[i] = width+1
break
assert width != self.dwidth-1
print "raising craters"
for width in xrange(self.dwidth):
print "width", width+1
beg = None
swidth = None
for i in xrange(self.base_length):
if bwt[i] == width+1:
if beg == None:
swidth = self.dwidth
if i > 0:
swidth = bwt[i-1]
beg = i
if i != self.base_length-1:
continue
i += 1
if beg != None:
length = i - beg
wcsl = IT214_WIDTHCHANGESIZE[swidth-1]
wcsr = IT214_WIDTHCHANGESIZE[width]
if swidth <= 6 and self.is16:
wcsl += 1
if (width+1) <= 6 and self.is16:
wcsr += 1
twidth = width
if i == self.base_length:
keep_down = wcsl+(width+1)*length
raise_left = swidth*length
if keep_down <= raise_left or (width+1) > swidth:
twidth = width+1
else:
twidth = swidth
else:
keep_down = wcsl+(width+1)*length+wcsr
raise_left = swidth*length+wcsl
raise_right = wcsl+bwt[i]*length
if bwt[i] == swidth:
raise_left -= wcsl
raise_right -= wcsl
if keep_down <= raise_left or (width+1) > swidth:
if keep_down <= raise_right or (width+1) > bwt[i]:
twidth = width+1
else:
twidth = bwt[i]
elif raise_left < raise_right or (width+1) > bwt[i]:
twidth = swidth
else:
twidth = bwt[i]
if twidth != width+1:
for j in xrange(beg,i,1):
bwt[j] = twidth
if i == self.base_length:
break
beg = None
else: # new "Crater" algorithm
# determine whether it would be wise to crater stuff
for width in xrange(self.dwidth-2,0-1,-1):
print "width", width+1
beg = None
swidth = None
for i in xrange(self.base_length):
if self.data[i] >= self.lowertab[width] and self.data[i] <= self.uppertab[width]:
if beg == None:
swidth = self.dwidth
if i > 0:
swidth = bwt[i-1]
beg = i
if i != self.base_length-1:
continue
i += 1
if beg != None:
length = i - beg
# only if we save bytes do we lower the bit width
# note, this is a greedy algorithm and might not be optimal
# UPDATE: it actually isn't.
wcsl = IT214_WIDTHCHANGESIZE[swidth-1]
wcsr = IT214_WIDTHCHANGESIZE[width]
if swidth <= 6 and self.is16:
wcsl += 1
if (width+1) <= 6 and self.is16:
wcsr += 1
twidth = swidth
if i == self.base_length:
keep_down = wcsl+(width+1)*length
level_left = swidth*length
if keep_down <= level_left:
for j in xrange(beg,i,1):
bwt[j] = width+1
else:
keep_down = wcsl+(width+1)*length+wcsr
level_left = swidth*length+wcsl
level_right = wcsl+bwt[i]*length
if bwt[i] == swidth:
level_left -= wcsl
level_right -= wcsl
if keep_down <= level_left:
if keep_down <= level_right:
for j in xrange(beg,i,1):
bwt[j] = width+1
if i == self.base_length:
break
beg = None
#print bwt
self.squish_write(bwt)
def squish_write(self, bwt):
# write values
print "writing"
dwidth = self.dwidth
for i in xrange(self.base_length):
if bwt[i] != dwidth:
if dwidth <= 6: # MODE A
self.write(dwidth, (1<<(dwidth-1)))
self.write(self.fetch_a, self.convert_width(dwidth,bwt[i]))
elif dwidth < self.dwidth: # MODE B
xv = (1<<(dwidth-1))+self.lower_b+self.convert_width(dwidth,bwt[i])
self.write(dwidth, xv)
else: # MODE C
assert (bwt[i]-1) >= 0
self.write(dwidth, (1<<(dwidth-1))+bwt[i]-1)
dwidth = bwt[i]
assert self.data[i] >= self.lowertab[dwidth-1] and self.data[i] <= self.uppertab[dwidth-1]
if dwidth == self.dwidth:
assert (self.clamp_unsigned(self.data[i]) & (1<<(self.dwidth-1))) == 0
self.write(dwidth, self.clamp_unsigned(self.data[i]))
def convert_width(self, curwidth, newwidth):
curwidth -= 1
newwidth -= 1
assert newwidth != curwidth
if newwidth > curwidth:
newwidth -= 1
return newwidth
class IT214Decompressor:
def __init__(self, data, length, is16):
self.data = data
self.dpos = 0
self.bpos = 0
self.brem = 8
self.base_length = length
self.grab_length = length
self.running_count = 0
self.is16 = is16
self.fetch_a = 4 if is16 else 3
self.spread_b = 16 if is16 else 8
self.lower_b = -8 if is16 else -4
self.upper_b = 7 if is16 else 3
self.width = self.widthtop = 17 if is16 else 9
self.unpack_mask = 0xFFFF if is16 else 0xFF
self.maxgrablen = 0x4000 if is16 else 0x8000
self.unpacked_data = []
try:
self.unpack()
except IT214ContinueException, e:
print "WARNING: IT214ContinueException occurred:", e
print "This might actually be a bug."
return # it's OK dear
except IT214Exception, e:
print "WARNING! WARNING! SAMPLE DATA DECOMPRESSED BADLY!"
print "IT214Exception:", e
print "old running count:", self.running_count
while self.running_count < self.base_length:
self.unpacked_data.append(self.unpacked_root)
self.running_count += 1
self.running_count = self.base_length
return
def unpack(self):
#while self.grab_length > 0:
# I think THIS is what itsex.c meant. --GM
self.length = min(self.grab_length,self.maxgrablen)
self.grab_length -= self.length
print "subchunk length: %i" % self.length
self.unpacked_root = 0
while self.length > 0 and not self.end_of_block():
if self.width == 0 or self.width > self.widthtop:
raise IT214Exception("invalid bit width")
v = self.read(self.width)
topbit = (1<<(self.width-1))
#print self.width,v
if self.width <= 6: # MODE A
if v == topbit:
self.change_width(self.read(self.fetch_a))
#print self.width
else:
self.write(self.width, v, topbit)
elif self.width < self.widthtop: # MODE B
if v >= topbit+self.lower_b and v <= topbit+self.upper_b:
qv = v - (topbit+self.lower_b)
#print "MODE B CHANGE",self.width,v,qv
self.change_width(qv)
#print self.width
else:
self.write(self.width, v, topbit)
else: # MODE C
if v & topbit:
self.width = (v & ~topbit)+1
#print self.width
else:
self.write(self.width-1, (v & ~topbit), 0)
print "bytes remaining in block: %i" % (len(self.data)-self.dpos)
def write(self, width, value, topbit):
self.running_count += 1
self.length -= 1
if DECOMPRESS_IT214:
v = value
if v&topbit:#(1<<(width-1)):
v -= topbit*2#1<<width
self.unpacked_root = (self.unpacked_root+v) & self.unpack_mask
self.unpacked_data.append(self.unpacked_root)
def change_width(self, width):
width += 1
if width >= self.width:
width += 1
assert self.width != width # EDOOFUS
self.width = width
def get_length(self):
return self.running_count
def get_data(self):
return self.unpacked_data
def end_of_block(self):
return self.dpos >= len(self.data)
def read(self, width):
v = 0
vpos = 0
vmask = (1<<width)-1
while width >= self.brem:
if self.dpos >= len(self.data):
raise IT214Exception("unbalanced block end")
v |= (ord(self.data[self.dpos])>>self.bpos)<<vpos
vpos += self.brem
width -= self.brem
self.dpos += 1
self.brem = 8
self.bpos = 0
if width > 0:
if self.dpos >= len(self.data):
raise IT214Exception("unbalanced block end")
v |= (ord(self.data[self.dpos])>>self.bpos)<<vpos
v &= vmask
self.brem -= width
self.bpos += width
return v
class ITSampleData(ITFloater):
def __init__(self, sample, fp, length, cvt, flags):
if flags & 2:
print "WARNING: Sample is 16-bit. Consider converting to 8-bit."
if flags & 4:
print "WARNING: Sample is stereo. Consider converting to mono."
print "Stereo samples don't play in stereo in IT, by the way."
print "Plus, S3M-style stereo (left then right) screws up in MadTracker 2."
if flags & 8:
print "...compressed stereo? WHAT THE HELL!!!?"
if STEREO_TAKELEFT:
print "THIS SAMPLE WILL BE REDUCED TO MONO."
flags &= ~4
sample.flags &= ~4
if flags & 4: # easy enough to deal with
length *= 2
if flags & 8:
print "Decompressing sample data to work out length..."
print "Sample bit depth: %i-bit" % (16 if (flags & 2) else 8)
rootptr = fp.tell()
if DECOMPRESS_IT214:
self.data = []
xlen = length
do_stereo = (flags & 4) != 0
if do_stereo:
xlen >>= 1
while xlen > 0:
blkcomplen, = struct.unpack("<H",fp.read(2))
# NOTE: I may have misunderstood itsex.c. --GM
#if blkcomplen >= 0x8000:
# print "WARNING: Compressed block length is > 32KB."
# print "You most likely didn't use ImpulseTracker."
print "compressed: %i" % blkcomplen
decomp = IT214Decompressor(fp.read(blkcomplen), xlen, (flags & 2) != 0)
if DECOMPRESS_IT214:
xdata = decomp.get_data()
if cvt & 4:
print "undeltafying IT215 sample"
base = 0
if flags & 2:
for i in xrange(len(xdata)):
base += xdata[i]
base &= 0xFFFF
xdata[i] = base
else: