@vpmedia/phaser 1.103.0 → 1.105.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +997 -403
- package/dist/index.js.map +1 -1
- package/dist/phaser/core/animation.d.ts +35 -11
- package/dist/phaser/core/animation.d.ts.map +1 -1
- package/dist/phaser/core/animation_manager.d.ts +20 -10
- package/dist/phaser/core/animation_manager.d.ts.map +1 -1
- package/dist/phaser/core/animation_parser.d.ts +2 -2
- package/dist/phaser/core/animation_parser.d.ts.map +1 -1
- package/dist/phaser/core/array_set.d.ts +3 -3
- package/dist/phaser/core/array_set.d.ts.map +1 -1
- package/dist/phaser/core/cache.d.ts +68 -60
- package/dist/phaser/core/cache.d.ts.map +1 -1
- package/dist/phaser/core/device.d.ts +23 -0
- package/dist/phaser/core/device.d.ts.map +1 -1
- package/dist/phaser/core/device_util.d.ts +10 -10
- package/dist/phaser/core/device_util.d.ts.map +1 -1
- package/dist/phaser/core/dom.d.ts +6 -5
- package/dist/phaser/core/dom.d.ts.map +1 -1
- package/dist/phaser/core/event_manager.d.ts +49 -158
- package/dist/phaser/core/event_manager.d.ts.map +1 -1
- package/dist/phaser/core/factory.d.ts +8 -7
- package/dist/phaser/core/factory.d.ts.map +1 -1
- package/dist/phaser/core/frame.d.ts +27 -48
- package/dist/phaser/core/frame.d.ts.map +1 -1
- package/dist/phaser/core/frame_data.d.ts +11 -58
- package/dist/phaser/core/frame_data.d.ts.map +1 -1
- package/dist/phaser/core/frame_util.d.ts +4 -14
- package/dist/phaser/core/frame_util.d.ts.map +1 -1
- package/dist/phaser/core/game.d.ts +50 -3
- package/dist/phaser/core/game.d.ts.map +1 -1
- package/dist/phaser/core/input.d.ts +66 -13
- package/dist/phaser/core/input.d.ts.map +1 -1
- package/dist/phaser/core/input_handler.d.ts +64 -20
- package/dist/phaser/core/input_handler.d.ts.map +1 -1
- package/dist/phaser/core/input_mouse.d.ts +26 -1
- package/dist/phaser/core/input_mouse.d.ts.map +1 -1
- package/dist/phaser/core/input_mspointer.d.ts +18 -2
- package/dist/phaser/core/input_mspointer.d.ts.map +1 -1
- package/dist/phaser/core/input_pointer.d.ts +53 -9
- package/dist/phaser/core/input_pointer.d.ts.map +1 -1
- package/dist/phaser/core/input_touch.d.ts +19 -1
- package/dist/phaser/core/input_touch.d.ts.map +1 -1
- package/dist/phaser/core/loader.d.ts +56 -28
- package/dist/phaser/core/loader.d.ts.map +1 -1
- package/dist/phaser/core/loader_parser.d.ts +4 -4
- package/dist/phaser/core/loader_parser.d.ts.map +1 -1
- package/dist/phaser/core/raf.d.ts +2 -2
- package/dist/phaser/core/raf.d.ts.map +1 -1
- package/dist/phaser/core/scale_manager.d.ts +77 -17
- package/dist/phaser/core/scale_manager.d.ts.map +1 -1
- package/dist/phaser/core/scene.d.ts +3 -1
- package/dist/phaser/core/scene.d.ts.map +1 -1
- package/dist/phaser/core/scene_manager.d.ts +25 -9
- package/dist/phaser/core/scene_manager.d.ts.map +1 -1
- package/dist/phaser/core/signal.d.ts +9 -8
- package/dist/phaser/core/signal.d.ts.map +1 -1
- package/dist/phaser/core/signal_binding.d.ts +2 -2
- package/dist/phaser/core/signal_binding.d.ts.map +1 -1
- package/dist/phaser/core/sound.d.ts +58 -10
- package/dist/phaser/core/sound.d.ts.map +1 -1
- package/dist/phaser/core/sound_manager.d.ts +28 -9
- package/dist/phaser/core/sound_manager.d.ts.map +1 -1
- package/dist/phaser/core/sound_sprite.d.ts +10 -4
- package/dist/phaser/core/sound_sprite.d.ts.map +1 -1
- package/dist/phaser/core/stage.d.ts +7 -3
- package/dist/phaser/core/stage.d.ts.map +1 -1
- package/dist/phaser/core/time.d.ts +32 -5
- package/dist/phaser/core/time.d.ts.map +1 -1
- package/dist/phaser/core/timer.d.ts +30 -10
- package/dist/phaser/core/timer.d.ts.map +1 -1
- package/dist/phaser/core/timer_event.d.ts +11 -12
- package/dist/phaser/core/timer_event.d.ts.map +1 -1
- package/dist/phaser/core/tween.d.ts +38 -14
- package/dist/phaser/core/tween.d.ts.map +1 -1
- package/dist/phaser/core/tween_data.d.ts +30 -5
- package/dist/phaser/core/tween_data.d.ts.map +1 -1
- package/dist/phaser/core/tween_easing.d.ts +31 -31
- package/dist/phaser/core/tween_easing.d.ts.map +1 -1
- package/dist/phaser/core/tween_manager.d.ts +8 -4
- package/dist/phaser/core/tween_manager.d.ts.map +1 -1
- package/dist/phaser/core/world.d.ts +1 -1
- package/dist/phaser/core/world.d.ts.map +1 -1
- package/dist/phaser/display/bitmap_text.d.ts +35 -20
- package/dist/phaser/display/bitmap_text.d.ts.map +1 -1
- package/dist/phaser/display/button.d.ts +24 -8
- package/dist/phaser/display/button.d.ts.map +1 -1
- package/dist/phaser/display/canvas/buffer.d.ts +6 -2
- package/dist/phaser/display/canvas/buffer.d.ts.map +1 -1
- package/dist/phaser/display/canvas/graphics.d.ts +3 -3
- package/dist/phaser/display/canvas/graphics.d.ts.map +1 -1
- package/dist/phaser/display/canvas/masker.d.ts.map +1 -1
- package/dist/phaser/display/canvas/pool.d.ts +2 -2
- package/dist/phaser/display/canvas/pool.d.ts.map +1 -1
- package/dist/phaser/display/canvas/renderer.d.ts +18 -5
- package/dist/phaser/display/canvas/renderer.d.ts.map +1 -1
- package/dist/phaser/display/canvas/tinter.d.ts +3 -3
- package/dist/phaser/display/canvas/tinter.d.ts.map +1 -1
- package/dist/phaser/display/canvas/util.d.ts +9 -9
- package/dist/phaser/display/canvas/util.d.ts.map +1 -1
- package/dist/phaser/display/display_object.d.ts +82 -23
- package/dist/phaser/display/display_object.d.ts.map +1 -1
- package/dist/phaser/display/graphics.d.ts +42 -16
- package/dist/phaser/display/graphics.d.ts.map +1 -1
- package/dist/phaser/display/graphics_data.d.ts +11 -1
- package/dist/phaser/display/graphics_data.d.ts.map +1 -1
- package/dist/phaser/display/graphics_data_util.d.ts +1 -1
- package/dist/phaser/display/graphics_data_util.d.ts.map +1 -1
- package/dist/phaser/display/group.d.ts +24 -9
- package/dist/phaser/display/group.d.ts.map +1 -1
- package/dist/phaser/display/image.d.ts +36 -13
- package/dist/phaser/display/image.d.ts.map +1 -1
- package/dist/phaser/display/sprite_batch.d.ts +1 -1
- package/dist/phaser/display/sprite_batch.d.ts.map +1 -1
- package/dist/phaser/display/sprite_util.d.ts +5 -5
- package/dist/phaser/display/sprite_util.d.ts.map +1 -1
- package/dist/phaser/display/text.d.ts +86 -66
- package/dist/phaser/display/text.d.ts.map +1 -1
- package/dist/phaser/display/webgl/abstract_filter.d.ts +8 -1
- package/dist/phaser/display/webgl/abstract_filter.d.ts.map +1 -1
- package/dist/phaser/display/webgl/base_texture.d.ts +14 -2
- package/dist/phaser/display/webgl/base_texture.d.ts.map +1 -1
- package/dist/phaser/display/webgl/blend_manager.d.ts +5 -2
- package/dist/phaser/display/webgl/blend_manager.d.ts.map +1 -1
- package/dist/phaser/display/webgl/earcut.d.ts +10 -10
- package/dist/phaser/display/webgl/earcut.d.ts.map +1 -1
- package/dist/phaser/display/webgl/earcut_node.d.ts +1 -1
- package/dist/phaser/display/webgl/earcut_node.d.ts.map +1 -1
- package/dist/phaser/display/webgl/fast_sprite_batch.d.ts +17 -1
- package/dist/phaser/display/webgl/fast_sprite_batch.d.ts.map +1 -1
- package/dist/phaser/display/webgl/filter_manager.d.ts +5 -1
- package/dist/phaser/display/webgl/filter_manager.d.ts.map +1 -1
- package/dist/phaser/display/webgl/filter_texture.d.ts +7 -2
- package/dist/phaser/display/webgl/filter_texture.d.ts.map +1 -1
- package/dist/phaser/display/webgl/graphics.d.ts +11 -10
- package/dist/phaser/display/webgl/graphics.d.ts.map +1 -1
- package/dist/phaser/display/webgl/graphics_data.d.ts +11 -1
- package/dist/phaser/display/webgl/graphics_data.d.ts.map +1 -1
- package/dist/phaser/display/webgl/mask_manager.d.ts.map +1 -1
- package/dist/phaser/display/webgl/render_texture.d.ts +12 -1
- package/dist/phaser/display/webgl/render_texture.d.ts.map +1 -1
- package/dist/phaser/display/webgl/renderer.d.ts +25 -6
- package/dist/phaser/display/webgl/renderer.d.ts.map +1 -1
- package/dist/phaser/display/webgl/shader/complex.d.ts +7 -1
- package/dist/phaser/display/webgl/shader/complex.d.ts.map +1 -1
- package/dist/phaser/display/webgl/shader/fast.d.ts +8 -1
- package/dist/phaser/display/webgl/shader/fast.d.ts.map +1 -1
- package/dist/phaser/display/webgl/shader/normal.d.ts +11 -0
- package/dist/phaser/display/webgl/shader/normal.d.ts.map +1 -1
- package/dist/phaser/display/webgl/shader/primitive.d.ts +7 -1
- package/dist/phaser/display/webgl/shader/primitive.d.ts.map +1 -1
- package/dist/phaser/display/webgl/shader/strip.d.ts +7 -1
- package/dist/phaser/display/webgl/shader/strip.d.ts.map +1 -1
- package/dist/phaser/display/webgl/shader_manager.d.ts +14 -2
- package/dist/phaser/display/webgl/shader_manager.d.ts.map +1 -1
- package/dist/phaser/display/webgl/sprite_batch.d.ts +19 -2
- package/dist/phaser/display/webgl/sprite_batch.d.ts.map +1 -1
- package/dist/phaser/display/webgl/stencil_manager.d.ts +8 -4
- package/dist/phaser/display/webgl/stencil_manager.d.ts.map +1 -1
- package/dist/phaser/display/webgl/texture.d.ts +35 -2
- package/dist/phaser/display/webgl/texture.d.ts.map +1 -1
- package/dist/phaser/display/webgl/texture_util.d.ts +2 -2
- package/dist/phaser/display/webgl/texture_util.d.ts.map +1 -1
- package/dist/phaser/display/webgl/util.d.ts +6 -6
- package/dist/phaser/display/webgl/util.d.ts.map +1 -1
- package/dist/phaser/geom/circle.d.ts +11 -10
- package/dist/phaser/geom/circle.d.ts.map +1 -1
- package/dist/phaser/geom/ellipse.d.ts +6 -5
- package/dist/phaser/geom/ellipse.d.ts.map +1 -1
- package/dist/phaser/geom/line.d.ts +14 -14
- package/dist/phaser/geom/line.d.ts.map +1 -1
- package/dist/phaser/geom/matrix.d.ts +13 -12
- package/dist/phaser/geom/matrix.d.ts.map +1 -1
- package/dist/phaser/geom/point.d.ts +19 -19
- package/dist/phaser/geom/point.d.ts.map +1 -1
- package/dist/phaser/geom/polygon.d.ts +6 -6
- package/dist/phaser/geom/polygon.d.ts.map +1 -1
- package/dist/phaser/geom/rectangle.d.ts +20 -20
- package/dist/phaser/geom/rectangle.d.ts.map +1 -1
- package/dist/phaser/geom/rounded_rectangle.d.ts +2 -2
- package/dist/phaser/geom/rounded_rectangle.d.ts.map +1 -1
- package/dist/phaser/geom/util/circle.d.ts +9 -7
- package/dist/phaser/geom/util/circle.d.ts.map +1 -1
- package/dist/phaser/geom/util/ellipse.d.ts +1 -1
- package/dist/phaser/geom/util/ellipse.d.ts.map +1 -1
- package/dist/phaser/geom/util/line.d.ts +5 -3
- package/dist/phaser/geom/util/line.d.ts.map +1 -1
- package/dist/phaser/geom/util/matrix.d.ts +2 -1
- package/dist/phaser/geom/util/matrix.d.ts.map +1 -1
- package/dist/phaser/geom/util/point.d.ts +19 -19
- package/dist/phaser/geom/util/point.d.ts.map +1 -1
- package/dist/phaser/geom/util/polygon.d.ts +2 -1
- package/dist/phaser/geom/util/polygon.d.ts.map +1 -1
- package/dist/phaser/geom/util/rectangle.d.ts +17 -15
- package/dist/phaser/geom/util/rectangle.d.ts.map +1 -1
- package/dist/phaser/geom/util/rounded_rectangle.d.ts +2 -1
- package/dist/phaser/geom/util/rounded_rectangle.d.ts.map +1 -1
- package/dist/phaser/util/math.d.ts +51 -142
- package/dist/phaser/util/math.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/phaser/core/animation.ts +41 -18
- package/src/phaser/core/animation_manager.ts +21 -12
- package/src/phaser/core/animation_parser.ts +11 -3
- package/src/phaser/core/array_set.ts +8 -8
- package/src/phaser/core/cache.ts +75 -60
- package/src/phaser/core/device.ts +23 -1
- package/src/phaser/core/device_util.ts +10 -10
- package/src/phaser/core/dom.ts +5 -5
- package/src/phaser/core/event_manager.ts +52 -177
- package/src/phaser/core/factory.ts +25 -17
- package/src/phaser/core/frame.ts +37 -51
- package/src/phaser/core/frame_data.ts +29 -74
- package/src/phaser/core/frame_util.ts +3 -16
- package/src/phaser/core/game.ts +40 -11
- package/src/phaser/core/input.ts +68 -17
- package/src/phaser/core/input_handler.ts +81 -45
- package/src/phaser/core/input_mouse.ts +42 -13
- package/src/phaser/core/input_mspointer.ts +24 -9
- package/src/phaser/core/input_pointer.ts +55 -12
- package/src/phaser/core/input_touch.ts +26 -9
- package/src/phaser/core/loader.ts +97 -42
- package/src/phaser/core/loader_parser.ts +6 -7
- package/src/phaser/core/raf.ts +2 -2
- package/src/phaser/core/scale_manager.ts +85 -27
- package/src/phaser/core/scene.ts +3 -2
- package/src/phaser/core/scene_manager.ts +26 -11
- package/src/phaser/core/signal.ts +10 -10
- package/src/phaser/core/signal_binding.ts +2 -2
- package/src/phaser/core/sound.ts +72 -26
- package/src/phaser/core/sound_manager.ts +31 -13
- package/src/phaser/core/sound_sprite.ts +10 -5
- package/src/phaser/core/stage.ts +8 -4
- package/src/phaser/core/time.ts +33 -7
- package/src/phaser/core/timer.ts +40 -14
- package/src/phaser/core/timer_event.ts +23 -14
- package/src/phaser/core/tween.ts +43 -23
- package/src/phaser/core/tween_data.ts +31 -7
- package/src/phaser/core/tween_easing.ts +31 -31
- package/src/phaser/core/tween_manager.ts +10 -7
- package/src/phaser/core/world.ts +1 -2
- package/src/phaser/display/bitmap_text.ts +41 -18
- package/src/phaser/display/button.ts +24 -23
- package/src/phaser/display/canvas/buffer.ts +6 -3
- package/src/phaser/display/canvas/graphics.ts +3 -4
- package/src/phaser/display/canvas/masker.ts +2 -3
- package/src/phaser/display/canvas/pool.ts +3 -4
- package/src/phaser/display/canvas/renderer.ts +19 -7
- package/src/phaser/display/canvas/tinter.ts +4 -5
- package/src/phaser/display/canvas/util.ts +9 -9
- package/src/phaser/display/display_object.ts +120 -61
- package/src/phaser/display/graphics.ts +56 -25
- package/src/phaser/display/graphics_data.ts +11 -2
- package/src/phaser/display/graphics_data_util.ts +1 -2
- package/src/phaser/display/group.ts +32 -14
- package/src/phaser/display/image.ts +37 -19
- package/src/phaser/display/sprite_batch.ts +1 -2
- package/src/phaser/display/sprite_util.ts +5 -6
- package/src/phaser/display/text.ts +82 -56
- package/src/phaser/display/webgl/abstract_filter.ts +8 -2
- package/src/phaser/display/webgl/base_texture.ts +14 -3
- package/src/phaser/display/webgl/blend_manager.ts +5 -3
- package/src/phaser/display/webgl/earcut.ts +27 -27
- package/src/phaser/display/webgl/earcut_node.ts +1 -1
- package/src/phaser/display/webgl/fast_sprite_batch.ts +19 -4
- package/src/phaser/display/webgl/filter_manager.ts +5 -2
- package/src/phaser/display/webgl/filter_texture.ts +7 -3
- package/src/phaser/display/webgl/graphics.ts +10 -11
- package/src/phaser/display/webgl/graphics_data.ts +11 -2
- package/src/phaser/display/webgl/mask_manager.ts +2 -3
- package/src/phaser/display/webgl/render_texture.ts +12 -2
- package/src/phaser/display/webgl/renderer.ts +24 -7
- package/src/phaser/display/webgl/shader/complex.ts +7 -2
- package/src/phaser/display/webgl/shader/fast.ts +8 -2
- package/src/phaser/display/webgl/shader/normal.ts +12 -2
- package/src/phaser/display/webgl/shader/primitive.ts +7 -2
- package/src/phaser/display/webgl/shader/strip.ts +7 -2
- package/src/phaser/display/webgl/shader_manager.ts +13 -3
- package/src/phaser/display/webgl/sprite_batch.ts +20 -4
- package/src/phaser/display/webgl/stencil_manager.ts +8 -5
- package/src/phaser/display/webgl/texture.ts +35 -4
- package/src/phaser/display/webgl/texture_util.ts +2 -3
- package/src/phaser/display/webgl/util.ts +6 -6
- package/src/phaser/geom/circle.ts +10 -10
- package/src/phaser/geom/ellipse.ts +6 -6
- package/src/phaser/geom/line.ts +14 -14
- package/src/phaser/geom/matrix.ts +12 -12
- package/src/phaser/geom/point.ts +19 -19
- package/src/phaser/geom/polygon.ts +5 -5
- package/src/phaser/geom/rectangle.ts +21 -21
- package/src/phaser/geom/rounded_rectangle.ts +2 -2
- package/src/phaser/geom/util/circle.ts +7 -7
- package/src/phaser/geom/util/ellipse.ts +1 -1
- package/src/phaser/geom/util/line.ts +5 -5
- package/src/phaser/geom/util/matrix.ts +1 -1
- package/src/phaser/geom/util/point.ts +20 -20
- package/src/phaser/geom/util/polygon.ts +1 -1
- package/src/phaser/geom/util/rectangle.ts +15 -15
- package/src/phaser/geom/util/rounded_rectangle.ts +1 -1
- package/src/phaser/util/math.ts +65 -151
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
export declare class PrimitiveShader {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
gl: any;
|
|
4
|
+
_UID: any;
|
|
5
|
+
program: any;
|
|
6
|
+
fragmentSrc: any;
|
|
7
|
+
vertexSrc: any;
|
|
2
8
|
/**
|
|
3
9
|
* Creates a new PrimitiveShader instance.
|
|
4
10
|
* @param {WebGLRenderingContext} gl - The WebGL rendering context.
|
|
5
11
|
*/
|
|
6
|
-
constructor(gl:
|
|
12
|
+
constructor(gl: WebGLRenderingContext);
|
|
7
13
|
/**
|
|
8
14
|
* Destroys this shader and cleans up resources.
|
|
9
15
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"primitive.d.ts","sourceRoot":"","sources":["../../../../../src/phaser/display/webgl/shader/primitive.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"primitive.d.ts","sourceRoot":"","sources":["../../../../../src/phaser/display/webgl/shader/primitive.ts"],"names":[],"mappings":"AAKA,qBAAa,eAAe;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;IACrB,EAAE,EAAG,GAAG,CAAC;IACT,IAAI,EAAG,GAAG,CAAC;IACX,OAAO,EAAG,GAAG,CAAC;IACd,WAAW,EAAG,GAAG,CAAC;IAClB,SAAS,EAAG,GAAG,CAAC;IACd;;;OAGG;gBACS,EAAE,EAAE,qBAAqB;IAkCrC;;OAEG;IACH,IAAI;IAkBJ;;OAEG;IACH,OAAO;CAMR"}
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
export declare class StripShader {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
gl: any;
|
|
4
|
+
_UID: any;
|
|
5
|
+
program: any;
|
|
6
|
+
fragmentSrc: any;
|
|
7
|
+
vertexSrc: any;
|
|
2
8
|
/**
|
|
3
9
|
* Creates a new StripShader instance.
|
|
4
10
|
* @param {WebGLRenderingContext} gl - The WebGL rendering context.
|
|
5
11
|
*/
|
|
6
|
-
constructor(gl:
|
|
12
|
+
constructor(gl: WebGLRenderingContext);
|
|
7
13
|
/**
|
|
8
14
|
* Destroys this shader and cleans up resources.
|
|
9
15
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"strip.d.ts","sourceRoot":"","sources":["../../../../../src/phaser/display/webgl/shader/strip.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"strip.d.ts","sourceRoot":"","sources":["../../../../../src/phaser/display/webgl/shader/strip.ts"],"names":[],"mappings":"AAKA,qBAAa,WAAW;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;IACrB,EAAE,EAAG,GAAG,CAAC;IACT,IAAI,EAAG,GAAG,CAAC;IACX,OAAO,EAAG,GAAG,CAAC;IACd,WAAW,EAAG,GAAG,CAAC;IAClB,SAAS,EAAG,GAAG,CAAC;IACd;;;OAGG;gBACS,EAAE,EAAE,qBAAqB;IAsCrC;;OAEG;IACH,IAAI;IAmBJ;;OAEG;IACH,OAAO;CAMR"}
|
|
@@ -1,4 +1,16 @@
|
|
|
1
|
+
import { NormalShader } from './shader/normal.js';
|
|
1
2
|
export declare class WebGLShaderManager {
|
|
3
|
+
[key: string]: any;
|
|
4
|
+
gl: any;
|
|
5
|
+
primitiveShader: any;
|
|
6
|
+
complexPrimitiveShader: any;
|
|
7
|
+
defaultShader: any;
|
|
8
|
+
fastShader: any;
|
|
9
|
+
stripShader: any;
|
|
10
|
+
maxAttibs: any;
|
|
11
|
+
attribState: any;
|
|
12
|
+
tempAttribState: any;
|
|
13
|
+
stack: any;
|
|
2
14
|
/**
|
|
3
15
|
* Initializes the shader manager with a WebGL context.
|
|
4
16
|
*/
|
|
@@ -12,13 +24,13 @@ export declare class WebGLShaderManager {
|
|
|
12
24
|
* Sets up the shader manager for WebGL rendering.
|
|
13
25
|
* @param {number[]} attribs - The attribute locations to set up.
|
|
14
26
|
*/
|
|
15
|
-
setAttribs(attribs:
|
|
27
|
+
setAttribs(attribs: number[]): void;
|
|
16
28
|
/**
|
|
17
29
|
* Sets up the shader manager for WebGL rendering.
|
|
18
30
|
* @param {NormalShader} shader - The shader to set up.
|
|
19
31
|
* @returns {boolean} Whether the shader setup was successful.
|
|
20
32
|
*/
|
|
21
|
-
setShader(shader:
|
|
33
|
+
setShader(shader: NormalShader): boolean;
|
|
22
34
|
/**
|
|
23
35
|
* Destroys the manager.
|
|
24
36
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shader_manager.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/shader_manager.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"shader_manager.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/shader_manager.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAIlD,qBAAa,kBAAkB;IAC7B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;IACrB,EAAE,EAAG,GAAG,CAAC;IACT,eAAe,EAAG,GAAG,CAAC;IACtB,sBAAsB,EAAG,GAAG,CAAC;IAC7B,aAAa,EAAG,GAAG,CAAC;IACpB,UAAU,EAAG,GAAG,CAAC;IACjB,WAAW,EAAG,GAAG,CAAC;IAClB,SAAS,EAAG,GAAG,CAAC;IAChB,WAAW,EAAG,GAAG,CAAC;IAClB,eAAe,EAAG,GAAG,CAAC;IACtB,KAAK,EAAG,GAAG,CAAC;IACV;;OAEG;;IAiBH;;;OAGG;IACH,UAAU,CAAC,EAAE,KAAA;IAUb;;;OAGG;IACH,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE;IAwB5B;;;;OAIG;IACH,SAAS,CAAC,MAAM,EAAE,YAAY;IAW9B;;OAEG;IACH,OAAO;CAYR"}
|
|
@@ -1,4 +1,21 @@
|
|
|
1
1
|
export declare class WebGLSpriteBatch {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
vertSize: any;
|
|
4
|
+
size: any;
|
|
5
|
+
vertices: any;
|
|
6
|
+
positions: any;
|
|
7
|
+
colors: any;
|
|
8
|
+
indices: any;
|
|
9
|
+
lastIndexCount: any;
|
|
10
|
+
drawing: any;
|
|
11
|
+
currentBatchSize: any;
|
|
12
|
+
currentBaseTexture: any;
|
|
13
|
+
dirty: any;
|
|
14
|
+
textures: any;
|
|
15
|
+
blendModes: any;
|
|
16
|
+
shaders: any;
|
|
17
|
+
sprites: any;
|
|
18
|
+
defaultShader: any;
|
|
2
19
|
/**
|
|
3
20
|
* Creates a new SpriteBatch instance.
|
|
4
21
|
*/
|
|
@@ -22,7 +39,7 @@ export declare class WebGLSpriteBatch {
|
|
|
22
39
|
* @param {import('../../display/image.js').Image} sprite - The sprite to render.
|
|
23
40
|
* @param {import('../../geom/matrix.js').Matrix} matrix - The transformation matrix.
|
|
24
41
|
*/
|
|
25
|
-
render(sprite:
|
|
42
|
+
render(sprite: import('../../display/image.js').Image, matrix: import('../../geom/matrix.js').Matrix): void;
|
|
26
43
|
/**
|
|
27
44
|
* Binds the sprite batch to the WebGL context.
|
|
28
45
|
*/
|
|
@@ -37,7 +54,7 @@ export declare class WebGLSpriteBatch {
|
|
|
37
54
|
* @param {number} size - The size of the batch.
|
|
38
55
|
* @param {number} startIndex - The start index in the batch.
|
|
39
56
|
*/
|
|
40
|
-
renderBatch(texture:
|
|
57
|
+
renderBatch(texture: import('./base_texture.js').BaseTexture, size: number, startIndex: number): void;
|
|
41
58
|
/**
|
|
42
59
|
* Destroys this sprite batch and cleans up resources.
|
|
43
60
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sprite_batch.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/sprite_batch.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sprite_batch.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/sprite_batch.ts"],"names":[],"mappings":"AAGA,qBAAa,gBAAgB;IAC3B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;IACrB,QAAQ,EAAG,GAAG,CAAC;IACf,IAAI,EAAG,GAAG,CAAC;IACX,QAAQ,EAAG,GAAG,CAAC;IACf,SAAS,EAAG,GAAG,CAAC;IAChB,MAAM,EAAG,GAAG,CAAC;IACb,OAAO,EAAG,GAAG,CAAC;IACd,cAAc,EAAG,GAAG,CAAC;IACrB,OAAO,EAAG,GAAG,CAAC;IACd,gBAAgB,EAAG,GAAG,CAAC;IACvB,kBAAkB,EAAG,GAAG,CAAC;IACzB,KAAK,EAAG,GAAG,CAAC;IACZ,QAAQ,EAAG,GAAG,CAAC;IACf,UAAU,EAAG,GAAG,CAAC;IACjB,OAAO,EAAG,GAAG,CAAC;IACd,OAAO,EAAG,GAAG,CAAC;IACd,aAAa,EAAG,GAAG,CAAC;IAClB;;OAEG;;IAwCH;;;OAGG;IACH,UAAU,CAAC,EAAE,KAAA;IAmBb;;;OAGG;IACH,KAAK,CAAC,aAAa,EAAE,GAAG;IAMxB;;OAEG;IACH,GAAG;IAIH;;;;OAIG;IACH,MAAM,CAAC,MAAM,EAAE,OAAO,wBAAwB,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,sBAAsB,EAAE,MAAM;IAiGpG;;OAEG;IACH,kBAAkB;IAIlB;;OAEG;IACH,KAAK;IAgGL;;;;;OAKG;IACH,WAAW,CAAC,OAAO,EAAE,OAAO,mBAAmB,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM;IAqB9F;;OAEG;IACH,IAAI;IAKJ;;OAEG;IACH,KAAK;IAIL;;OAEG;IACH,OAAO;CAUR"}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export declare class WebGLStencilManager {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
stencilStack: any;
|
|
4
|
+
reverse: any;
|
|
5
|
+
count: any;
|
|
2
6
|
/**
|
|
3
7
|
* Initializes the stencil manager.
|
|
4
8
|
*/
|
|
@@ -7,7 +11,7 @@ export declare class WebGLStencilManager {
|
|
|
7
11
|
* Binds the stencil buffer for rendering.
|
|
8
12
|
* @param {WebGLRenderingContext} gl - The WebGL rendering context.
|
|
9
13
|
*/
|
|
10
|
-
setContext(gl:
|
|
14
|
+
setContext(gl: WebGLRenderingContext): void;
|
|
11
15
|
/**
|
|
12
16
|
* Sets up the stencil buffer for rendering.
|
|
13
17
|
*/
|
|
@@ -18,20 +22,20 @@ export declare class WebGLStencilManager {
|
|
|
18
22
|
* @param {import('./graphics_data.js').GraphicsData} webGLData - The WebGL graphics data.
|
|
19
23
|
* @param {object} renderSession - The rendering session.
|
|
20
24
|
*/
|
|
21
|
-
pushStencil(graphics:
|
|
25
|
+
pushStencil(graphics: import('../graphics.js').Graphics, webGLData: import('./graphics_data.js').GraphicsData, renderSession: any): void;
|
|
22
26
|
/**
|
|
23
27
|
* Renders the stencil buffer for graphics.
|
|
24
28
|
* @param {import('../graphics.js').Graphics} graphics - The graphics object to render.
|
|
25
29
|
* @param {import('./graphics_data.js').GraphicsData} webGLData - The WebGL graphics data.
|
|
26
30
|
* @param {object} renderSession - The rendering session.
|
|
27
31
|
*/
|
|
28
|
-
bindGraphics(graphics:
|
|
32
|
+
bindGraphics(graphics: import('../graphics.js').Graphics, webGLData: import('./graphics_data.js').GraphicsData, renderSession: any): void;
|
|
29
33
|
/**
|
|
30
34
|
* Renders the stencil buffer for graphics.
|
|
31
35
|
* @param {import('../graphics.js').Graphics} graphics - The graphics object to render.
|
|
32
36
|
* @param {import('./graphics_data.js').GraphicsData} webGLData - The WebGL graphics data.
|
|
33
37
|
* @param {object} renderSession - The rendering session.
|
|
34
38
|
*/
|
|
35
|
-
popStencil(graphics:
|
|
39
|
+
popStencil(graphics: import('../graphics.js').Graphics, webGLData: import('./graphics_data.js').GraphicsData, renderSession: any): void;
|
|
36
40
|
}
|
|
37
41
|
//# sourceMappingURL=stencil_manager.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stencil_manager.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/stencil_manager.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"stencil_manager.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/stencil_manager.ts"],"names":[],"mappings":"AAEA,qBAAa,mBAAmB;IAC9B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;IACrB,YAAY,EAAG,GAAG,CAAC;IACnB,OAAO,EAAG,GAAG,CAAC;IACd,KAAK,EAAG,GAAG,CAAC;IACV;;OAEG;;IAOH;;;OAGG;IACH,UAAU,CAAC,EAAE,EAAE,qBAAqB;IAIpC;;OAEG;IACH,OAAO;IAKP;;;;;OAKG;IACH,WAAW,CAAC,QAAQ,EAAE,OAAO,gBAAgB,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,oBAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,GAAG;IAoDjI;;;;;OAKG;IACH,YAAY,CAAC,QAAQ,EAAE,OAAO,gBAAgB,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,oBAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,GAAG;IAyClI;;;;;OAKG;IACH,UAAU,CAAC,QAAQ,EAAE,OAAO,gBAAgB,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,oBAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,GAAG;CAkDjI"}
|
|
@@ -1,10 +1,43 @@
|
|
|
1
|
+
import { Rectangle } from '../../geom/rectangle.js';
|
|
1
2
|
export declare class TextureUvs {
|
|
3
|
+
noFrame: any;
|
|
4
|
+
baseTexture: any;
|
|
5
|
+
frame: any;
|
|
6
|
+
trim: any;
|
|
7
|
+
valid: any;
|
|
8
|
+
isTiling: any;
|
|
9
|
+
requiresUpdate: any;
|
|
10
|
+
requiresReTint: any;
|
|
11
|
+
_uvs: any;
|
|
12
|
+
width: any;
|
|
13
|
+
height: any;
|
|
14
|
+
crop: any;
|
|
15
|
+
x0: any;
|
|
16
|
+
y0: any;
|
|
17
|
+
x1: any;
|
|
18
|
+
y1: any;
|
|
19
|
+
x2: any;
|
|
20
|
+
y2: any;
|
|
21
|
+
x3: any;
|
|
22
|
+
y3: any;
|
|
2
23
|
/**
|
|
3
24
|
* Creates a new Texture instance.
|
|
4
25
|
*/
|
|
5
26
|
constructor();
|
|
6
27
|
}
|
|
7
28
|
export declare class Texture {
|
|
29
|
+
noFrame: any;
|
|
30
|
+
baseTexture: any;
|
|
31
|
+
frame: any;
|
|
32
|
+
trim: any;
|
|
33
|
+
valid: any;
|
|
34
|
+
isTiling: any;
|
|
35
|
+
requiresUpdate: any;
|
|
36
|
+
requiresReTint: any;
|
|
37
|
+
_uvs: any;
|
|
38
|
+
width: any;
|
|
39
|
+
height: any;
|
|
40
|
+
crop: any;
|
|
8
41
|
/**
|
|
9
42
|
* Creates a new Texture instance.
|
|
10
43
|
* @param {import('./base_texture.js').BaseTexture} baseTexture - The base texture to use.
|
|
@@ -12,7 +45,7 @@ export declare class Texture {
|
|
|
12
45
|
* @param {Rectangle | null | undefined} crop - The crop rectangle.
|
|
13
46
|
* @param {Rectangle | null | undefined} trim - The trim rectangle.
|
|
14
47
|
*/
|
|
15
|
-
constructor(baseTexture:
|
|
48
|
+
constructor(baseTexture: import('./base_texture.js').BaseTexture, frame?: Rectangle | null | undefined, crop?: Rectangle | null | undefined, trim?: Rectangle | null | undefined);
|
|
16
49
|
/**
|
|
17
50
|
* Destroys this texture and cleans up resources.
|
|
18
51
|
*/
|
|
@@ -27,7 +60,7 @@ export declare class Texture {
|
|
|
27
60
|
* @param {Rectangle} frame - The new frame rectangle.
|
|
28
61
|
* @throws {Error} If the operation fails.
|
|
29
62
|
*/
|
|
30
|
-
setFrame(frame:
|
|
63
|
+
setFrame(frame: Rectangle): void;
|
|
31
64
|
/**
|
|
32
65
|
* Updates the texture UVs based on the crop frame.
|
|
33
66
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"texture.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/texture.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"texture.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/texture.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAEpD,qBAAa,UAAU;IACrB,OAAO,EAAG,GAAG,CAAC;IACd,WAAW,EAAG,GAAG,CAAC;IAClB,KAAK,EAAG,GAAG,CAAC;IACZ,IAAI,EAAG,GAAG,CAAC;IACX,KAAK,EAAG,GAAG,CAAC;IACZ,QAAQ,EAAG,GAAG,CAAC;IACf,cAAc,EAAG,GAAG,CAAC;IACrB,cAAc,EAAG,GAAG,CAAC;IACrB,IAAI,EAAG,GAAG,CAAC;IACX,KAAK,EAAG,GAAG,CAAC;IACZ,MAAM,EAAG,GAAG,CAAC;IACb,IAAI,EAAG,GAAG,CAAC;IACX,EAAE,EAAG,GAAG,CAAC;IACT,EAAE,EAAG,GAAG,CAAC;IACT,EAAE,EAAG,GAAG,CAAC;IACT,EAAE,EAAG,GAAG,CAAC;IACT,EAAE,EAAG,GAAG,CAAC;IACT,EAAE,EAAG,GAAG,CAAC;IACT,EAAE,EAAG,GAAG,CAAC;IACT,EAAE,EAAG,GAAG,CAAC;IACT;;OAEG;;CAWJ;AAED,qBAAa,OAAO;IAClB,OAAO,EAAG,GAAG,CAAC;IACd,WAAW,EAAG,GAAG,CAAC;IAClB,KAAK,EAAG,GAAG,CAAC;IACZ,IAAI,EAAG,GAAG,CAAC;IACX,KAAK,EAAG,GAAG,CAAC;IACZ,QAAQ,EAAG,GAAG,CAAC;IACf,cAAc,EAAG,GAAG,CAAC;IACrB,cAAc,EAAG,GAAG,CAAC;IACrB,IAAI,EAAG,GAAG,CAAC;IACX,KAAK,EAAG,GAAG,CAAC;IACZ,MAAM,EAAG,GAAG,CAAC;IACb,IAAI,EAAG,GAAG,CAAC;IACX;;;;;;OAMG;gBACS,WAAW,EAAE,OAAO,mBAAmB,EAAE,WAAW,EAAE,KAAK,GAAE,SAAS,GAAG,IAAI,GAAG,SAAgB,EAAE,IAAI,GAAE,SAAS,GAAG,IAAI,GAAG,SAAgB,EAAE,IAAI,GAAE,SAAS,GAAG,IAAI,GAAG,SAAgB;IAsClM;;OAEG;IACH,mBAAmB;IAOnB;;;OAGG;IACH,OAAO,CAAC,WAAW,GAAE,OAAe;IAOpC;;;;OAIG;IACH,QAAQ,CAAC,KAAK,EAAE,SAAS;IAmCzB;;OAEG;IACH,UAAU;CAgBX"}
|
|
@@ -6,12 +6,12 @@ import { Texture } from './texture.js';
|
|
|
6
6
|
* @param {number} [scaleMode] - The scale mode to use for the texture.
|
|
7
7
|
* @returns {BaseTexture} The newly created BaseTexture instance.
|
|
8
8
|
*/
|
|
9
|
-
export declare const baseTextureFromCanvas: (canvas:
|
|
9
|
+
export declare const baseTextureFromCanvas: (canvas: HTMLCanvasElement, scaleMode: number) => BaseTexture;
|
|
10
10
|
/**
|
|
11
11
|
* Creates a new Texture from a canvas element.
|
|
12
12
|
* @param {HTMLCanvasElement} canvas - The canvas element to use as the texture source.
|
|
13
13
|
* @param {number} [scaleMode] - The scale mode to use for the texture.
|
|
14
14
|
* @returns {Texture} The newly created Texture instance.
|
|
15
15
|
*/
|
|
16
|
-
export declare const textureFromCanvas: (canvas:
|
|
16
|
+
export declare const textureFromCanvas: (canvas: HTMLCanvasElement, scaleMode?: any) => Texture;
|
|
17
17
|
//# sourceMappingURL=texture_util.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"texture_util.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/texture_util.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"texture_util.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/texture_util.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEvC;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB,GAAI,QAAQ,iBAAiB,EAAE,WAAW,MAAM,gBAQjF,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB,GAAI,QAAQ,iBAAiB,EAAE,YAAY,GAAG,YAE3E,CAAC"}
|
|
@@ -10,13 +10,13 @@ export declare const CONTEXT_LOST_WEBGL = 37442;
|
|
|
10
10
|
* @param {WebGLRenderingContext} gl - The WebGL rendering context.
|
|
11
11
|
* @returns {number} The error code from the WebGL context.
|
|
12
12
|
*/
|
|
13
|
-
export declare const getWebGLContextErrorCode: (gl:
|
|
13
|
+
export declare const getWebGLContextErrorCode: (gl: WebGLRenderingContext) => number;
|
|
14
14
|
/**
|
|
15
15
|
* Gets the WebGL context error name from an error code.
|
|
16
16
|
* @param {number} errorCode - The error code to look up.
|
|
17
17
|
* @returns {string} The name of the WebGL error.
|
|
18
18
|
*/
|
|
19
|
-
export declare const getWebGLContextErrorName: (errorCode:
|
|
19
|
+
export declare const getWebGLContextErrorName: (errorCode: number) => string;
|
|
20
20
|
/**
|
|
21
21
|
* Initializes default shaders.
|
|
22
22
|
*/
|
|
@@ -28,21 +28,21 @@ export declare const initDefaultShaders: () => void;
|
|
|
28
28
|
* @param {object} shaderType - The type of shader to compile.
|
|
29
29
|
* @returns {WebGLShader} The compiled WebGL shader or null if compilation failed.
|
|
30
30
|
*/
|
|
31
|
-
export declare const compileShader: (gl:
|
|
31
|
+
export declare const compileShader: (gl: WebGLRenderingContext, shaderSrc: string[] | string, shaderType: any) => WebGLShader;
|
|
32
32
|
/**
|
|
33
33
|
* Compiles a WebGL vertex shader.
|
|
34
34
|
* @param {WebGLRenderingContext} gl - The WebGL rendering context.
|
|
35
35
|
* @param {string[]|string} shaderSrc - The vertex shader source code.
|
|
36
36
|
* @returns {WebGLShader} The compiled WebGL vertex shader or null if compilation failed.
|
|
37
37
|
*/
|
|
38
|
-
export declare const compileVertexShader: (gl:
|
|
38
|
+
export declare const compileVertexShader: (gl: WebGLRenderingContext, shaderSrc: string[] | string) => WebGLShader;
|
|
39
39
|
/**
|
|
40
40
|
* Compiles a WebGL fragment shader.
|
|
41
41
|
* @param {WebGLRenderingContext} gl - The WebGL rendering context.
|
|
42
42
|
* @param {string[]|string} shaderSrc - The fragment shader source code.
|
|
43
43
|
* @returns {WebGLShader} The compiled WebGL fragment shader or null if compilation failed.
|
|
44
44
|
*/
|
|
45
|
-
export declare const compileFragmentShader: (gl:
|
|
45
|
+
export declare const compileFragmentShader: (gl: WebGLRenderingContext, shaderSrc: string[] | string) => WebGLShader;
|
|
46
46
|
/**
|
|
47
47
|
* Compiles a WebGL shader program.
|
|
48
48
|
* @param {WebGLRenderingContext} gl - The WebGL rendering context.
|
|
@@ -50,5 +50,5 @@ export declare const compileFragmentShader: (gl: any, shaderSrc: any) => any;
|
|
|
50
50
|
* @param {string[]|string} fragmentSrc - The fragment shader source code.
|
|
51
51
|
* @returns {WebGLProgram} The compiled WebGL shader program or null if compilation failed.
|
|
52
52
|
*/
|
|
53
|
-
export declare const compileProgram: (gl:
|
|
53
|
+
export declare const compileProgram: (gl: WebGLRenderingContext, vertexSrc: string[] | string, fragmentSrc: string[] | string) => WebGLProgram;
|
|
54
54
|
//# sourceMappingURL=util.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/util.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,IAAI,CAAC;AAE1B,eAAO,MAAM,YAAY,OAAS,CAAC;AAEnC,eAAO,MAAM,aAAa,OAAS,CAAC;AAEpC,eAAO,MAAM,iBAAiB,OAAS,CAAC;AAExC,eAAO,MAAM,6BAA6B,OAAS,CAAC;AAEpD,eAAO,MAAM,aAAa,OAAS,CAAC;AAEpC,eAAO,MAAM,kBAAkB,QAAS,CAAC;AAEzC;;;;GAIG;AACH,eAAO,MAAM,wBAAwB,GAAI,
|
|
1
|
+
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/webgl/util.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,IAAI,CAAC;AAE1B,eAAO,MAAM,YAAY,OAAS,CAAC;AAEnC,eAAO,MAAM,aAAa,OAAS,CAAC;AAEpC,eAAO,MAAM,iBAAiB,OAAS,CAAC;AAExC,eAAO,MAAM,6BAA6B,OAAS,CAAC;AAEpD,eAAO,MAAM,aAAa,OAAS,CAAC;AAEpC,eAAO,MAAM,kBAAkB,QAAS,CAAC;AAEzC;;;;GAIG;AACH,eAAO,MAAM,wBAAwB,GAAI,IAAI,qBAAqB,WAEjE,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,wBAAwB,GAAI,WAAW,MAAM,WAmBzD,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,YAAW,CAAC;AAE3C;;;;;;GAMG;AACH,eAAO,MAAM,aAAa,GAAI,IAAI,qBAAqB,EAAE,WAAW,MAAM,EAAE,GAAC,MAAM,EAAE,YAAY,GAAG,gBAanG,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,GAAI,IAAI,qBAAqB,EAAE,WAAW,MAAM,EAAE,GAAC,MAAM,gBAExF,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB,GAAI,IAAI,qBAAqB,EAAE,WAAW,MAAM,EAAE,GAAC,MAAM,gBAE1F,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,cAAc,GAAI,IAAI,qBAAqB,EAAE,WAAW,MAAM,EAAE,GAAC,MAAM,EAAE,aAAa,MAAM,EAAE,GAAC,MAAM,iBAiBjH,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Point } from './point.js';
|
|
1
2
|
import { Rectangle } from './rectangle.js';
|
|
2
3
|
export declare class Circle {
|
|
3
4
|
x: number;
|
|
@@ -22,7 +23,7 @@ export declare class Circle {
|
|
|
22
23
|
* @param {Point} output - The point to store the result in (optional).
|
|
23
24
|
* @returns {Point} A random point within this circle.
|
|
24
25
|
*/
|
|
25
|
-
random(output?:
|
|
26
|
+
random(output?: Point): Point;
|
|
26
27
|
/**
|
|
27
28
|
* Gets the bounding rectangle of this circle.
|
|
28
29
|
* @returns {Rectangle} The bounding rectangle of this circle.
|
|
@@ -35,38 +36,38 @@ export declare class Circle {
|
|
|
35
36
|
* @param {number} diameter - The new diameter of the circle.
|
|
36
37
|
* @returns {Circle} This circle instance for chaining.
|
|
37
38
|
*/
|
|
38
|
-
setTo(x:
|
|
39
|
+
setTo(x: number, y: number, diameter: number): this;
|
|
39
40
|
/**
|
|
40
41
|
* Copies the values from another circle to this circle.
|
|
41
42
|
* @param {Circle} source - The circle to copy values from.
|
|
42
43
|
* @returns {Circle} This circle instance for chaining.
|
|
43
44
|
*/
|
|
44
|
-
copyFrom(source:
|
|
45
|
+
copyFrom(source: Circle): this;
|
|
45
46
|
/**
|
|
46
47
|
* Copies the values of this circle to another circle.
|
|
47
48
|
* @param {Circle} dest - The circle to copy values to.
|
|
48
49
|
* @returns {Circle} The destination circle.
|
|
49
50
|
*/
|
|
50
|
-
copyTo(dest:
|
|
51
|
+
copyTo(dest: Circle): Circle;
|
|
51
52
|
/**
|
|
52
53
|
* Calculates the distance between this circle and another circle.
|
|
53
54
|
* @param {Circle} dest - The other circle to calculate the distance to.
|
|
54
55
|
* @param {boolean} round - Whether to round the result (default: false).
|
|
55
56
|
* @returns {number} The distance between the circles.
|
|
56
57
|
*/
|
|
57
|
-
distance(dest:
|
|
58
|
+
distance(dest: Circle, round?: boolean): number;
|
|
58
59
|
/**
|
|
59
60
|
* Creates a clone of this circle.
|
|
60
61
|
* @returns {Circle} A new circle with the same values as this one.
|
|
61
62
|
*/
|
|
62
|
-
clone():
|
|
63
|
+
clone(): Circle;
|
|
63
64
|
/**
|
|
64
65
|
* Checks if the specified point is contained within this circle.
|
|
65
66
|
* @param {number} x - The x coordinate of the point to check.
|
|
66
67
|
* @param {number} y - The y coordinate of the point to check.
|
|
67
68
|
* @returns {boolean} True if the point is contained within this circle, false otherwise.
|
|
68
69
|
*/
|
|
69
|
-
contains(x:
|
|
70
|
+
contains(x: number, y: number): boolean;
|
|
70
71
|
/**
|
|
71
72
|
* Gets a point at a specific angle on the circumference of this circle.
|
|
72
73
|
* @param {number} angle - The angle in radians (or degrees if asDegrees is true) to get the point for.
|
|
@@ -74,20 +75,20 @@ export declare class Circle {
|
|
|
74
75
|
* @param {Point} out - The point to store the result in (optional).
|
|
75
76
|
* @returns {Point} A point at the specified angle on the circumference of this circle.
|
|
76
77
|
*/
|
|
77
|
-
circumferencePoint(angle:
|
|
78
|
+
circumferencePoint(angle: number, asDegrees?: boolean, out?: Point): Point;
|
|
78
79
|
/**
|
|
79
80
|
* Offsets the position of this circle by the specified amounts.
|
|
80
81
|
* @param {number} dx - The amount to offset the x coordinate by.
|
|
81
82
|
* @param {number} dy - The amount to offset the y coordinate by.
|
|
82
83
|
* @returns {Circle} This circle instance for chaining.
|
|
83
84
|
*/
|
|
84
|
-
offset(dx:
|
|
85
|
+
offset(dx: number, dy: number): this;
|
|
85
86
|
/**
|
|
86
87
|
* Offsets the position of this circle by the specified point coordinates.
|
|
87
88
|
* @param {Point} point - The point to offset the circle by.
|
|
88
89
|
* @returns {Circle} This circle instance for chaining.
|
|
89
90
|
*/
|
|
90
|
-
offsetPoint(point:
|
|
91
|
+
offsetPoint(point: Point): this;
|
|
91
92
|
/**
|
|
92
93
|
* Returns a string representation of this circle.
|
|
93
94
|
* @returns {string} A string representation of the circle.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"circle.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/circle.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"circle.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/circle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAK3C,qBAAa,MAAM;IACjB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IAEb;;;;;OAKG;gBACS,CAAC,GAAE,MAAU,EAAE,CAAC,GAAE,MAAU,EAAE,QAAQ,GAAE,MAAU;IAgB9D;;;OAGG;IACH,aAAa;IAIb;;;;OAIG;IACH,MAAM,CAAC,MAAM,GAAE,KAAY;IAY3B;;;OAGG;IACH,SAAS;IAIT;;;;;;OAMG;IACH,KAAK,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAQ5C;;;;OAIG;IACH,QAAQ,CAAC,MAAM,EAAE,MAAM;IAIvB;;;;OAIG;IACH,MAAM,CAAC,IAAI,EAAE,MAAM;IAOnB;;;;;OAKG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,GAAE,OAAe;IAK7C;;;OAGG;IACH,KAAK;IAIL;;;;;OAKG;IACH,QAAQ,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAI7B;;;;;;OAMG;IACH,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,OAAO,EAAE,GAAG,CAAC,EAAE,KAAK;IAIlE;;;;;OAKG;IACH,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM;IAM7B;;;;OAIG;IACH,WAAW,CAAC,KAAK,EAAE,KAAK;IAIxB;;;OAGG;IACH,QAAQ;IAIR;;;OAGG;IACH,IAAI,QAAQ,WAEX;IAED;;OAEG;IACH,IAAI,QAAQ,CAAC,KAAK,QAAA,EAKjB;IAED;;;OAGG;IACH,IAAI,MAAM,WAET;IAED;;OAEG;IACH,IAAI,MAAM,CAAC,KAAK,QAAA,EAKf;IAED;;;OAGG;IACH,IAAI,IAAI,WAEP;IAED;;OAEG;IACH,IAAI,IAAI,CAAC,KAAK,QAAA,EAOb;IAED;;;OAGG;IACH,IAAI,KAAK,WAER;IAED;;OAEG;IACH,IAAI,KAAK,CAAC,KAAK,QAAA,EAOd;IAED;;;OAGG;IACH,IAAI,GAAG,WAEN;IAED;;OAEG;IACH,IAAI,GAAG,CAAC,KAAK,QAAA,EAOZ;IAED;;;OAGG;IACH,IAAI,MAAM,WAET;IAED;;OAEG;IACH,IAAI,MAAM,CAAC,KAAK,QAAA,EAOf;IAED;;;OAGG;IACH,IAAI,IAAI,WAKP;IAED;;;OAGG;IACH,IAAI,KAAK,YAER;IAED;;OAEG;IACH,IAAI,KAAK,CAAC,KAAK,SAAA,EAId;CACF"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Point } from './point.js';
|
|
1
2
|
import { Rectangle } from './rectangle.js';
|
|
2
3
|
export declare class Ellipse {
|
|
3
4
|
x: number;
|
|
@@ -21,7 +22,7 @@ export declare class Ellipse {
|
|
|
21
22
|
* @param {number} height - The new height of the ellipse.
|
|
22
23
|
* @returns {Ellipse} This ellipse instance for chaining.
|
|
23
24
|
*/
|
|
24
|
-
setTo(x:
|
|
25
|
+
setTo(x: number, y: number, width: number, height: number): this;
|
|
25
26
|
/**
|
|
26
27
|
* Gets the bounding rectangle of this ellipse.
|
|
27
28
|
* @returns {Rectangle} The bounding rectangle of this ellipse.
|
|
@@ -32,26 +33,26 @@ export declare class Ellipse {
|
|
|
32
33
|
* @param {Ellipse} source - The ellipse to copy values from.
|
|
33
34
|
* @returns {Ellipse} This ellipse instance for chaining.
|
|
34
35
|
*/
|
|
35
|
-
copyFrom(source:
|
|
36
|
+
copyFrom(source: Ellipse): this;
|
|
36
37
|
/**
|
|
37
38
|
* Copies the values of this ellipse to another ellipse.
|
|
38
39
|
* @param {Ellipse} dest - The ellipse to copy values to.
|
|
39
40
|
* @returns {Ellipse} The destination ellipse.
|
|
40
41
|
*/
|
|
41
|
-
copyTo(dest:
|
|
42
|
+
copyTo(dest: Ellipse): Ellipse;
|
|
42
43
|
/**
|
|
43
44
|
* Checks if the specified point is contained within this ellipse.
|
|
44
45
|
* @param {number} x - The x coordinate of the point to check.
|
|
45
46
|
* @param {number} y - The y coordinate of the point to check.
|
|
46
47
|
* @returns {boolean} True if the point is contained within this ellipse, false otherwise.
|
|
47
48
|
*/
|
|
48
|
-
contains(x:
|
|
49
|
+
contains(x: number, y: number): boolean;
|
|
49
50
|
/**
|
|
50
51
|
* Returns a random point within this ellipse.
|
|
51
52
|
* @param {Point} output - The point to store the result in (optional).
|
|
52
53
|
* @returns {Point} A random point within this ellipse.
|
|
53
54
|
*/
|
|
54
|
-
random(output?:
|
|
55
|
+
random(output?: Point): Point;
|
|
55
56
|
/**
|
|
56
57
|
* Returns a string representation of this ellipse.
|
|
57
58
|
* @returns {string} A string representation of the ellipse.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ellipse.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/ellipse.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ellipse.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/ellipse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAG3C,qBAAa,OAAO;IAClB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IAEb;;;;;;OAMG;gBACS,CAAC,GAAE,MAAU,EAAE,CAAC,GAAE,MAAU,EAAE,KAAK,GAAE,MAAU,EAAE,MAAM,GAAE,MAAU;IAa/E;;;;;;;OAOG;IACH,KAAK,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM;IAQzD;;;OAGG;IACH,SAAS;IAIT;;;;OAIG;IACH,QAAQ,CAAC,MAAM,EAAE,OAAO;IAIxB;;;;OAIG;IACH,MAAM,CAAC,IAAI,EAAE,OAAO;IAQpB;;;;;OAKG;IACH,QAAQ,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAI7B;;;;OAIG;IACH,MAAM,CAAC,MAAM,GAAE,KAAY;IAW3B;;;OAGG;IACH,QAAQ;CAGT"}
|
|
@@ -19,7 +19,7 @@ export declare class Line {
|
|
|
19
19
|
* @param {number} y2 - The new y coordinate of the end point.
|
|
20
20
|
* @returns {Line} This line instance for chaining.
|
|
21
21
|
*/
|
|
22
|
-
setTo(x1:
|
|
22
|
+
setTo(x1: number, y1: number, x2: number, y2: number): this;
|
|
23
23
|
/**
|
|
24
24
|
* Sets the coordinates of this line to match the positions of two sprites.
|
|
25
25
|
* @param {object} startSprite - The starting sprite to get the position from.
|
|
@@ -36,14 +36,14 @@ export declare class Line {
|
|
|
36
36
|
* @param {number} length - The length of the line.
|
|
37
37
|
* @returns {Line} This line instance for chaining.
|
|
38
38
|
*/
|
|
39
|
-
fromAngle(x:
|
|
39
|
+
fromAngle(x: number, y: number, angle: number, length: number): this;
|
|
40
40
|
/**
|
|
41
41
|
* Rotates this line around its center point by the specified angle.
|
|
42
42
|
* @param {number} angle - The angle in radians (or degrees if asDegrees is true) to rotate by.
|
|
43
43
|
* @param {boolean} asDegrees - Whether the angle is provided in degrees (default: false).
|
|
44
44
|
* @returns {Line} This line instance for chaining.
|
|
45
45
|
*/
|
|
46
|
-
rotate(angle:
|
|
46
|
+
rotate(angle: number, asDegrees?: boolean): this;
|
|
47
47
|
/**
|
|
48
48
|
* Rotates this line around a specific point by the specified angle.
|
|
49
49
|
* @param {number} x - The x coordinate of the center point to rotate around.
|
|
@@ -52,7 +52,7 @@ export declare class Line {
|
|
|
52
52
|
* @param {boolean} asDegrees - Whether the angle is provided in degrees (default: false).
|
|
53
53
|
* @returns {Line} This line instance for chaining.
|
|
54
54
|
*/
|
|
55
|
-
rotateAround(x:
|
|
55
|
+
rotateAround(x: number, y: number, angle: number, asDegrees?: boolean): this;
|
|
56
56
|
/**
|
|
57
57
|
* Checks if this line intersects with another line.
|
|
58
58
|
* @param {Line} line - The other line to check for intersection with.
|
|
@@ -60,57 +60,57 @@ export declare class Line {
|
|
|
60
60
|
* @param {Point} result - The point to store the intersection in (optional).
|
|
61
61
|
* @returns {Point} The intersection point, or null if no intersection occurs.
|
|
62
62
|
*/
|
|
63
|
-
intersects(line:
|
|
63
|
+
intersects(line: Line, asSegment: boolean, result: Point): Point;
|
|
64
64
|
/**
|
|
65
65
|
* Calculates the reflection of this line off another line.
|
|
66
66
|
* @param {Line} line - The line to reflect off.
|
|
67
67
|
* @returns {number} The angle of reflection in radians.
|
|
68
68
|
*/
|
|
69
|
-
reflect(line:
|
|
69
|
+
reflect(line: Line): number;
|
|
70
70
|
/**
|
|
71
71
|
* Returns the midpoint of this line.
|
|
72
72
|
* @param {Point} output - The point to store the result in (optional).
|
|
73
73
|
* @returns {Point} The midpoint of this line.
|
|
74
74
|
*/
|
|
75
|
-
midPoint(output?:
|
|
75
|
+
midPoint(output?: Point): Point;
|
|
76
76
|
/**
|
|
77
77
|
* Centers this line on the specified point.
|
|
78
78
|
* @param {number} x - The x coordinate to center the line on.
|
|
79
79
|
* @param {number} y - The y coordinate to center the line on.
|
|
80
80
|
*/
|
|
81
|
-
centerOn(x:
|
|
81
|
+
centerOn(x: number, y: number): void;
|
|
82
82
|
/**
|
|
83
83
|
* Checks if the specified point lies on this line (not necessarily on the segment).
|
|
84
84
|
* @param {number} x - The x coordinate of the point to check.
|
|
85
85
|
* @param {number} y - The y coordinate of the point to check.
|
|
86
86
|
* @returns {boolean} True if the point lies on this line, false otherwise.
|
|
87
87
|
*/
|
|
88
|
-
pointOnLine(x:
|
|
88
|
+
pointOnLine(x: number, y: number): boolean;
|
|
89
89
|
/**
|
|
90
90
|
* Checks if the specified point lies on this line segment.
|
|
91
91
|
* @param {number} x - The x coordinate of the point to check.
|
|
92
92
|
* @param {number} y - The y coordinate of the point to check.
|
|
93
93
|
* @returns {boolean} True if the point lies on this line segment, false otherwise.
|
|
94
94
|
*/
|
|
95
|
-
pointOnSegment(x:
|
|
95
|
+
pointOnSegment(x: number, y: number): boolean;
|
|
96
96
|
/**
|
|
97
97
|
* Returns a random point on this line.
|
|
98
98
|
* @param {Point} output - The point to store the result in (optional).
|
|
99
99
|
* @returns {Point} A random point on this line.
|
|
100
100
|
*/
|
|
101
|
-
random(output?:
|
|
101
|
+
random(output?: Point): Point;
|
|
102
102
|
/**
|
|
103
103
|
* Gets coordinates of points along this line at regular intervals.
|
|
104
104
|
* @param {number} stepRate - The interval between points (default: 1).
|
|
105
105
|
* @param {number[][]} results - The array to store the results in (optional).
|
|
106
106
|
* @returns {number[][]} An array of coordinate pairs representing points along this line.
|
|
107
107
|
*/
|
|
108
|
-
coordinatesOnLine(stepRate?: number, results?:
|
|
108
|
+
coordinatesOnLine(stepRate?: number, results?: number[][]): number[][];
|
|
109
109
|
/**
|
|
110
110
|
* Creates a clone of this line.
|
|
111
111
|
* @returns {Line} A new line with the same values as this one.
|
|
112
112
|
*/
|
|
113
|
-
clone():
|
|
113
|
+
clone(): Line;
|
|
114
114
|
/**
|
|
115
115
|
* Gets the length of this line.
|
|
116
116
|
* @returns {number} The length of this line.
|
|
@@ -185,6 +185,6 @@ export declare class Line {
|
|
|
185
185
|
* Gets the angle of the normal vector of this line in radians.
|
|
186
186
|
* @returns {number} The angle of the normal vector of this line in radians.
|
|
187
187
|
*/
|
|
188
|
-
get normalAngle():
|
|
188
|
+
get normalAngle(): number;
|
|
189
189
|
}
|
|
190
190
|
//# sourceMappingURL=line.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"line.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/line.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAKnC,qBAAa,IAAI;IACf,KAAK,EAAE,KAAK,CAAC;IACb,GAAG,EAAE,KAAK,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IAEb;;;;;;OAMG;gBACS,EAAE,
|
|
1
|
+
{"version":3,"file":"line.d.ts","sourceRoot":"","sources":["../../../src/phaser/geom/line.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAKnC,qBAAa,IAAI;IACf,KAAK,EAAE,KAAK,CAAC;IACb,GAAG,EAAE,KAAK,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IAEb;;;;;;OAMG;gBACS,EAAE,GAAE,MAAU,EAAE,EAAE,GAAE,MAAU,EAAE,EAAE,GAAE,MAAU,EAAE,EAAE,GAAE,MAAU;IAS1E;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM;IAMpD;;;;;;OAMG;IACH,UAAU,CAAC,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,SAAS,GAAE,OAAe;IAOvE;;;;;;;OAOG;IACH,SAAS,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM;IAM7D;;;;;OAKG;IACH,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,GAAE,OAAe;IAQhD;;;;;;;OAOG;IACH,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,GAAE,OAAe;IAM5E;;;;;;OAMG;IACH,UAAU,CAAC,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK;IAIxD;;;;OAIG;IACH,OAAO,CAAC,IAAI,EAAE,IAAI;IAIlB;;;;OAIG;IACH,QAAQ,CAAC,MAAM,GAAE,KAAY;IAO7B;;;;OAIG;IACH,QAAQ,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAS7B;;;;;OAKG;IACH,WAAW,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAIhC;;;;;OAKG;IACH,cAAc,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAQnC;;;;OAIG;IACH,MAAM,CAAC,MAAM,GAAE,KAAY;IAQ3B;;;;;OAKG;IACH,iBAAiB,CAAC,QAAQ,GAAE,MAAU,EAAE,OAAO,GAAE,MAAM,EAAE,EAAO;IA8BhE;;;OAGG;IACH,KAAK;IAIL;;;OAGG;IACH,IAAI,MAAM,WAKT;IAED;;;OAGG;IACH,IAAI,KAAK,WAER;IAED;;;OAGG;IACH,IAAI,KAAK,WAER;IAED;;;OAGG;IACH,IAAI,SAAS,WAEZ;IAED;;;OAGG;IACH,IAAI,CAAC,WAEJ;IAED;;;OAGG;IACH,IAAI,CAAC,WAEJ;IAED;;;OAGG;IACH,IAAI,IAAI,WAEP;IAED;;;OAGG;IACH,IAAI,KAAK,WAER;IAED;;;OAGG;IACH,IAAI,GAAG,WAEN;IAED;;;OAGG;IACH,IAAI,MAAM,WAET;IAED;;;OAGG;IACH,IAAI,KAAK,WAER;IAED;;;OAGG;IACH,IAAI,MAAM,WAET;IAED;;;OAGG;IACH,IAAI,OAAO,WAEV;IAED;;;OAGG;IACH,IAAI,OAAO,WAEV;IAED;;;OAGG;IACH,IAAI,WAAW,WAEd;CACF"}
|