-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathBitBltPlugin.js
4770 lines (3883 loc) · 120 KB
/
BitBltPlugin.js
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
/* Smalltalk from Squeak4.5 with VMMaker 4.13.6 translated as JS source on 3 November 2014 1:52:20 pm */
/* Automatically generated by
JSSmartSyntaxPluginCodeGenerator VMMakerJS-bf.15 uuid: fd4e10f2-3773-4e80-8bb5-c4b471a014e5
from
BitBltSimulation VMMaker-bf.353 uuid: 8ae25e7e-8d2c-451e-8277-598b30e9c002
*/
window.module("users.bert.SqueakJS.plugins.BitBltPlugin").requires("users.bert.SqueakJS.vm").toRun(function() {
"use strict";
var VM_PROXY_MAJOR = 1;
var VM_PROXY_MINOR = 11;
/*** Functions ***/
function CLASSOF(obj) { return typeof obj === "number" ? interpreterProxy.classSmallInteger() : obj.sqClass }
function SIZEOF(obj) { return obj.pointers ? obj.pointers.length : obj.words ? obj.words.length : obj.bytes ? obj.bytes.length : 0 }
function BYTESIZEOF(obj) { return obj.bytes ? obj.bytes.length : obj.words ? obj.words.length * 4 : 0 }
function DIV(a, b) { return Math.floor(a / b) | 0; } // integer division
function MOD(a, b) { return a - DIV(a, b) * b | 0; } // signed modulus
function SHL(a, b) { return b > 31 ? 0 : a << b; } // fix JS shift
function SHR(a, b) { return b > 31 ? 0 : a >>> b; } // fix JS shift
function SHIFT(a, b) { return b < 0 ? (b < -31 ? 0 : a >>> (0-b) ) : (b > 31 ? 0 : a << b); }
/*** Constants ***/
var AllOnes = 4294967295;
var AlphaIndex = 3;
var BBClipHeightIndex = 13;
var BBClipWidthIndex = 12;
var BBClipXIndex = 10;
var BBClipYIndex = 11;
var BBColorMapIndex = 14;
var BBDestFormIndex = 0;
var BBDestXIndex = 4;
var BBDestYIndex = 5;
var BBHalftoneFormIndex = 2;
var BBHeightIndex = 7;
var BBRuleIndex = 3;
var BBSourceFormIndex = 1;
var BBSourceXIndex = 8;
var BBSourceYIndex = 9;
var BBWarpBase = 15;
var BBWidthIndex = 6;
var BinaryPoint = 14;
var BlueIndex = 2;
var ColorMapFixedPart = 2;
var ColorMapIndexedPart = 4;
var ColorMapNewStyle = 8;
var ColorMapPresent = 1;
var FixedPt1 = 16384;
var FormBitsIndex = 0;
var FormDepthIndex = 3;
var FormHeightIndex = 2;
var FormWidthIndex = 1;
var GreenIndex = 1;
var OpTableSize = 43;
var RedIndex = 0;
/*** Variables ***/
var affectedB = 0;
var affectedL = 0;
var affectedR = 0;
var affectedT = 0;
var bbH = 0;
var bbW = 0;
var bitBltOop = 0;
var bitCount = 0;
var clipHeight = 0;
var clipWidth = 0;
var clipX = 0;
var clipY = 0;
var cmBitsPerColor = 0;
var cmFlags = 0;
var cmLookupTable = null;
var cmMask = 0;
var cmMaskTable = null;
var cmShiftTable = null;
var combinationRule = 0;
var componentAlphaModeAlpha = 0;
var componentAlphaModeColor = 0;
var destBits = 0;
var destDelta = 0;
var destDepth = 0;
var destForm = 0;
var destHeight = 0;
var destIndex = 0;
var destMSB = 0;
var destMask = 0;
var destPPW = 0;
var destPitch = 0;
var destWidth = 0;
var destX = 0;
var destY = 0;
var dither8Lookup = new Array(4096);
var ditherMatrix4x4 = [
0, 8, 2, 10,
12, 4, 14, 6,
3, 11, 1, 9,
15, 7, 13, 5
];
var ditherThresholds16 = [ 0, 2, 4, 6, 8, 12, 14, 16 ];
var ditherValues16 = [
0, 0, 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
];
var dstBitShift = 0;
var dx = 0;
var dy = 0;
var gammaLookupTable = null;
var hDir = 0;
var halftoneBase = 0;
var halftoneForm = 0;
var halftoneHeight = 0;
var hasSurfaceLock = 0;
var height = 0;
var interpreterProxy = null;
var isWarping = 0;
var lockSurfaceFn = null;
var mask1 = 0;
var mask2 = 0;
var maskTable = [
0, 1, 3, 0, 15, 31, 0, 0, 255, 0, 0, 0, 0, 0, 0, 0, 65535,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1
];
var moduleName = "BitBltPlugin 3 November 2014 (e)";
var nWords = 0;
var noHalftone = 0;
var noSource = 0;
var opTable = new Array(43);
var preload = 0;
var querySurfaceFn = null;
var skew = 0;
var sourceAlpha = 0;
var sourceBits = 0;
var sourceDelta = 0;
var sourceDepth = 0;
var sourceForm = 0;
var sourceHeight = 0;
var sourceIndex = 0;
var sourceMSB = 0;
var sourcePPW = 0;
var sourcePitch = 0;
var sourceWidth = 0;
var sourceX = 0;
var sourceY = 0;
var srcBitShift = 0;
var sx = 0;
var sy = 0;
var ungammaLookupTable = null;
var unlockSurfaceFn = null;
var vDir = 0;
var warpAlignMask = 0;
var warpAlignShift = 0;
var warpBitShiftTable = new Array(32);
var warpSrcMask = 0;
var warpSrcShift = 0;
var width = 0;
/* Subract the pixels in the source and destination, color by color,
and return the sum of the absolute value of all the differences.
For non-rgb, XOR the two and return the number of differing pixels.
Note that the region is not clipped to bit boundaries, but only to the
nearest (enclosing) word. This is because copyLoop does not do
pre-merge masking. For accurate results, you must subtract the
values obtained from the left and right fringes. */
function OLDrgbDiffwith(sourceWord, destinationWord) {
var diff;
var pixMask;
if (destDepth < 16) {
/* Just xor and count differing bits if not RGB */
diff = sourceWord ^ destinationWord;
pixMask = maskTable[destDepth];
while (!(diff === 0)) {
if ((diff & pixMask) !== 0) {
++bitCount;
}
diff = SHR(diff, destDepth);
}
return destinationWord;
}
if (destDepth === 16) {
diff = partitionedSubfromnBitsnPartitions(sourceWord, destinationWord, 5, 3);
bitCount = ((bitCount + (diff & 31)) + ((diff >>> 5) & 31)) + ((diff >>> 10) & 31);
diff = partitionedSubfromnBitsnPartitions(sourceWord >>> 16, destinationWord >>> 16, 5, 3);
bitCount = ((bitCount + (diff & 31)) + ((diff >>> 5) & 31)) + ((diff >>> 10) & 31);
} else {
diff = partitionedSubfromnBitsnPartitions(sourceWord, destinationWord, 8, 3);
bitCount = ((bitCount + (diff & 255)) + ((diff >>> 8) & 255)) + ((diff >>> 16) & 255);
}
return destinationWord;
}
/* Tally pixels into the color map. Note that the source should be
specified = destination, in order for the proper color map checks
to be performed at setup.
Note that the region is not clipped to bit boundaries, but only to the
nearest (enclosing) word. This is because copyLoop does not do
pre-merge masking. For accurate results, you must subtract the
values obtained from the left and right fringes. */
function OLDtallyIntoMapwith(sourceWord, destinationWord) {
var pixMask;
var mapIndex;
var i;
var shiftWord;
if ((cmFlags & (ColorMapPresent | ColorMapIndexedPart)) !== (ColorMapPresent | ColorMapIndexedPart)) {
return destinationWord;
}
if (destDepth < 16) {
/* loop through all packed pixels. */
pixMask = maskTable[destDepth] & cmMask;
shiftWord = destinationWord;
for (i = 1; i <= destPPW; i++) {
mapIndex = shiftWord & pixMask;
tallyMapAtput(mapIndex, tallyMapAt(mapIndex) + 1);
shiftWord = SHR(shiftWord, destDepth);
}
return destinationWord;
}
if (destDepth === 16) {
/* Two pixels Tally the right half... */
mapIndex = rgbMapfromto(destinationWord & 65535, 5, cmBitsPerColor);
tallyMapAtput(mapIndex, tallyMapAt(mapIndex) + 1);
mapIndex = rgbMapfromto(destinationWord >>> 16, 5, cmBitsPerColor);
tallyMapAtput(mapIndex, tallyMapAt(mapIndex) + 1);
} else {
/* Just one pixel. */
mapIndex = rgbMapfromto(destinationWord, 8, cmBitsPerColor);
tallyMapAtput(mapIndex, tallyMapAt(mapIndex) + 1);
}
return destinationWord;
}
function addWordwith(sourceWord, destinationWord) {
return sourceWord + destinationWord;
}
/* Blend sourceWord with destinationWord, assuming both are 32-bit pixels.
The source is assumed to have 255*alpha in the high 8 bits of each pixel,
while the high 8 bits of the destinationWord will be ignored.
The blend produced is alpha*source + (1-alpha)*dest, with
the computation being performed independently on each color
component. The high byte of the result will be 0. */
function alphaBlendwith(sourceWord, destinationWord) {
var unAlpha;
var blendRB;
var blendAG;
var result;
var alpha;
/* High 8 bits of source pixel */
alpha = sourceWord >>> 24;
if (alpha === 0) {
return destinationWord;
}
if (alpha === 255) {
return sourceWord;
}
unAlpha = 255 - alpha;
/* blend red and blue */
blendRB = (((sourceWord & 16711935) * alpha) + ((destinationWord & 16711935) * unAlpha)) + 16711935;
/* blend alpha and green */
blendAG = (((((sourceWord >>> 8) | 16711680) & 16711935) * alpha) + (((destinationWord >>> 8) & 16711935) * unAlpha)) + 16711935;
/* divide by 255 */
blendRB = ((blendRB + (((blendRB - 65537) >>> 8) & 16711935)) >>> 8) & 16711935;
blendAG = ((blendAG + (((blendAG - 65537) >>> 8) & 16711935)) >>> 8) & 16711935;
result = blendRB | (blendAG << 8);
if (result != alphaBlendWithWASM(sourceWord, destinationWord)) debugger;
return result;
}
function alphaBlendConstwith(sourceWord, destinationWord) {
return alphaBlendConstwithpaintMode(sourceWord, destinationWord, false);
}
/* Blend sourceWord with destinationWord using a constant alpha.
Alpha is encoded as 0 meaning 0.0, and 255 meaning 1.0.
The blend produced is alpha*source + (1.0-alpha)*dest, with the
computation being performed independently on each color component.
This function could eventually blend into any depth destination,
using the same color averaging and mapping as warpBlt.
paintMode = true means do nothing if the source pixel value is zero. */
/* This first implementation works with dest depths of 16 and 32 bits only.
Normal color mapping will allow sources of lower depths in this case,
and results can be mapped directly by truncation, so no extra color maps are needed.
To allow storing into any depth will require subsequent addition of two other
colormaps, as is the case with WarpBlt. */
function alphaBlendConstwithpaintMode(sourceWord, destinationWord, paintMode) {
var rgbMask;
var pixMask;
var pixBlend;
var j;
var sourceShifted;
var result;
var shift;
var sourcePixVal;
var i;
var unAlpha;
var destPixVal;
var blendRB;
var blendAG;
var bitsPerColor;
var blend;
var destShifted;
var maskShifted;
if (destDepth < 16) {
return destinationWord;
}
unAlpha = 255 - sourceAlpha;
result = destinationWord;
if (destPPW === 1) {
/* 32bpp blends include alpha */
if (!(paintMode && (sourceWord === 0))) {
/* painting a transparent pixel */
/* blendRB red and blue */
blendRB = (((sourceWord & 16711935) * sourceAlpha) + ((destinationWord & 16711935) * unAlpha)) + 16711935;
/* blendRB alpha and green */
blendAG = ((((sourceWord >>> 8) & 16711935) * sourceAlpha) + (((destinationWord >>> 8) & 16711935) * unAlpha)) + 16711935;
/* divide by 255 */
blendRB = ((blendRB + (((blendRB - 65537) >>> 8) & 16711935)) >>> 8) & 16711935;
blendAG = ((blendAG + (((blendAG - 65537) >>> 8) & 16711935)) >>> 8) & 16711935;
result = blendRB | (blendAG << 8);
}
} else {
pixMask = maskTable[destDepth];
bitsPerColor = 5;
rgbMask = 31;
maskShifted = destMask;
destShifted = destinationWord;
sourceShifted = sourceWord;
for (j = 1; j <= destPPW; j++) {
sourcePixVal = sourceShifted & pixMask;
if (!(((maskShifted & pixMask) === 0) || (paintMode && (sourcePixVal === 0)))) {
destPixVal = destShifted & pixMask;
pixBlend = 0;
for (i = 1; i <= 3; i++) {
shift = (i - 1) * bitsPerColor;
blend = (DIV((((((SHR(sourcePixVal, shift)) & rgbMask) * sourceAlpha) + (((SHR(destPixVal, shift)) & rgbMask) * unAlpha)) + 254), 255)) & rgbMask;
pixBlend = pixBlend | (SHL(blend, shift));
}
result = (result & ~(SHL(pixMask, ((j - 1) * 16)))) | (SHL(pixBlend, ((j - 1) * 16)));
}
maskShifted = SHR(maskShifted, destDepth);
sourceShifted = SHR(sourceShifted, destDepth);
destShifted = SHR(destShifted, destDepth);
}
}
return result;
}
/* Blend sourceWord with destinationWord using the alpha value from sourceWord.
Alpha is encoded as 0 meaning 0.0, and 255 meaning 1.0.
In contrast to alphaBlend:with: the color produced is
srcColor + (1-srcAlpha) * dstColor
e.g., it is assumed that the source color is already scaled. */
function alphaBlendScaledwith(sourceWord, destinationWord) {
var unAlpha;
var rb;
var ag;
/* Do NOT inline this into optimized loops */
/* High 8 bits of source pixel is source opacity (ARGB format) */
unAlpha = 255 - (sourceWord >>> 24);
/* blend red and blue components */
rb = ((((destinationWord & 16711935) * unAlpha) >>> 8) & 16711935) + (sourceWord & 16711935);
/* blend alpha and green components */
ag = (((((destinationWord >>> 8) & 16711935) * unAlpha) >>> 8) & 16711935) + ((sourceWord >>> 8) & 16711935);
/* saturate red and blue components if there is a carry */
rb = (rb & 16711935) | (((rb & 16777472) * 255) >>> 8);
/* saturate alpha and green components if there is a carry */
ag = ((ag & 16711935) << 8) | ((ag & 16777472) * 255);
return ag | rb;
}
function alphaPaintConstwith(sourceWord, destinationWord) {
if (sourceWord === 0) {
return destinationWord;
}
return alphaBlendConstwithpaintMode(sourceWord, destinationWord, true);
}
/* This version assumes
combinationRule = 34
sourcePixSize = 32
destPixSize = 16
sourceForm ~= destForm.
*/
function alphaSourceBlendBits16() {
var ditherBase;
var ditherThreshold;
var srcShift;
var sourceWord;
var srcIndex;
var deltaX;
var dstIndex;
var srcAlpha;
var dstMask;
var deltaY;
var srcY;
var destWord;
var dstY;
var ditherIndex;
/* This particular method should be optimized in itself */
/* So we can pre-decrement */
deltaY = bbH + 1;
srcY = sy;
dstY = dy;
srcShift = (dx & 1) * 16;
if (destMSB) {
srcShift = 16 - srcShift;
}
/* This is the outer loop */
mask1 = SHL(65535, (16 - srcShift));
while (((--deltaY)) !== 0) {
srcIndex = ((srcY * sourcePitch)) + (sx * 4);
dstIndex = ((dstY * destPitch)) + ((dx >> 1) * 4);
ditherBase = (dstY & 3) * 4;
/* For pre-increment */
ditherIndex = (sx & 3) - 1;
/* So we can pre-decrement */
deltaX = bbW + 1;
dstMask = mask1;
if (dstMask === 65535) {
srcShift = 16;
} else {
srcShift = 0;
}
while (((--deltaX)) !== 0) {
ditherThreshold = ditherMatrix4x4[ditherBase + ((ditherIndex = (ditherIndex + 1) & 3))];
sourceWord = sourceBits[srcIndex >>> 2];
srcAlpha = sourceWord >>> 24;
if (srcAlpha === 255) {
/* Dither from 32 to 16 bit */
sourceWord = dither32To16threshold(sourceWord, ditherThreshold);
if (sourceWord === 0) {
sourceWord = SHL(1, srcShift);
} else {
sourceWord = SHL(sourceWord, srcShift);
}
dstLongAtputmask(dstIndex, sourceWord, dstMask);
} else {
/* srcAlpha ~= 255 */
if (srcAlpha !== 0) {
/* 0 < srcAlpha < 255 */
/* If we have to mix colors then just copy a single word */
destWord = destBits[dstIndex >>> 2];
destWord = destWord & ~dstMask;
/* Expand from 16 to 32 bit by adding zero bits */
destWord = SHR(destWord, srcShift);
/* Mix colors */
destWord = (((destWord & 31744) << 9) | ((destWord & 992) << 6)) | (((destWord & 31) << 3) | 4278190080);
/* And dither */
sourceWord = alphaBlendScaledwith(sourceWord, destWord);
sourceWord = dither32To16threshold(sourceWord, ditherThreshold);
if (sourceWord === 0) {
sourceWord = SHL(1, srcShift);
} else {
sourceWord = SHL(sourceWord, srcShift);
}
dstLongAtputmask(dstIndex, sourceWord, dstMask);
}
}
srcIndex += 4;
if (destMSB) {
if (srcShift === 0) {
dstIndex += 4;
}
} else {
if (srcShift !== 0) {
dstIndex += 4;
}
}
/* Toggle between 0 and 16 */
srcShift = srcShift ^ 16;
dstMask = ~dstMask;
}
++srcY;
++dstY;
}
}
/* This version assumes
combinationRule = 34
sourcePixSize = destPixSize = 32
sourceForm ~= destForm.
Note: The inner loop has been optimized for dealing
with the special cases of srcAlpha = 0.0 and srcAlpha = 1.0
*/
function alphaSourceBlendBits32() {
var sourceWord;
var srcIndex;
var deltaX;
var dstIndex;
var srcAlpha;
var deltaY;
var srcY;
var destWord;
var dstY;
/* This particular method should be optimized in itself */
/* Give the compile a couple of hints */
/* The following should be declared as pointers so the compiler will
notice that they're used for accessing memory locations
(good to know on an Intel architecture) but then the increments
would be different between ST code and C code so must hope the
compiler notices what happens (MS Visual C does) */
/* So we can pre-decrement */
deltaY = bbH + 1;
srcY = sy;
/* This is the outer loop */
dstY = dy;
while (((--deltaY)) !== 0) {
srcIndex = ((srcY * sourcePitch)) + (sx * 4);
dstIndex = ((dstY * destPitch)) + (dx * 4);
/* So we can pre-decrement */
/* This is the inner loop */
deltaX = bbW + 1;
while (((--deltaX)) !== 0) {
sourceWord = sourceBits[srcIndex >>> 2];
srcAlpha = sourceWord >>> 24;
if (srcAlpha === 255) {
destBits[dstIndex >>> 2] = sourceWord;
srcIndex += 4;
/* Now copy as many words as possible with alpha = 255 */
dstIndex += 4;
while ((((--deltaX)) !== 0) && ((((sourceWord = sourceBits[srcIndex >>> 2])) >>> 24) === 255)) {
destBits[dstIndex >>> 2] = sourceWord;
srcIndex += 4;
dstIndex += 4;
}
++deltaX;
} else {
/* srcAlpha ~= 255 */
if (srcAlpha === 0) {
srcIndex += 4;
/* Now skip as many words as possible, */
dstIndex += 4;
while ((((--deltaX)) !== 0) && ((((sourceWord = sourceBits[srcIndex >>> 2])) >>> 24) === 0)) {
srcIndex += 4;
dstIndex += 4;
}
++deltaX;
} else {
/* 0 < srcAlpha < 255 */
/* If we have to mix colors then just copy a single word */
destWord = destBits[dstIndex >>> 2];
destWord = alphaBlendScaledwith(sourceWord, destWord);
destBits[dstIndex >>> 2] = destWord;
srcIndex += 4;
dstIndex += 4;
}
}
}
++srcY;
++dstY;
}
}
/* This version assumes
combinationRule = 34
sourcePixSize = 32
destPixSize = 8
sourceForm ~= destForm.
Note: This is not real blending since we don't have the source colors available.
*/
function alphaSourceBlendBits8() {
var srcShift;
var sourceWord;
var srcIndex;
var deltaX;
var mappingTable;
var dstIndex;
var adjust;
var mapperFlags;
var srcAlpha;
var dstMask;
var deltaY;
var srcY;
var destWord;
var dstY;
mappingTable = default8To32Table();
mapperFlags = cmFlags & ~ColorMapNewStyle;
/* So we can pre-decrement */
deltaY = bbH + 1;
srcY = sy;
dstY = dy;
mask1 = (dx & 3) * 8;
if (destMSB) {
mask1 = 24 - mask1;
}
mask2 = AllOnes ^ (SHL(255, mask1));
if ((dx & 1) === 0) {
adjust = 0;
} else {
adjust = 522133279;
}
if ((dy & 1) === 0) {
adjust = adjust ^ 522133279;
}
while (((--deltaY)) !== 0) {
adjust = adjust ^ 522133279;
srcIndex = ((srcY * sourcePitch)) + (sx * 4);
dstIndex = ((dstY * destPitch)) + ((dx >> 2) * 4);
/* So we can pre-decrement */
deltaX = bbW + 1;
srcShift = mask1;
/* This is the inner loop */
dstMask = mask2;
while (((--deltaX)) !== 0) {
sourceWord = (sourceBits[srcIndex >>> 2] & ~adjust) + adjust;
srcAlpha = sourceWord >>> 24;
if (srcAlpha > 31) {
/* Everything below 31 is transparent */
if (srcAlpha < 224) {
/* Everything above 224 is opaque */
destWord = destBits[dstIndex >>> 2];
destWord = destWord & ~dstMask;
destWord = SHR(destWord, srcShift);
destWord = mappingTable[destWord];
sourceWord = alphaBlendScaledwith(sourceWord, destWord);
}
sourceWord = mapPixelflags(sourceWord, mapperFlags);
/* Store back */
sourceWord = SHL(sourceWord, srcShift);
dstLongAtputmask(dstIndex, sourceWord, dstMask);
}
srcIndex += 4;
if (destMSB) {
if (srcShift === 0) {
dstIndex += 4;
srcShift = 24;
dstMask = 16777215;
} else {
srcShift -= 8;
dstMask = (dstMask >>> 8) | 4278190080;
}
} else {
if (srcShift === 24) {
dstIndex += 4;
srcShift = 0;
dstMask = 4294967040;
} else {
srcShift += 8;
dstMask = (dstMask << 8) | 255;
}
}
adjust = adjust ^ 522133279;
}
++srcY;
++dstY;
}
}
function bitAndwith(sourceWord, destinationWord) {
return sourceWord & destinationWord;
}
function bitAndInvertwith(sourceWord, destinationWord) {
return sourceWord & ~destinationWord;
}
function bitInvertAndwith(sourceWord, destinationWord) {
return ~sourceWord & destinationWord;
}
function bitInvertAndInvertwith(sourceWord, destinationWord) {
return ~sourceWord & ~destinationWord;
}
function bitInvertDestinationwith(sourceWord, destinationWord) {
return ~destinationWord;
}
function bitInvertOrwith(sourceWord, destinationWord) {
return ~sourceWord | destinationWord;
}
function bitInvertOrInvertwith(sourceWord, destinationWord) {
return ~sourceWord | ~destinationWord;
}
function bitInvertSourcewith(sourceWord, destinationWord) {
return ~sourceWord;
}
function bitInvertXorwith(sourceWord, destinationWord) {
return ~sourceWord ^ destinationWord;
}
function bitOrwith(sourceWord, destinationWord) {
return sourceWord | destinationWord;
}
function bitOrInvertwith(sourceWord, destinationWord) {
return sourceWord | ~destinationWord;
}
function bitXorwith(sourceWord, destinationWord) {
return sourceWord ^ destinationWord;
}
/* check for possible overlap of source and destination */
/* ar 10/19/1999: This method requires surfaces to be locked. */
function checkSourceOverlap() {
var t;
if ((sourceForm === destForm) && (dy >= sy)) {
if (dy > sy) {
/* have to start at bottom */
vDir = -1;
sy = (sy + bbH) - 1;
dy = (dy + bbH) - 1;
} else {
if ((dy === sy) && (dx > sx)) {
/* y's are equal, but x's are backward */
hDir = -1;
/* start at right */
sx = (sx + bbW) - 1;
/* and fix up masks */
dx = (dx + bbW) - 1;
if (nWords > 1) {
t = mask1;
mask1 = mask2;
mask2 = t;
}
}
}
destIndex = ((dy * destPitch)) + ((DIV(dx, destPPW)) * 4);
destDelta = (destPitch * vDir) - (4 * (nWords * hDir));
}
}
function clearWordwith(source, destination) {
return 0;
}
/* clip and adjust source origin and extent appropriately */
/* first in x */
function clipRange() {
if (destX >= clipX) {
sx = sourceX;
dx = destX;
bbW = width;
} else {
sx = sourceX + (clipX - destX);
bbW = width - (clipX - destX);
dx = clipX;
}
if ((dx + bbW) > (clipX + clipWidth)) {
bbW -= (dx + bbW) - (clipX + clipWidth);
}
if (destY >= clipY) {
sy = sourceY;
dy = destY;
bbH = height;
} else {
sy = (sourceY + clipY) - destY;
bbH = height - (clipY - destY);
dy = clipY;
}
if ((dy + bbH) > (clipY + clipHeight)) {
bbH -= (dy + bbH) - (clipY + clipHeight);
}
if (noSource) {
return null;
}
if (sx < 0) {
dx -= sx;
bbW += sx;
sx = 0;
}
if ((sx + bbW) > sourceWidth) {
bbW -= (sx + bbW) - sourceWidth;
}
if (sy < 0) {
dy -= sy;
bbH += sy;
sy = 0;
}
if ((sy + bbH) > sourceHeight) {
bbH -= (sy + bbH) - sourceHeight;
}
}
/* This function is exported for the Balloon engine */
function copyBits() {
clipRange();
if ((bbW <= 0) || (bbH <= 0)) {
/* zero width or height; noop */
affectedL = (affectedR = (affectedT = (affectedB = 0)));
return null;
}
if (!lockSurfaces()) {
return interpreterProxy.primitiveFail();
}
// skipping ifdef ENABLE_FAST_BLT
copyBitsLockedAndClipped();
unlockSurfaces();
}
/* Recover from the fast path specialised code saying Help-I-cant-cope */
function copyBitsFallback(op, flags) {
var done;
// skipping ifdef ENABLE_FAST_BLT
}
/* Perform the actual copyBits operation using the fast path specialised code; fail some cases by falling back to normal code.
Assume: Surfaces have been locked and clipping was performed. */
function copyBitsFastPathSpecialised() {
// skipping ifdef ENABLE_FAST_BLT
}
/* Support for the balloon engine. */
function copyBitsFromtoat(startX, stopX, yValue) {
destX = startX;
destY = yValue;
sourceX = startX;
width = stopX - startX;
copyBits();
showDisplayBits();
}
/* Perform the actual copyBits operation.
Assume: Surfaces have been locked and clipping was performed. */
function copyBitsLockedAndClipped() {
var done;
copyBitsRule41Test();
if (interpreterProxy.failed()) {
return interpreterProxy.primitiveFail();
}
done = tryCopyingBitsQuickly();
if (done) {
return null;
}
if ((combinationRule === 30) || (combinationRule === 31)) {
/* Check and fetch source alpha parameter for alpha blend */
if (interpreterProxy.methodArgumentCount() === 1) {
sourceAlpha = interpreterProxy.stackIntegerValue(0);
if (!(!interpreterProxy.failed() && ((sourceAlpha >= 0) && (sourceAlpha <= 255)))) {
return interpreterProxy.primitiveFail();
}
} else {
return interpreterProxy.primitiveFail();
}
}
/* Choose and perform the actual copy loop. */
bitCount = 0;
performCopyLoop();
if ((combinationRule === 22) || (combinationRule === 32)) {
/* zero width and height; return the count */
affectedL = (affectedR = (affectedT = (affectedB = 0)));
}
if (hDir > 0) {
affectedL = dx;
affectedR = dx + bbW;