-
-
Notifications
You must be signed in to change notification settings - Fork 642
/
webgl_renderer.js
executable file
·1346 lines (1217 loc) · 41.1 KB
/
webgl_renderer.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
import Color from "./../../math/color.js";
import Matrix2d from "./../../math/matrix2.js";
import QuadCompositor from "./compositors/quad_compositor";
import PrimitiveCompositor from "./compositors/primitive_compositor";
import Renderer from "./../renderer.js";
import TextureCache from "./../texture/cache.js";
import { TextureAtlas, createAtlas } from "./../texture/atlas.js";
import { renderer } from "./../video.js";
import pool from "./../../system/pooling.js";
import { isPowerOfTwo } from "./../../math/math.js";
import {
CANVAS_ONRESIZE,
eventEmitter,
GAME_RESET,
ONCONTEXT_LOST,
ONCONTEXT_RESTORED,
} from "../../system/event.ts";
/**
* additional import for TypeScript
* @import Rect from "./../../geometries/rectangle.js";
* @import RoundRect from "./../../geometries/roundrect.js";
* @import Polygon from "./../../geometries/poly.js";
* @import Line from "./../../geometries/line.js";
* @import Ellipse from "./../../geometries/ellipse.js";
* @import Matrix3d from "./../../math/matrix3.js";
* @import Compositor from "./compositors/compositor.js";
*/
// list of supported compressed texture formats
let supportedCompressedTextureFormats;
/**
* a WebGL renderer object
*/
export default class WebGLRenderer extends Renderer {
/**
* @param {ApplicationSettings} [options] - optional parameters for the renderer
*/
constructor(options) {
// parent contructor
super(Object.assign(options, { context: "webgl" }));
/**
* The vendor string of the underlying graphics driver.
* @type {string}
* @default undefined
* @readonly
*/
this.GPUVendor = undefined;
/**
* The renderer string of the underlying graphics driver.
* @type {string}
* @default undefined
* @readonly
*/
this.GPURenderer = undefined;
/**
* The WebGL context
* @name gl
* @type {WebGLRenderingContext}
*/
this.gl = this.renderTarget.context;
/**
* sets or returns the thickness of lines for shape drawing (limited to strokeLine, strokePolygon and strokeRect)
* @type {number}
* @default 1
* @see WebGLRenderer#strokeLine
* @see WebGLRenderer#strokePolygon
* @see WebGLRenderer#strokeRect
*/
this.lineWidth = 1;
/**
* sets or returns the shape used to join two line segments where they meet.
* Out of the three possible values for this property: "round", "bevel", and "miter", only "round" is supported for now in WebGL
* @type {string}
* @default "round"
*/
this.lineJoin = "round";
/**
* the vertex buffer used by this WebGL Renderer
* @type {WebGLBuffer}
*/
this.vertexBuffer = this.gl.createBuffer();
/**
* Maximum number of texture unit supported under the current context
* @type {number}
* @readonly
*/
this.maxTextures = this.gl.getParameter(this.gl.MAX_TEXTURE_IMAGE_UNITS);
/**
* @ignore
*/
this._colorStack = [];
/**
* @ignore
*/
this._matrixStack = [];
/**
* @ignore
*/
this._scissorStack = [];
/**
* @ignore
*/
this._blendStack = [];
/**
* The current transformation matrix used for transformations on the overall scene
* @type {Matrix2d}
*/
this.currentTransform = new Matrix2d();
/**
* The current compositor used by the renderer
* @type {Compositor}
*/
this.currentCompositor = undefined;
/**
* a reference to the current shader program used by the renderer
* @type {WebGLProgram}
*/
this.currentProgram = undefined;
/**
* The list of active compositors
* @type {Map<Compositor>}
*/
this.compositors = new Map();
// bind the vertex buffer
this.gl.bindBuffer(this.gl.ARRAY_BUFFER, this.vertexBuffer);
// Create both quad and primitive compositor
this.addCompositor(
new (this.settings.compositor || QuadCompositor)(this),
"quad",
true,
);
this.addCompositor(
new (this.settings.compositor || PrimitiveCompositor)(this),
"primitive",
);
// depth Test settings
this.depthTest = options.depthTest;
// default WebGL state(s)
if (this.depthTest === "z-buffer") {
this.gl.enable(this.gl.DEPTH_TEST);
// https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/depthFunc
this.gl.depthFunc(this.gl.LEQUAL);
this.gl.depthMask(true);
} else {
this.gl.disable(this.gl.DEPTH_TEST);
this.gl.depthMask(false);
}
this.gl.disable(this.gl.SCISSOR_TEST);
this.gl.enable(this.gl.BLEND);
// set default mode
this.setBlendMode(this.settings.blendMode);
// get GPU vendor and renderer
const debugInfo = this.gl.getExtension("WEBGL_debug_renderer_info");
if (debugInfo !== null) {
this.GPUVendor = this.gl.getParameter(debugInfo.UNMASKED_VENDOR_WEBGL);
this.GPURenderer = this.gl.getParameter(
debugInfo.UNMASKED_RENDERER_WEBGL,
);
}
// a private property that when set will make `setCompositor`
// to use this specific shader instead of the default one
this.customShader = undefined;
// Create a texture cache
this.cache = new TextureCache(this.maxTextures);
// set the renderer type
this.type = "WebGL" + this.WebGLVersion;
// to simulate context lost and restore in WebGL:
// let ctx = me.video.renderer.context.getExtension('WEBGL_lose_context');
// ctx.loseContext()
this.getCanvas().addEventListener(
"webglcontextlost",
(e) => {
e.preventDefault();
this.isContextValid = false;
eventEmitter.emit(ONCONTEXT_LOST, this);
},
false,
);
// ctx.restoreContext()
this.getCanvas().addEventListener(
"webglcontextrestored",
() => {
this.reset();
this.isContextValid = true;
eventEmitter.emit(ONCONTEXT_RESTORED, this);
},
false,
);
// reset the renderer on game reset
eventEmitter.addListener(GAME_RESET, () => {
this.reset();
});
// register to the CANVAS resize channel
eventEmitter.addListener(CANVAS_ONRESIZE, (width, height) => {
this.flush();
this.setViewport(0, 0, width, height);
});
}
/**
* The WebGL version used by this renderer (1 or 2)
* @type {number}
* @default 1
*/
get WebGLVersion() {
return this.renderTarget.WebGLVersion;
}
/**
* return the list of supported compressed texture formats
* @return {Object}
*/
getSupportedCompressedTextureFormats() {
if (typeof supportedCompressedTextureFormats === "undefined") {
const gl = this.gl;
supportedCompressedTextureFormats = {
astc:
gl.getExtension("WEBGL_compressed_texture_astc") ||
this._gl.getExtension("WEBKIT_WEBGL_compressed_texture_astc"),
bptc:
gl.getExtension("EXT_texture_compression_bptc") ||
this._gl.getExtension("WEBKIT_EXT_texture_compression_bptc"),
s3tc:
gl.getExtension("WEBGL_compressed_texture_s3tc") ||
this._gl.getExtension("WEBKIT_WEBGL_compressed_texture_s3tc"),
s3tc_srgb:
gl.getExtension("WEBGL_compressed_texture_s3tc_srgb") ||
this._gl.getExtension("WEBKIT_WEBGL_compressed_texture_s3tc_srgb"),
pvrtc:
gl.getExtension("WEBGL_compressed_texture_pvrtc") ||
this._gl.getExtension("WEBKIT_WEBGL_compressed_texture_pvrtc"),
etc1:
gl.getExtension("WEBGL_compressed_texture_etc1") ||
this._gl.getExtension("WEBKIT_WEBGL_compressed_texture_etc1"),
etc2:
gl.getExtension("WEBGL_compressed_texture_etc") ||
gl.getExtension("WEBKIT_WEBGL_compressed_texture_etc") ||
gl.getExtension("WEBGL_compressed_texture_es3_0"),
};
}
return supportedCompressedTextureFormats;
}
/**
* return true if the given compressed texture format is supported
* @param {Number} format
* @returns
*/
hasSupportedCompressedFormats(format) {
const supportedFormats = this.getSupportedCompressedTextureFormats();
for (const supportedFormat in supportedFormats) {
for (const extension in supportedFormats[supportedFormat]) {
if (format === supportedFormats[supportedFormat][extension]) {
return true;
}
}
}
return false;
}
/**
* Reset context state
*/
reset() {
super.reset();
// clear all stacks
this._colorStack.forEach((color) => {
pool.push(color);
});
this._matrixStack.forEach((matrix) => {
pool.push(matrix);
});
this._colorStack.length = 0;
this._matrixStack.length = 0;
this._blendStack.length = 0;
// clear gl context
this.clear();
// initial viewport size
this.setViewport();
// rebind the vertex buffer if required (e.g in case of context loss)
if (
this.gl.getParameter(this.gl.ARRAY_BUFFER_BINDING) !== this.vertexBuffer
) {
this.gl.bindBuffer(this.gl.ARRAY_BUFFER, this.vertexBuffer);
}
this.currentCompositor = undefined;
this.currentProgram = undefined;
this.customShader = undefined;
this.compositors.forEach((compositor) => {
if (this.isContextValid === false) {
// on context lost/restore
compositor.init(this);
} else {
compositor.reset();
}
});
this.setCompositor("quad");
this.gl.disable(this.gl.SCISSOR_TEST);
}
/**
* add a new compositor to this renderer
* @param {Compositor} compositor - a compositor instance
* @param {string} name - a name uniquely identifying this compositor
* @param {boolean} [activate=false] - true if the given compositor should be set as the active one
*/
addCompositor(compositor, name = "default", activate = false) {
// make sure there is no existing compositor with the same name
if (typeof this.compositors.get(name) !== "undefined") {
throw new Error("Invalid Compositor name");
}
// add the new compositor
this.compositors.set(name, compositor);
if (activate === true) {
// set as active one
this.setCompositor(name);
}
}
/**
* set the active compositor for this renderer
* @param {string} name - a compositor name
* @param {GLShader} [shader] - an optional shader program to be used, instead of the default one, when activating the compositor
* @returns {Compositor} an instance to the current active compositor
*/
setCompositor(name = "default", shader = this.customShader) {
const compositor = this.compositors.get(name);
if (typeof compositor === "undefined") {
throw new Error("Invalid Compositor");
}
if (this.currentCompositor !== compositor) {
if (this.currentCompositor !== undefined) {
// flush the current compositor
this.currentCompositor.flush();
}
// set as the active one
this.currentCompositor = compositor;
}
if (name === "quad" && typeof shader === "object") {
this.currentCompositor.useShader(shader);
} else {
// (re)bind the compositor with the default shader (program & attributes)
this.currentCompositor.bind();
}
return this.currentCompositor;
}
/**
* Reset the gl transform to identity
*/
resetTransform() {
this.currentTransform.identity();
}
/**
* Create a pattern with the specified repetition
* @param {HTMLImageElement|SVGImageElement|HTMLVideoElement|HTMLCanvasElement|ImageBitmap|OffscreenCanvas|VideoFrame} image - Source image to be used as the pattern's image
* @param {string} repeat - Define how the pattern should be repeated
* @returns {TextureAtlas} the patterned texture created
* @see ImageLayer#repeat
* @example
* let tileable = renderer.createPattern(image, "repeat");
* let horizontal = renderer.createPattern(image, "repeat-x");
* let vertical = renderer.createPattern(image, "repeat-y");
* let basic = renderer.createPattern(image, "no-repeat");
*/
createPattern(image, repeat) {
this.setCompositor("quad");
if (
renderer.WebGLVersion === 1 &&
(!isPowerOfTwo(image.width) || !isPowerOfTwo(image.height))
) {
const src = typeof image.src !== "undefined" ? image.src : image;
throw new Error(
"[WebGL Renderer] " +
src +
" is not a POT texture " +
"(" +
image.width +
"x" +
image.height +
")",
);
}
const texture = new TextureAtlas(
createAtlas(image.width, image.height, "pattern", repeat),
image,
);
// FIXME: Remove old cache entry and texture when changing the repeat mode
this.currentCompositor.uploadTexture(texture);
return texture;
}
/**
* Flush the compositor to the frame buffer
*/
flush() {
this.currentCompositor.flush();
}
/**
* set/change the current projection matrix (WebGL only)
* @param {Matrix3d} matrix - the new projection matrix
*/
setProjection(matrix) {
super.setProjection(matrix);
this.currentCompositor.setProjection(matrix);
}
/**
* Sets the WebGL viewport, which specifies the affine transformation of x and y from normalized device coordinates to window coordinates
* @param {number} [x = 0] - x the horizontal coordinate for the lower left corner of the viewport origin
* @param {number} [y = 0] - y the vertical coordinate for the lower left corner of the viewport origin
* @param {number} [w = width of the canvas] - the width of viewport
* @param {number} [h = height of the canvas] - the height of viewport
*/
setViewport(
x = 0,
y = 0,
w = this.getCanvas().width,
h = this.getCanvas().height,
) {
this.gl.viewport(x, y, w, h);
}
/**
* Clear the frame buffer
*/
clear() {
const gl = this.gl;
gl.clearColor(0, 0, 0, this.settings.transparent ? 0.0 : 1.0);
this.lineWidth = 1;
if (this.depthTest === "z-buffer") {
gl.clear(
gl.DEPTH_BUFFER_BIT | gl.COLOR_BUFFER_BIT | gl.STENCIL_BUFFER_BIT,
);
} else {
gl.clear(gl.COLOR_BUFFER_BIT | gl.STENCIL_BUFFER_BIT);
}
}
/**
* Clears the gl context with the given color.
* @param {Color|string} [color="#000000"] - CSS color.
* @param {boolean} [opaque=false] - Allow transparency [default] or clear the surface completely [true]
*/
clearColor(color = "#000000", opaque = false) {
let glArray;
const gl = this.gl;
if (color instanceof Color) {
glArray = color.toArray();
} else {
const _color = pool.pull("me.Color");
// reuse temporary the renderer default color object
glArray = _color.parseCSS(color).toArray();
pool.push(_color);
}
// clear gl context with the specified color
gl.clearColor(
glArray[0],
glArray[1],
glArray[2],
opaque === true ? 1.0 : glArray[3],
);
gl.clear(gl.COLOR_BUFFER_BIT);
}
/**
* Erase the pixels in the given rectangular area by setting them to transparent black (rgba(0,0,0,0)).
* @param {number} x - x axis of the coordinate for the rectangle starting point.
* @param {number} y - y axis of the coordinate for the rectangle starting point.
* @param {number} width - The rectangle's width.
* @param {number} height - The rectangle's height.
*/
clearRect(x, y, width, height) {
this.save();
this.clipRect(x, y, width, height);
this.clearColor();
this.restore();
}
/**
* Draw an image to the gl context
* @param {HTMLImageElement|SVGImageElement|HTMLVideoElement|HTMLCanvasElement|ImageBitmap|OffscreenCanvas|VideoFrame} image - An element to draw into the context.
* @param {number} sx - The X coordinate of the top left corner of the sub-rectangle of the source image to draw into the destination context.
* @param {number} sy - The Y coordinate of the top left corner of the sub-rectangle of the source image to draw into the destination context.
* @param {number} sw - The width of the sub-rectangle of the source image to draw into the destination context. If not specified, the entire rectangle from the coordinates specified by sx and sy to the bottom-right corner of the image is used.
* @param {number} sh - The height of the sub-rectangle of the source image to draw into the destination context.
* @param {number} dx - The X coordinate in the destination canvas at which to place the top-left corner of the source image.
* @param {number} dy - The Y coordinate in the destination canvas at which to place the top-left corner of the source image.
* @param {number} dw - The width to draw the image in the destination canvas. This allows scaling of the drawn image. If not specified, the image is not scaled in width when drawn.
* @param {number} dh - The height to draw the image in the destination canvas. This allows scaling of the drawn image. If not specified, the image is not scaled in height when drawn.
* @example
* // Position the image on the canvas:
* renderer.drawImage(image, dx, dy);
* // Position the image on the canvas, and specify width and height of the image:
* renderer.drawImage(image, dx, dy, dWidth, dHeight);
* // Clip the image and position the clipped part on the canvas:
* renderer.drawImage(image, sx, sy, sWidth, sHeight, dx, dy, dWidth, dHeight);
*/
drawImage(image, sx, sy, sw, sh, dx, dy, dw, dh) {
if (typeof sw === "undefined") {
sw = dw = image.width;
sh = dh = image.height;
dx = sx;
dy = sy;
sx = 0;
sy = 0;
} else if (typeof dx === "undefined") {
dx = sx;
dy = sy;
dw = sw;
dh = sh;
sw = image.width;
sh = image.height;
sx = 0;
sy = 0;
}
if (this.settings.subPixel === false) {
// clamp to pixel grid
dx |= 0;
dy |= 0;
}
this.setCompositor("quad");
// force reuploading if the given image is a HTMLVideoElement
const reupload = typeof image.videoWidth !== "undefined";
const texture = this.cache.get(image);
const uvs = texture.getUVs(sx + "," + sy + "," + sw + "," + sh);
this.currentCompositor.addQuad(
texture,
dx,
dy,
dw,
dh,
uvs[0],
uvs[1],
uvs[2],
uvs[3],
this.currentTint.toUint32(this.getGlobalAlpha()),
reupload,
);
}
/**
* Draw a pattern within the given rectangle.
* @param {TextureAtlas} pattern - Pattern object
* @param {number} x - x position where to draw the pattern
* @param {number} y - y position where to draw the pattern
* @param {number} width - width of the pattern
* @param {number} height - height of the pattern
* @see WebGLRenderer#createPattern
*/
drawPattern(pattern, x, y, width, height) {
const uvs = pattern.getUVs("0,0," + width + "," + height);
this.setCompositor("quad");
this.currentCompositor.addQuad(
pattern,
x,
y,
width,
height,
uvs[0],
uvs[1],
uvs[2],
uvs[3],
this.currentTint.toUint32(this.getGlobalAlpha()),
);
}
/**
* starts a new path by emptying the list of sub-paths. Call this method when you want to create a new path
* @example
* // First path
* renderer.beginPath();
* renderer.setColor("blue");
* renderer.moveTo(20, 20);
* renderer.lineTo(200, 20);
* renderer.stroke();
* // Second path
* renderer.beginPath();
* renderer.setColor("green");
* renderer.moveTo(20, 20);
* renderer.lineTo(120, 120);
* renderer.stroke();
*/
beginPath() {
this.path2D.beginPath();
}
/**
* begins a new sub-path at the point specified by the given (x, y) coordinates.
* @param {number} x - The x axis of the point.
* @param {number} y - The y axis of the point.
*/
moveTo(x, y) {
this.path2D.moveTo(x, y);
}
/**
* adds a straight line to the current sub-path by connecting the sub-path's last point to the specified (x, y) coordinates.
*/
lineTo(x, y) {
this.path2D.lineTo(x, y);
}
/**
* creates a rectangular path whose starting point is at (x, y) and whose size is specified by width and height.
* @param {number} x - The x axis of the coordinate for the rectangle starting point.
* @param {number} y - The y axis of the coordinate for the rectangle starting point.
* @param {number} width - The rectangle's width.
* @param {number} height - The rectangle's height.
*/
rect(x, y, width, height) {
this.path2D.rect(x, y, width, height);
}
/**
* adds a rounded rectangle to the current path.
* @param {number} x - The x axis of the coordinate for the rectangle starting point.
* @param {number} y - The y axis of the coordinate for the rectangle starting point.
* @param {number} width - The rectangle's width.
* @param {number} height - The rectangle's height.
* @param {number} radius - The corner radius.
*/
roundRect(x, y, width, height, radii) {
this.path2D.roundRect(x, y, width, height, radii);
}
/**
* stroke the given shape or the current defined path
* @param {Rect|RoundRect|Polygon|Line|Ellipse} [shape] - a shape object to stroke
* @param {boolean} [fill=false] - fill the shape with the current color if true
*/
stroke(shape, fill) {
this.setCompositor("primitive");
if (typeof shape === "undefined") {
if (fill === true) {
// draw all triangles
this.currentCompositor.drawVertices(
this.gl.TRIANGLES,
this.path2D.triangulatePath(),
);
} else {
this.currentCompositor.drawVertices(this.gl.LINES, this.path2D.points);
}
} else {
super.stroke(shape, fill);
}
}
/**
* fill the given shape or the current defined path
* @param {Rect|RoundRect|Polygon|Line|Ellipse} [shape] - a shape object to fill
*/
fill(shape) {
this.stroke(shape, true);
}
/**
* add a straight line from the current point to the start of the current sub-path. If the shape has already been closed or has only one point, this function does nothing
*/
closePath() {
this.path2D.closePath();
}
/**
* Returns the WebGLContext instance for the renderer
* return a reference to the system 2d Context
* @returns {WebGLRenderingContext} the current WebGL context
*/
getContext() {
return this.gl;
}
/**
* set a blend mode for the given context. <br>
* Supported blend mode between Canvas and WebGL remderer : <br>
* - "normal" : this is the default mode and draws new content on top of the existing content <br>
* <img src="../images/normal-blendmode.png" width="510"/> <br>
* - "multiply" : the pixels of the top layer are multiplied with the corresponding pixel of the bottom layer. A darker picture is the result. <br>
* <img src="../images/multiply-blendmode.png" width="510"/> <br>
* - "additive or lighter" : where both content overlap the color is determined by adding color values. <br>
* <img src="../images/lighter-blendmode.png" width="510"/> <br>
* - "screen" : The pixels are inverted, multiplied, and inverted again. A lighter picture is the result (opposite of multiply) <br>
* <img src="../images/screen-blendmode.png" width="510"/> <br>
* @see https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation
* @param {string} [mode="normal"] - blend mode : "normal", "multiply", "lighter", "additive", "screen"
* @param {WebGLRenderingContext} [gl] - a WebGL context
*/
setBlendMode(mode = "normal", gl = this.gl) {
if (this.currentBlendMode !== mode) {
this.flush();
gl.enable(gl.BLEND);
this.currentBlendMode = mode;
switch (mode) {
case "screen":
gl.blendFunc(gl.ONE, gl.ONE_MINUS_SRC_COLOR);
break;
case "lighter":
case "additive":
gl.blendFunc(gl.ONE, gl.ONE);
break;
case "multiply":
gl.blendFunc(gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA);
break;
default:
gl.blendFunc(gl.ONE, gl.ONE_MINUS_SRC_ALPHA);
this.currentBlendMode = "normal";
break;
}
}
}
/**
* restores the most recently saved renderer state by popping the top entry in the drawing state stack
* @example
* // Save the current state
* renderer.save();
*
* // apply a transform and draw a rect
* renderer.tranform(matrix);
* renderer.fillRect(10, 10, 100, 100);
*
* // Restore to the state saved by the most recent call to save()
* renderer.restore();
*/
restore() {
// do nothing if there is no saved states
if (this._matrixStack.length !== 0) {
const color = this._colorStack.pop();
const matrix = this._matrixStack.pop();
// restore the previous context
this.currentColor.copy(color);
this.currentTransform.copy(matrix);
this.setBlendMode(this._blendStack.pop());
// recycle objects
pool.push(color);
pool.push(matrix);
}
if (this._scissorStack.length !== 0) {
// FIXME : prevent `scissor` object realloc and GC
this.currentScissor.set(this._scissorStack.pop());
} else {
const canvas = this.getCanvas();
// turn off scissor test
this.gl.disable(this.gl.SCISSOR_TEST);
this.currentScissor[0] = 0;
this.currentScissor[1] = 0;
this.currentScissor[2] = canvas.width;
this.currentScissor[3] = canvas.height;
}
}
/**
* saves the entire state of the renderer by pushing the current state onto a stack.
* @example
* // Save the current state
* renderer.save();
*
* // apply a transform and draw a rect
* renderer.tranform(matrix);
* renderer.fillRect(10, 10, 100, 100);
*
* // Restore to the state saved by the most recent call to save()
* renderer.restore();
*/
save() {
this._colorStack.push(this.currentColor.clone());
this._matrixStack.push(this.currentTransform.clone());
if (this.gl.isEnabled(this.gl.SCISSOR_TEST)) {
// FIXME avoid slice and object realloc
this._scissorStack.push(this.currentScissor.slice());
}
this._blendStack.push(this.getBlendMode());
}
/**
* adds a rotation to the transformation matrix.
* @param {number} angle - the rotation angle, clockwise in radians
* @example
* // Rotated rectangle
* renderer.rotate((45 * Math.PI) / 180);
* renderer.setColor("red");
* renderer.fillRect(10, 10, 100, 100);
*
* // Reset transformation matrix to the identity matrix
* renderer.setTransform(1, 0, 0, 1, 0, 0);
*/
rotate(angle) {
this.currentTransform.rotate(angle);
}
/**
* adds a scaling transformation to the renderer units horizontally and/or vertically
* @param {number} x - Scaling factor in the horizontal direction. A negative value flips pixels across the vertical axis. A value of 1 results in no horizontal scaling.
* @param {number} y - Scaling factor in the vertical direction. A negative value flips pixels across the horizontal axis. A value of 1 results in no vertical scaling
*/
scale(x, y) {
this.currentTransform.scale(x, y);
}
/**
* not used by this renderer?
* @param {boolean} [enable=false]
* @ignore
*/
setAntiAlias(enable = false) {
super.setAntiAlias(enable);
// TODO: perhaps handle GLNEAREST or other options with texture binding
}
/**
* Set the global alpha
* @param {number} alpha - 0.0 to 1.0 values accepted.
*/
setGlobalAlpha(alpha) {
this.currentColor.alpha = alpha;
}
/**
* Return the global alpha
* @returns {number} global alpha value
*/
getGlobalAlpha() {
return this.currentColor.alpha;
}
/**
* Set the current fill & stroke style color.
* By default, or upon reset, the value is set to #000000.
* @param {Color|string} color - css color string.
*/
setColor(color) {
const alpha = this.currentColor.alpha;
this.currentColor.copy(color);
this.currentColor.alpha *= alpha;
}
/**
* Stroke an arc at the specified coordinates with given radius, start and end points
* @param {number} x - arc center point x-axis
* @param {number} y - arc center point y-axis
* @param {number} radius - arc radius
* @param {number} start - start angle in radians
* @param {number} end - end angle in radians
* @param {boolean} [antiClockwise=false] - draw arc anti-clockwise
* @param {boolean} [fill=false] - also fill the shape with the current color if true
*/
strokeArc(x, y, radius, start, end, antiClockwise = false, fill = false) {
this.setCompositor("primitive");
this.path2D.beginPath();
this.path2D.arc(x, y, radius, start, end, antiClockwise);
if (fill === false) {
this.currentCompositor.drawVertices(this.gl.LINES, this.path2D.points);
} else {
this.currentCompositor.drawVertices(
this.gl.TRIANGLES,
this.path2D.triangulatePath(),
);
}
}
/**
* Fill an arc at the specified coordinates with given radius, start and end points
* @param {number} x - arc center point x-axis
* @param {number} y - arc center point y-axis
* @param {number} radius - arc radius
* @param {number} start - start angle in radians
* @param {number} end - end angle in radians
* @param {boolean} [antiClockwise=false] - draw arc anti-clockwise
*/
fillArc(x, y, radius, start, end, antiClockwise = false) {
this.strokeArc(x, y, radius, start, end, antiClockwise, true);
}
/**
* Stroke an ellipse at the specified coordinates with given radius
* @param {number} x - ellipse center point x-axis
* @param {number} y - ellipse center point y-axis
* @param {number} w - horizontal radius of the ellipse
* @param {number} h - vertical radius of the ellipse
* @param {boolean} [fill=false] - also fill the shape with the current color if true
*/
strokeEllipse(x, y, w, h, fill = false) {
this.setCompositor("primitive");
this.path2D.beginPath();
this.path2D.ellipse(x, y, w, h, 0, 0, 360);
if (fill === false) {
this.currentCompositor.drawVertices(this.gl.LINES, this.path2D.points);
} else {
this.currentCompositor.drawVertices(
this.gl.TRIANGLES,
this.path2D.triangulatePath(),
);
}
}
/**
* Fill an ellipse at the specified coordinates with given radius
* @param {number} x - ellipse center point x-axis
* @param {number} y - ellipse center point y-axis
* @param {number} w - horizontal radius of the ellipse
* @param {number} h - vertical radius of the ellipse
*/
fillEllipse(x, y, w, h) {
this.strokeEllipse(x, y, w, h, true);
}
/**
* Stroke a line of the given two points
* @param {number} startX - the start x coordinate
* @param {number} startY - the start y coordinate
* @param {number} endX - the end x coordinate
* @param {number} endY - the end y coordinate
*/
strokeLine(startX, startY, endX, endY) {
this.setCompositor("primitive");
if (this.lineWidth === 1) {
this.path2D.beginPath();
this.path2D.moveTo(startX, startY);
this.path2D.lineTo(endX, endY);
this.currentCompositor.drawVertices(this.gl.LINES, this.path2D.points);
} else if (this.lineWidth > 1) {
const halfWidth = this.lineWidth / 2;
const angle = Math.atan2(endY - startY, endX - startX);
const dx = Math.sin(angle) * halfWidth;
const dy = Math.cos(angle) * halfWidth;
const x1 = startX - dx;
const y1 = startY + dy;
const x2 = startX + dx;
const y2 = startY - dy;
const x3 = endX + dx;
const y3 = endY - dy;
const x4 = endX - dx;
const y4 = endY + dy;
this.path2D.beginPath();
this.path2D.moveTo(x1, y1);