@vpmedia/phaser 1.94.0 → 1.96.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/CHANGELOG.md +41 -0
- package/package.json +11 -11
- package/src/phaser/core/animation.js +79 -56
- package/src/phaser/core/animation_manager.js +55 -55
- package/src/phaser/core/animation_parser.js +2 -2
- package/src/phaser/core/cache.js +154 -154
- package/src/phaser/core/device.js +2 -1
- package/src/phaser/core/device_util.js +27 -27
- package/src/phaser/core/dom.js +43 -43
- package/src/phaser/core/event_manager.js +63 -63
- package/src/phaser/core/factory.js +47 -47
- package/src/phaser/core/frame.js +30 -30
- package/src/phaser/core/frame_data.js +30 -28
- package/src/phaser/core/frame_util.js +8 -8
- package/src/phaser/core/game.js +35 -19
- package/src/phaser/core/input_pointer.js +18 -0
- package/src/phaser/core/loader.js +171 -171
- package/src/phaser/core/loader_parser.js +22 -22
- package/src/phaser/core/raf.js +1 -1
- package/src/phaser/core/scale_manager.js +3 -2
- package/src/phaser/core/scene.js +16 -10
- package/src/phaser/core/scene_manager.js +51 -43
- package/src/phaser/core/signal.js +56 -52
- package/src/phaser/core/sound.js +54 -54
- package/src/phaser/core/sound_manager.js +49 -49
- package/src/phaser/core/stage.js +16 -16
- package/src/phaser/core/time.js +54 -30
- package/src/phaser/core/timer.js +82 -64
- package/src/phaser/core/timer_event.js +9 -9
- package/src/phaser/core/tween.js +106 -90
- package/src/phaser/core/tween_data.js +30 -30
- package/src/phaser/core/tween_manager.js +32 -24
- package/src/phaser/core/world.js +4 -3
- package/src/phaser/display/bitmap_text.js +72 -54
- package/src/phaser/display/button.js +48 -47
- package/src/phaser/display/canvas/buffer.js +8 -8
- package/src/phaser/display/canvas/graphics.js +8 -8
- package/src/phaser/display/canvas/masker.js +5 -5
- package/src/phaser/display/canvas/pool.js +18 -18
- package/src/phaser/display/canvas/renderer.js +17 -16
- package/src/phaser/display/canvas/tinter.js +22 -22
- package/src/phaser/display/canvas/util.js +42 -42
- package/src/phaser/display/display_object.js +119 -108
- package/src/phaser/display/graphics.js +129 -112
- package/src/phaser/display/graphics_data.js +10 -10
- package/src/phaser/display/graphics_data_util.js +3 -3
- package/src/phaser/display/group.js +63 -50
- package/src/phaser/display/image.js +68 -50
- package/src/phaser/display/sprite_batch.js +2 -2
- package/src/phaser/display/sprite_util.js +19 -19
- package/src/phaser/display/text.js +217 -187
- package/src/phaser/display/webgl/abstract_filter.js +4 -4
- package/src/phaser/display/webgl/base_texture.js +9 -9
- package/src/phaser/display/webgl/blend_manager.js +7 -7
- package/src/phaser/display/webgl/earcut.js +95 -95
- package/src/phaser/display/webgl/earcut_node.js +4 -4
- package/src/phaser/display/webgl/fast_sprite_batch.js +15 -15
- package/src/phaser/display/webgl/filter_manager.js +9 -9
- package/src/phaser/display/webgl/filter_texture.js +10 -10
- package/src/phaser/display/webgl/graphics.js +37 -37
- package/src/phaser/display/webgl/graphics_data.js +4 -4
- package/src/phaser/display/webgl/mask_manager.js +6 -6
- package/src/phaser/display/webgl/render_texture.js +16 -16
- package/src/phaser/display/webgl/renderer.js +21 -20
- package/src/phaser/display/webgl/shader/complex.js +4 -4
- package/src/phaser/display/webgl/shader/fast.js +4 -4
- package/src/phaser/display/webgl/shader/normal.js +8 -8
- package/src/phaser/display/webgl/shader/primitive.js +4 -4
- package/src/phaser/display/webgl/shader/strip.js +4 -4
- package/src/phaser/display/webgl/shader_manager.js +9 -9
- package/src/phaser/display/webgl/sprite_batch.js +18 -18
- package/src/phaser/display/webgl/stencil_manager.js +16 -16
- package/src/phaser/display/webgl/texture.js +13 -13
- package/src/phaser/display/webgl/texture_util.js +8 -8
- package/src/phaser/display/webgl/util.js +25 -25
- package/src/phaser/geom/circle.js +74 -69
- package/src/phaser/geom/ellipse.js +33 -28
- package/src/phaser/geom/line.js +96 -93
- package/src/phaser/geom/matrix.js +61 -54
- package/src/phaser/geom/point.js +99 -96
- package/src/phaser/geom/polygon.js +27 -22
- package/src/phaser/geom/rectangle.js +137 -132
- package/src/phaser/geom/rounded_rectangle.js +12 -12
- package/src/phaser/geom/util/circle.js +33 -33
- package/src/phaser/geom/util/ellipse.js +5 -5
- package/src/phaser/geom/util/line.js +26 -26
- package/src/phaser/geom/util/matrix.js +8 -8
- package/src/phaser/geom/util/point.js +97 -97
- package/src/phaser/geom/util/polygon.js +4 -4
- package/src/phaser/geom/util/rectangle.js +74 -74
- package/src/phaser/geom/util/rounded_rectangle.js +4 -4
- package/src/phaser/util/math.js +81 -81
- package/types/phaser/core/animation.d.ts +79 -56
- package/types/phaser/core/animation.d.ts.map +1 -1
- package/types/phaser/core/animation_manager.d.ts +55 -55
- package/types/phaser/core/animation_parser.d.ts +3 -2
- package/types/phaser/core/animation_parser.d.ts.map +1 -1
- package/types/phaser/core/cache.d.ts +154 -154
- package/types/phaser/core/device.d.ts.map +1 -1
- package/types/phaser/core/dom.d.ts +51 -44
- package/types/phaser/core/dom.d.ts.map +1 -1
- package/types/phaser/core/event_manager.d.ts +63 -63
- package/types/phaser/core/factory.d.ts +47 -47
- package/types/phaser/core/frame.d.ts +30 -30
- package/types/phaser/core/frame_data.d.ts +28 -27
- package/types/phaser/core/frame_data.d.ts.map +1 -1
- package/types/phaser/core/game.d.ts +54 -21
- package/types/phaser/core/game.d.ts.map +1 -1
- package/types/phaser/core/input_pointer.d.ts +18 -0
- package/types/phaser/core/input_pointer.d.ts.map +1 -1
- package/types/phaser/core/loader.d.ts +175 -172
- package/types/phaser/core/loader.d.ts.map +1 -1
- package/types/phaser/core/loader_parser.d.ts.map +1 -1
- package/types/phaser/core/raf.d.ts +1 -1
- package/types/phaser/core/scale_manager.d.ts +6 -5
- package/types/phaser/core/scale_manager.d.ts.map +1 -1
- package/types/phaser/core/scene.d.ts +15 -9
- package/types/phaser/core/scene.d.ts.map +1 -1
- package/types/phaser/core/scene_manager.d.ts +51 -43
- package/types/phaser/core/scene_manager.d.ts.map +1 -1
- package/types/phaser/core/signal.d.ts +54 -51
- package/types/phaser/core/signal.d.ts.map +1 -1
- package/types/phaser/core/sound.d.ts +54 -54
- package/types/phaser/core/sound_manager.d.ts +49 -49
- package/types/phaser/core/stage.d.ts +10 -10
- package/types/phaser/core/time.d.ts +54 -30
- package/types/phaser/core/time.d.ts.map +1 -1
- package/types/phaser/core/timer.d.ts +82 -64
- package/types/phaser/core/timer.d.ts.map +1 -1
- package/types/phaser/core/timer_event.d.ts +9 -9
- package/types/phaser/core/tween.d.ts +106 -90
- package/types/phaser/core/tween.d.ts.map +1 -1
- package/types/phaser/core/tween_data.d.ts +30 -30
- package/types/phaser/core/tween_manager.d.ts +35 -67
- package/types/phaser/core/tween_manager.d.ts.map +1 -1
- package/types/phaser/core/world.d.ts +4 -3
- package/types/phaser/core/world.d.ts.map +1 -1
- package/types/phaser/display/bitmap_text.d.ts +76 -53
- package/types/phaser/display/bitmap_text.d.ts.map +1 -1
- package/types/phaser/display/button.d.ts +47 -46
- package/types/phaser/display/button.d.ts.map +1 -1
- package/types/phaser/display/canvas/buffer.d.ts +8 -8
- package/types/phaser/display/canvas/graphics.d.ts +3 -3
- package/types/phaser/display/canvas/graphics.d.ts.map +1 -1
- package/types/phaser/display/canvas/pool.d.ts +6 -3
- package/types/phaser/display/canvas/pool.d.ts.map +1 -1
- package/types/phaser/display/canvas/renderer.d.ts +18 -17
- package/types/phaser/display/canvas/renderer.d.ts.map +1 -1
- package/types/phaser/display/canvas/util.d.ts +6 -6
- package/types/phaser/display/canvas/util.d.ts.map +1 -1
- package/types/phaser/display/display_object.d.ts +119 -108
- package/types/phaser/display/display_object.d.ts.map +1 -1
- package/types/phaser/display/graphics.d.ts +118 -102
- package/types/phaser/display/graphics.d.ts.map +1 -1
- package/types/phaser/display/graphics_data.d.ts +10 -10
- package/types/phaser/display/group.d.ts +59 -47
- package/types/phaser/display/group.d.ts.map +1 -1
- package/types/phaser/display/image.d.ts +58 -45
- package/types/phaser/display/image.d.ts.map +1 -1
- package/types/phaser/display/text.d.ts +237 -188
- package/types/phaser/display/text.d.ts.map +1 -1
- package/types/phaser/display/webgl/abstract_filter.d.ts +4 -4
- package/types/phaser/display/webgl/base_texture.d.ts +10 -10
- package/types/phaser/display/webgl/base_texture.d.ts.map +1 -1
- package/types/phaser/display/webgl/blend_manager.d.ts +6 -6
- package/types/phaser/display/webgl/earcut.d.ts +95 -95
- package/types/phaser/display/webgl/earcut_node.d.ts +4 -4
- package/types/phaser/display/webgl/fast_sprite_batch.d.ts +15 -15
- package/types/phaser/display/webgl/filter_manager.d.ts +8 -8
- package/types/phaser/display/webgl/filter_texture.d.ts +10 -10
- package/types/phaser/display/webgl/graphics.d.ts +2 -2
- package/types/phaser/display/webgl/graphics.d.ts.map +1 -1
- package/types/phaser/display/webgl/graphics_data.d.ts +4 -4
- package/types/phaser/display/webgl/render_texture.d.ts +16 -16
- package/types/phaser/display/webgl/renderer.d.ts +21 -20
- package/types/phaser/display/webgl/renderer.d.ts.map +1 -1
- package/types/phaser/display/webgl/shader/complex.d.ts +4 -4
- package/types/phaser/display/webgl/shader/fast.d.ts +4 -4
- package/types/phaser/display/webgl/shader/normal.d.ts +8 -8
- package/types/phaser/display/webgl/shader/primitive.d.ts +4 -4
- package/types/phaser/display/webgl/shader/strip.d.ts +4 -4
- package/types/phaser/display/webgl/shader_manager.d.ts +8 -8
- package/types/phaser/display/webgl/sprite_batch.d.ts +17 -17
- package/types/phaser/display/webgl/stencil_manager.d.ts +15 -15
- package/types/phaser/display/webgl/texture.d.ts +12 -12
- package/types/phaser/display/webgl/texture_util.d.ts +4 -2
- package/types/phaser/display/webgl/texture_util.d.ts.map +1 -1
- package/types/phaser/geom/circle.d.ts +74 -69
- package/types/phaser/geom/circle.d.ts.map +1 -1
- package/types/phaser/geom/ellipse.d.ts +33 -28
- package/types/phaser/geom/ellipse.d.ts.map +1 -1
- package/types/phaser/geom/line.d.ts +96 -93
- package/types/phaser/geom/line.d.ts.map +1 -1
- package/types/phaser/geom/matrix.d.ts +61 -54
- package/types/phaser/geom/matrix.d.ts.map +1 -1
- package/types/phaser/geom/point.d.ts +99 -96
- package/types/phaser/geom/point.d.ts.map +1 -1
- package/types/phaser/geom/polygon.d.ts +29 -23
- package/types/phaser/geom/polygon.d.ts.map +1 -1
- package/types/phaser/geom/rectangle.d.ts +137 -132
- package/types/phaser/geom/rectangle.d.ts.map +1 -1
- package/types/phaser/geom/rounded_rectangle.d.ts +12 -12
- package/types/phaser/geom/util/point.d.ts +1 -1
- package/types/phaser/geom/util/point.d.ts.map +1 -1
- package/pnpm-workspace.yaml +0 -4
|
@@ -10,8 +10,8 @@ export const XML: 8;
|
|
|
10
10
|
export const RENDER_TEXTURE: 9;
|
|
11
11
|
export class Cache {
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
14
|
-
* @param {import('./game.js').Game} game -
|
|
13
|
+
* Creates a new Cache instance.
|
|
14
|
+
* @param {import('./game.js').Game} game - The game instance.
|
|
15
15
|
*/
|
|
16
16
|
constructor(game: import("./game.js").Game);
|
|
17
17
|
game: import("./game.js").Game;
|
|
@@ -34,158 +34,158 @@ export class Cache {
|
|
|
34
34
|
onSoundUnlock: Signal;
|
|
35
35
|
_cacheMap: {}[];
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Adds the default image to the cache.
|
|
38
38
|
*/
|
|
39
39
|
addDefaultImage(): void;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* Adds the missing image to the cache.
|
|
42
42
|
*/
|
|
43
43
|
addMissingImage(): void;
|
|
44
44
|
/**
|
|
45
|
-
*
|
|
46
|
-
* @param {string} key -
|
|
47
|
-
* @param {string} url -
|
|
48
|
-
* @param {HTMLImageElement} data -
|
|
49
|
-
* @returns {object}
|
|
45
|
+
* Adds an image to the cache.
|
|
46
|
+
* @param {string} key - The unique key for this cache entry.
|
|
47
|
+
* @param {string} url - The URL the image was loaded from.
|
|
48
|
+
* @param {HTMLImageElement} data - The image data to cache.
|
|
49
|
+
* @returns {object} The cached image object.
|
|
50
50
|
*/
|
|
51
51
|
addImage(key: string, url: string, data: HTMLImageElement): object;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
54
|
-
* @param {string} key -
|
|
55
|
-
* @param {string} url -
|
|
56
|
-
* @param {HTMLCanvasElement} data -
|
|
57
|
-
* @param {object} atlasData -
|
|
53
|
+
* Adds a texture atlas to the cache.
|
|
54
|
+
* @param {string} key - The unique key for this cache entry.
|
|
55
|
+
* @param {string} url - The URL the atlas was loaded from.
|
|
56
|
+
* @param {HTMLCanvasElement} data - The canvas data for the atlas.
|
|
57
|
+
* @param {object} atlasData - The atlas data to cache.
|
|
58
58
|
*/
|
|
59
59
|
addTextureAtlas(key: string, url: string, data: HTMLCanvasElement, atlasData: object): void;
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
62
|
-
* @param {string} key -
|
|
63
|
-
* @param {string} url -
|
|
64
|
-
* @param {object} data -
|
|
61
|
+
* Adds sound data to the cache.
|
|
62
|
+
* @param {string} key - The unique key for this cache entry.
|
|
63
|
+
* @param {string} url - The URL the sound was loaded from.
|
|
64
|
+
* @param {object} data - The sound data to cache.
|
|
65
65
|
*/
|
|
66
66
|
addSound(key: string, url: string, data: object): void;
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
69
|
-
* @param {string} key -
|
|
70
|
-
* @param {string} url -
|
|
71
|
-
* @param {string} data -
|
|
68
|
+
* Adds text data to the cache.
|
|
69
|
+
* @param {string} key - The unique key for this cache entry.
|
|
70
|
+
* @param {string} url - The URL the text was loaded from.
|
|
71
|
+
* @param {string} data - The text data to cache.
|
|
72
72
|
*/
|
|
73
73
|
addText(key: string, url: string, data: string): void;
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
76
|
-
* @param {string} key -
|
|
77
|
-
* @param {string} url -
|
|
78
|
-
* @param {HTMLCanvasElement} data -
|
|
79
|
-
* @param {object} atlasData -
|
|
80
|
-
* @param {string} atlasType -
|
|
81
|
-
* @param {number} xSpacing -
|
|
82
|
-
* @param {number} ySpacing -
|
|
75
|
+
* Adds a bitmap font to the cache.
|
|
76
|
+
* @param {string} key - The unique key for this cache entry.
|
|
77
|
+
* @param {string} url - The URL the bitmap font was loaded from.
|
|
78
|
+
* @param {HTMLCanvasElement} data - The canvas data for the font.
|
|
79
|
+
* @param {object} atlasData - The bitmap font atlas data to cache.
|
|
80
|
+
* @param {string} atlasType - The type of the atlas data ('json' or 'xml').
|
|
81
|
+
* @param {number} xSpacing - Horizontal spacing between characters.
|
|
82
|
+
* @param {number} ySpacing - Vertical spacing between characters.
|
|
83
83
|
*/
|
|
84
84
|
addBitmapFont(key: string, url: string, data: HTMLCanvasElement, atlasData: object, atlasType: string, xSpacing?: number, ySpacing?: number): void;
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
87
|
-
* @param {string} key -
|
|
88
|
-
* @param {string} url -
|
|
89
|
-
* @param {object} data -
|
|
86
|
+
* Adds JSON data to the cache.
|
|
87
|
+
* @param {string} key - The unique key for this cache entry.
|
|
88
|
+
* @param {string} url - The URL the JSON was loaded from.
|
|
89
|
+
* @param {object} data - The JSON data to cache.
|
|
90
90
|
*/
|
|
91
91
|
addJSON(key: string, url: string, data: object): void;
|
|
92
92
|
/**
|
|
93
|
-
*
|
|
94
|
-
* @param {string} key -
|
|
95
|
-
* @param {string} url -
|
|
96
|
-
* @param {XMLDocument} data -
|
|
93
|
+
* Adds XML data to the cache.
|
|
94
|
+
* @param {string} key - The unique key for this cache entry.
|
|
95
|
+
* @param {string} url - The URL the XML was loaded from.
|
|
96
|
+
* @param {XMLDocument} data - The XML data to cache.
|
|
97
97
|
*/
|
|
98
98
|
addXML(key: string, url: string, data: XMLDocument): void;
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
101
|
-
* @param {string} key -
|
|
102
|
-
* @param {string} property -
|
|
103
|
-
* @param {any} value -
|
|
100
|
+
* Updates a sound property in the cache.
|
|
101
|
+
* @param {string} key - The unique key for the cached sound.
|
|
102
|
+
* @param {string} property - The property to update.
|
|
103
|
+
* @param {any} value - The new value for the property.
|
|
104
104
|
*/
|
|
105
105
|
updateSound(key: string, property: string, value: any): void;
|
|
106
106
|
/**
|
|
107
|
-
*
|
|
108
|
-
* @param {string} key -
|
|
109
|
-
* @param {AudioBuffer} data -
|
|
107
|
+
* Marks a sound as decoded in the cache.
|
|
108
|
+
* @param {string} key - The unique key for the cached sound.
|
|
109
|
+
* @param {AudioBuffer} data - The decoded audio buffer.
|
|
110
110
|
*/
|
|
111
111
|
decodedSound(key: string, data: AudioBuffer): void;
|
|
112
112
|
/**
|
|
113
|
-
*
|
|
114
|
-
* @param {string} key -
|
|
115
|
-
* @returns {boolean}
|
|
113
|
+
* Checks if a sound has been decoded in the cache.
|
|
114
|
+
* @param {string} key - The unique key for the cached sound.
|
|
115
|
+
* @returns {boolean} True if the sound is decoded, false otherwise.
|
|
116
116
|
*/
|
|
117
117
|
isSoundDecoded(key: string): boolean;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
120
|
-
* @param {string} key -
|
|
121
|
-
* @returns {boolean}
|
|
119
|
+
* Checks if a sound is ready to play (decoded and not locked).
|
|
120
|
+
* @param {string} key - The unique key for the cached sound.
|
|
121
|
+
* @returns {boolean} True if the sound is ready, false otherwise.
|
|
122
122
|
*/
|
|
123
123
|
isSoundReady(key: string): boolean;
|
|
124
124
|
/**
|
|
125
|
-
*
|
|
126
|
-
* @param {number} cache -
|
|
127
|
-
* @param {string} key -
|
|
128
|
-
* @returns {boolean}
|
|
125
|
+
* Checks if a cache entry exists.
|
|
126
|
+
* @param {number} cache - The cache type (CANVAS, IMAGE, etc.).
|
|
127
|
+
* @param {string} key - The unique key for the cache entry.
|
|
128
|
+
* @returns {boolean} True if the entry exists, false otherwise.
|
|
129
129
|
*/
|
|
130
130
|
checkKey(cache: number, key: string): boolean;
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
133
|
-
* @param {string} url -
|
|
134
|
-
* @returns {boolean}
|
|
132
|
+
* Checks if a URL has been resolved and cached.
|
|
133
|
+
* @param {string} url - The URL to check.
|
|
134
|
+
* @returns {boolean} True if the URL has been resolved and cached, false otherwise.
|
|
135
135
|
*/
|
|
136
136
|
checkURL(url: string): boolean;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
139
|
-
* @param {string} key -
|
|
140
|
-
* @returns {boolean}
|
|
138
|
+
* Checks if a canvas cache entry exists.
|
|
139
|
+
* @param {string} key - The unique key for the cache entry.
|
|
140
|
+
* @returns {boolean} True if the entry exists, false otherwise.
|
|
141
141
|
*/
|
|
142
142
|
checkCanvasKey(key: string): boolean;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
145
|
-
* @param {string} key -
|
|
146
|
-
* @returns {boolean}
|
|
144
|
+
* Checks if an image cache entry exists.
|
|
145
|
+
* @param {string} key - The unique key for the cache entry.
|
|
146
|
+
* @returns {boolean} True if the entry exists, false otherwise.
|
|
147
147
|
*/
|
|
148
148
|
checkImageKey(key: string): boolean;
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
151
|
-
* @param {string} key -
|
|
152
|
-
* @returns {boolean}
|
|
150
|
+
* Checks if a texture cache entry exists.
|
|
151
|
+
* @param {string} key - The unique key for the cache entry.
|
|
152
|
+
* @returns {boolean} True if the entry exists, false otherwise.
|
|
153
153
|
*/
|
|
154
154
|
checkTextureKey(key: string): boolean;
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
157
|
-
* @param {string} key -
|
|
158
|
-
* @returns {boolean}
|
|
156
|
+
* Checks if a sound cache entry exists.
|
|
157
|
+
* @param {string} key - The unique key for the cache entry.
|
|
158
|
+
* @returns {boolean} True if the entry exists, false otherwise.
|
|
159
159
|
*/
|
|
160
160
|
checkSoundKey(key: string): boolean;
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
163
|
-
* @param {string} key -
|
|
164
|
-
* @returns {boolean}
|
|
162
|
+
* Checks if a text cache entry exists.
|
|
163
|
+
* @param {string} key - The unique key for the cache entry.
|
|
164
|
+
* @returns {boolean} True if the entry exists, false otherwise.
|
|
165
165
|
*/
|
|
166
166
|
checkTextKey(key: string): boolean;
|
|
167
167
|
/**
|
|
168
|
-
*
|
|
169
|
-
* @param {string} key -
|
|
170
|
-
* @returns {boolean}
|
|
168
|
+
* Checks if a bitmap data cache entry exists.
|
|
169
|
+
* @param {string} key - The unique key for the cache entry.
|
|
170
|
+
* @returns {boolean} True if the entry exists, false otherwise.
|
|
171
171
|
*/
|
|
172
172
|
checkBitmapDataKey(key: string): boolean;
|
|
173
173
|
/**
|
|
174
|
-
*
|
|
175
|
-
* @param {string} key -
|
|
176
|
-
* @returns {boolean}
|
|
174
|
+
* Checks if a bitmap font cache entry exists.
|
|
175
|
+
* @param {string} key - The unique key for the cache entry.
|
|
176
|
+
* @returns {boolean} True if the entry exists, false otherwise.
|
|
177
177
|
*/
|
|
178
178
|
checkBitmapFontKey(key: string): boolean;
|
|
179
179
|
/**
|
|
180
|
-
*
|
|
181
|
-
* @param {string} key -
|
|
182
|
-
* @returns {boolean}
|
|
180
|
+
* Checks if a JSON cache entry exists.
|
|
181
|
+
* @param {string} key - The unique key for the cache entry.
|
|
182
|
+
* @returns {boolean} True if the entry exists, false otherwise.
|
|
183
183
|
*/
|
|
184
184
|
checkJSONKey(key: string): boolean;
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
187
|
-
* @param {string} key -
|
|
188
|
-
* @returns {boolean}
|
|
186
|
+
* Checks if an XML cache entry exists.
|
|
187
|
+
* @param {string} key - The unique key for the cache entry.
|
|
188
|
+
* @returns {boolean} True if the entry exists, false otherwise.
|
|
189
189
|
*/
|
|
190
190
|
checkXMLKey(key: string): boolean;
|
|
191
191
|
/**
|
|
@@ -266,144 +266,144 @@ export class Cache {
|
|
|
266
266
|
*/
|
|
267
267
|
getRenderTexture(key: string): import("../display/webgl/render_texture.js").RenderTexture;
|
|
268
268
|
/**
|
|
269
|
-
*
|
|
270
|
-
* @param {string} key -
|
|
271
|
-
* @param {number} cache -
|
|
272
|
-
* @returns {BaseTexture}
|
|
269
|
+
* Gets the base texture of a cache entry.
|
|
270
|
+
* @param {string} key - The unique key for the cache entry.
|
|
271
|
+
* @param {number} cache - The cache type (CANVAS, IMAGE, etc.).
|
|
272
|
+
* @returns {BaseTexture} The base texture.
|
|
273
273
|
*/
|
|
274
274
|
getBaseTexture(key: string, cache?: number): BaseTexture;
|
|
275
275
|
/**
|
|
276
|
-
*
|
|
277
|
-
* @param {string} key -
|
|
278
|
-
* @param {number} cache -
|
|
279
|
-
* @returns {Frame}
|
|
276
|
+
* Gets a frame from the cache.
|
|
277
|
+
* @param {string} key - The unique key for the cache entry.
|
|
278
|
+
* @param {number} cache - The cache type (CANVAS, IMAGE, etc.).
|
|
279
|
+
* @returns {Frame} The frame.
|
|
280
280
|
*/
|
|
281
281
|
getFrame(key: string, cache?: number): Frame;
|
|
282
282
|
/**
|
|
283
|
-
*
|
|
284
|
-
* @param {string} key -
|
|
285
|
-
* @param {number} cache -
|
|
286
|
-
* @returns {number}
|
|
283
|
+
* Gets the frame count of a cache entry.
|
|
284
|
+
* @param {string} key - The unique key for the cache entry.
|
|
285
|
+
* @param {number} cache - The cache type (CANVAS, IMAGE, etc.).
|
|
286
|
+
* @returns {number} The number of frames.
|
|
287
287
|
*/
|
|
288
288
|
getFrameCount(key: string, cache?: number): number;
|
|
289
289
|
/**
|
|
290
|
-
*
|
|
291
|
-
* @param {string} key -
|
|
292
|
-
* @param {number} cache -
|
|
293
|
-
* @returns {FrameData}
|
|
290
|
+
* Gets the frame data of a cache entry.
|
|
291
|
+
* @param {string} key - The unique key for the cache entry.
|
|
292
|
+
* @param {number} cache - The cache type (CANVAS, IMAGE, etc.).
|
|
293
|
+
* @returns {FrameData} The frame data.
|
|
294
294
|
*/
|
|
295
295
|
getFrameData(key: string, cache?: number): FrameData;
|
|
296
296
|
/**
|
|
297
|
-
*
|
|
298
|
-
* @param {string} key -
|
|
299
|
-
* @param {number} cache -
|
|
300
|
-
* @returns {boolean}
|
|
297
|
+
* Checks if a cache entry has frame data.
|
|
298
|
+
* @param {string} key - The unique key for the cache entry.
|
|
299
|
+
* @param {number} cache - The cache type (CANVAS, IMAGE, etc.).
|
|
300
|
+
* @returns {boolean} True if the entry has frame data, false otherwise.
|
|
301
301
|
*/
|
|
302
302
|
hasFrameData(key: string, cache?: number): boolean;
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
305
|
-
* @param {string} key -
|
|
306
|
-
* @param {FrameData} frameData -
|
|
307
|
-
* @param {number} cache -
|
|
304
|
+
* Updates the frame data of a cache entry.
|
|
305
|
+
* @param {string} key - The unique key for the cache entry.
|
|
306
|
+
* @param {FrameData} frameData - The new frame data.
|
|
307
|
+
* @param {number} cache - The cache type (CANVAS, IMAGE, etc.).
|
|
308
308
|
*/
|
|
309
309
|
updateFrameData(key: string, frameData: FrameData, cache?: number): void;
|
|
310
310
|
/**
|
|
311
|
-
*
|
|
312
|
-
* @param {string} key -
|
|
313
|
-
* @param {number} index -
|
|
314
|
-
* @param {number} cache -
|
|
315
|
-
* @returns {Frame}
|
|
311
|
+
* Gets a frame by index from the cache.
|
|
312
|
+
* @param {string} key - The unique key for the cache entry.
|
|
313
|
+
* @param {number} index - The index of the frame to get.
|
|
314
|
+
* @param {number} cache - The cache type (CANVAS, IMAGE, etc.).
|
|
315
|
+
* @returns {Frame} The frame at the specified index.
|
|
316
316
|
*/
|
|
317
317
|
getFrameByIndex(key: string, index: number, cache?: number): Frame;
|
|
318
318
|
/**
|
|
319
|
-
*
|
|
320
|
-
* @param {string} key -
|
|
321
|
-
* @param {string} name -
|
|
322
|
-
* @param {number} cache -
|
|
323
|
-
* @returns {Frame}
|
|
319
|
+
* Gets a frame by name from the cache.
|
|
320
|
+
* @param {string} key - The unique key for the cache entry.
|
|
321
|
+
* @param {string} name - The name of the frame to get.
|
|
322
|
+
* @param {number} cache - The cache type (CANVAS, IMAGE, etc.).
|
|
323
|
+
* @returns {Frame} The frame with the specified name.
|
|
324
324
|
*/
|
|
325
325
|
getFrameByName(key: string, name: string, cache?: number): Frame;
|
|
326
326
|
/**
|
|
327
|
-
*
|
|
328
|
-
* @param {string} url -
|
|
329
|
-
* @returns {string}
|
|
327
|
+
* Gets the resolved URL from cache.
|
|
328
|
+
* @param {string} url - The original URL to resolve.
|
|
329
|
+
* @returns {string} The resolved URL or null if not found.
|
|
330
330
|
*/
|
|
331
331
|
getURL(url: string): string;
|
|
332
332
|
/**
|
|
333
|
-
*
|
|
334
|
-
* @param {object} cache -
|
|
335
|
-
* @returns {string[]}
|
|
333
|
+
* Gets all keys from a cache type.
|
|
334
|
+
* @param {object} cache - The cache type (CANVAS, IMAGE, etc.).
|
|
335
|
+
* @returns {string[]} An array of cache keys.
|
|
336
336
|
*/
|
|
337
337
|
getKeys(cache?: object): string[];
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
340
|
-
* @param {string} key -
|
|
339
|
+
* Removes a canvas cache entry.
|
|
340
|
+
* @param {string} key - The unique key for the cache entry to remove.
|
|
341
341
|
*/
|
|
342
342
|
removeCanvas(key: string): void;
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
345
|
-
* @param {string} key -
|
|
346
|
-
* @param {boolean} destroyBaseTexture -
|
|
344
|
+
* Removes an image cache entry.
|
|
345
|
+
* @param {string} key - The unique key for the cache entry to remove.
|
|
346
|
+
* @param {boolean} destroyBaseTexture - Whether to destroy the base texture (default: true).
|
|
347
347
|
*/
|
|
348
348
|
removeImage(key: string, destroyBaseTexture?: boolean): void;
|
|
349
349
|
/**
|
|
350
|
-
*
|
|
351
|
-
* @param {string} key -
|
|
350
|
+
* Removes a sound cache entry.
|
|
351
|
+
* @param {string} key - The unique key for the cache entry to remove.
|
|
352
352
|
*/
|
|
353
353
|
removeSound(key: string): void;
|
|
354
354
|
/**
|
|
355
|
-
*
|
|
356
|
-
* @param {string} key -
|
|
355
|
+
* Removes a text cache entry.
|
|
356
|
+
* @param {string} key - The unique key for the cache entry to remove.
|
|
357
357
|
*/
|
|
358
358
|
removeText(key: string): void;
|
|
359
359
|
/**
|
|
360
|
-
*
|
|
361
|
-
* @param {string} key -
|
|
360
|
+
* Removes a bitmap data cache entry.
|
|
361
|
+
* @param {string} key - The unique key for the cache entry to remove.
|
|
362
362
|
*/
|
|
363
363
|
removeBitmapData(key: string): void;
|
|
364
364
|
/**
|
|
365
|
-
*
|
|
366
|
-
* @param {string} key -
|
|
365
|
+
* Removes a bitmap font cache entry.
|
|
366
|
+
* @param {string} key - The unique key for the cache entry to remove.
|
|
367
367
|
*/
|
|
368
368
|
removeBitmapFont(key: string): void;
|
|
369
369
|
/**
|
|
370
|
-
*
|
|
371
|
-
* @param {string} key -
|
|
370
|
+
* Removes a JSON cache entry.
|
|
371
|
+
* @param {string} key - The unique key for the cache entry to remove.
|
|
372
372
|
*/
|
|
373
373
|
removeJSON(key: string): void;
|
|
374
374
|
/**
|
|
375
|
-
*
|
|
376
|
-
* @param {string} key -
|
|
375
|
+
* Removes an XML cache entry.
|
|
376
|
+
* @param {string} key - The unique key for the cache entry to remove.
|
|
377
377
|
*/
|
|
378
378
|
removeXML(key: string): void;
|
|
379
379
|
/**
|
|
380
|
-
*
|
|
381
|
-
* @param {string} key -
|
|
380
|
+
* Removes a render texture cache entry.
|
|
381
|
+
* @param {string} key - The unique key for the cache entry to remove.
|
|
382
382
|
*/
|
|
383
383
|
removeRenderTexture(key: string): void;
|
|
384
384
|
/**
|
|
385
|
-
*
|
|
386
|
-
* @param {string} key -
|
|
385
|
+
* Removes a sprite sheet cache entry.
|
|
386
|
+
* @param {string} key - The unique key for the cache entry to remove.
|
|
387
387
|
*/
|
|
388
388
|
removeSpriteSheet(key: string): void;
|
|
389
389
|
/**
|
|
390
|
-
*
|
|
391
|
-
* @param {string} key -
|
|
390
|
+
* Removes a texture atlas cache entry.
|
|
391
|
+
* @param {string} key - The unique key for the cache entry to remove.
|
|
392
392
|
*/
|
|
393
393
|
removeTextureAtlas(key: string): void;
|
|
394
394
|
/**
|
|
395
|
-
*
|
|
395
|
+
* Clears all GL textures from the cache.
|
|
396
396
|
*/
|
|
397
397
|
clearGLTextures(): void;
|
|
398
398
|
/**
|
|
399
|
-
*
|
|
400
|
-
* @param {string} url -
|
|
401
|
-
* @param {object} data -
|
|
402
|
-
* @returns {string}
|
|
399
|
+
* Resolves a URL and stores it in the cache.
|
|
400
|
+
* @param {string} url - The URL to resolve.
|
|
401
|
+
* @param {object} data - The data to associate with the resolved URL.
|
|
402
|
+
* @returns {string} The resolved URL or null if not enabled.
|
|
403
403
|
*/
|
|
404
404
|
_resolveURL(url: string, data: object): string;
|
|
405
405
|
/**
|
|
406
|
-
*
|
|
406
|
+
* Destroys the cache and cleans up resources.
|
|
407
407
|
*/
|
|
408
408
|
destroy(): void;
|
|
409
409
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/device.js"],"names":[],"mappings":"AAAA;
|
|
1
|
+
{"version":3,"file":"device.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/device.js"],"names":[],"mappings":"AAAA;IAMI;;OAEG;IACH,SAFU,OAAO,CAEG;IACpB;;OAEG;IACH,KAFU,OAAO,CAED;IAChB;;OAEG;IACH,SAFU,OAAO,CAEG;IACpB;;OAEG;IACH,UAFU,OAAO,CAEI;IACrB;;OAEG;IACH,OAFU,OAAO,CAEC;IAClB;;OAEG;IACH,OAFU,OAAO,CAEC;IAClB;;OAEG;IACH,SAFU,OAAO,CAEG;IACpB;;OAEG;IACH,cAFU,OAAO,CAEQ;IACzB;;OAEG;IACH,QAFU,OAAO,CAEE;IACnB;;OAEG;IACH,OAFU,OAAO,CAEC;IAClB;;OAEG;IACH,WAFU,OAAO,CAEK;IACtB,gBAAsB;IACtB;;OAEG;IACH,QAFU,OAAO,CAEE;IACnB;;OAEG;IACH,SAFU,OAAO,CAEG;IACpB;;OAEG;IACH,MAFU,OAAO,CAEA;IACjB;;OAEG;IACH,QAFU,OAAO,CAEE;IACnB;;OAEG;IACH,YAFU,OAAO,CAEM;IACvB;;OAEG;IACH,mBAFU,MAAM,CAEW;IAC3B;;OAEG;IACH,kBAFU,MAAM,CAEU;IAC1B;;OAEG;IACH,oBAFU,OAAO,CAEc;IAC/B;;OAEG;IACH,eAFU,OAAO,CAES;IAC1B;;OAEG;IACH,uBAFU;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAC,CAEH;IAC/B;;OAEG;IACH,uBAFU;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAC,CAEH;CAElC"}
|
|
@@ -11,84 +11,91 @@ export class DOM {
|
|
|
11
11
|
scrollXProvider: () => number;
|
|
12
12
|
scrollYProvider: () => number;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
15
|
-
* @param {HTMLCanvasElement} element -
|
|
16
|
-
* @param {Point} point -
|
|
17
|
-
* @returns {Point}
|
|
14
|
+
* Gets the offset position of an element relative to the document.
|
|
15
|
+
* @param {HTMLCanvasElement} element - The element to get the offset for.
|
|
16
|
+
* @param {Point} point - Optional Point object to store the result.
|
|
17
|
+
* @returns {Point} The offset position of the element.
|
|
18
18
|
*/
|
|
19
19
|
getOffset(element: HTMLCanvasElement, point?: Point): Point;
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
22
|
-
* @param {HTMLCanvasElement} element -
|
|
23
|
-
* @param {number} cushion -
|
|
24
|
-
* @returns {boolean}
|
|
21
|
+
* Gets the bounding rectangle of an element with optional cushion.
|
|
22
|
+
* @param {HTMLCanvasElement} element - The element to get bounds for.
|
|
23
|
+
* @param {number} cushion - Optional padding to add around the element.
|
|
24
|
+
* @returns {boolean} True if bounds were successfully retrieved, false otherwise.
|
|
25
25
|
*/
|
|
26
26
|
getBounds(element: HTMLCanvasElement, cushion?: number): boolean;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
29
|
-
* @param {DOMRect} coords -
|
|
30
|
-
* @param {number} cushion -
|
|
31
|
-
* @returns {
|
|
28
|
+
* Calibrates DOM rectangle coordinates with optional cushion.
|
|
29
|
+
* @param {DOMRect} coords - The DOM rectangle coordinates to calibrate.
|
|
30
|
+
* @param {number} cushion - Optional padding to add around the rectangle.
|
|
31
|
+
* @returns {{width: number, height: number, left: number, right: number, top: number, bottom: number}} The calibrated rectangle.
|
|
32
32
|
*/
|
|
33
|
-
calibrate(coords: DOMRect, cushion?: number):
|
|
33
|
+
calibrate(coords: DOMRect, cushion?: number): {
|
|
34
|
+
width: number;
|
|
35
|
+
height: number;
|
|
36
|
+
left: number;
|
|
37
|
+
right: number;
|
|
38
|
+
top: number;
|
|
39
|
+
bottom: number;
|
|
40
|
+
};
|
|
34
41
|
/**
|
|
35
|
-
*
|
|
36
|
-
* @param {string} primaryFallback -
|
|
37
|
-
* @returns {string}
|
|
42
|
+
* Gets the screen orientation.
|
|
43
|
+
* @param {string} primaryFallback - The fallback method to use if screen orientation API is not available.
|
|
44
|
+
* @returns {string} The screen orientation ('portrait-primary', 'landscape-primary', etc.).
|
|
38
45
|
*/
|
|
39
46
|
getScreenOrientation(primaryFallback: string): string;
|
|
40
47
|
/**
|
|
41
|
-
*
|
|
42
|
-
* @returns {number}
|
|
48
|
+
* Gets the horizontal scroll position of the window.
|
|
49
|
+
* @returns {number} The horizontal scroll position in pixels.
|
|
43
50
|
*/
|
|
44
51
|
get scrollX(): number;
|
|
45
52
|
/**
|
|
46
|
-
*
|
|
47
|
-
* @returns {number}
|
|
53
|
+
* Gets the vertical scroll position of the window.
|
|
54
|
+
* @returns {number} The vertical scroll position in pixels.
|
|
48
55
|
*/
|
|
49
56
|
get scrollY(): number;
|
|
50
57
|
/**
|
|
51
|
-
*
|
|
52
|
-
* @returns {number}
|
|
58
|
+
* Gets the width of the window's client area.
|
|
59
|
+
* @returns {number} The width of the client area in pixels.
|
|
53
60
|
*/
|
|
54
61
|
get clientWidth(): number;
|
|
55
62
|
/**
|
|
56
|
-
*
|
|
57
|
-
* @returns {number}
|
|
63
|
+
* Gets the height of the window's client area.
|
|
64
|
+
* @returns {number} The height of the client area in pixels.
|
|
58
65
|
*/
|
|
59
66
|
get clientHeight(): number;
|
|
60
67
|
}
|
|
61
68
|
declare class VisualBoundsDesktopRectangle {
|
|
62
69
|
/**
|
|
63
|
-
*
|
|
64
|
-
* @returns {number}
|
|
70
|
+
* Gets the horizontal scroll position of the window.
|
|
71
|
+
* @returns {number} The horizontal scroll position in pixels.
|
|
65
72
|
*/
|
|
66
73
|
get x(): number;
|
|
67
74
|
/**
|
|
68
|
-
*
|
|
69
|
-
* @returns {number}
|
|
75
|
+
* Gets the vertical scroll position of the window.
|
|
76
|
+
* @returns {number} The vertical scroll position in pixels.
|
|
70
77
|
*/
|
|
71
78
|
get y(): number;
|
|
72
79
|
/**
|
|
73
|
-
*
|
|
74
|
-
* @returns {number}
|
|
80
|
+
* Gets the width of the window.
|
|
81
|
+
* @returns {number} The width of the window in pixels.
|
|
75
82
|
*/
|
|
76
83
|
get width(): number;
|
|
77
84
|
/**
|
|
78
|
-
*
|
|
79
|
-
* @returns {number}
|
|
85
|
+
* Gets the height of the window.
|
|
86
|
+
* @returns {number} The height of the window in pixels.
|
|
80
87
|
*/
|
|
81
88
|
get height(): number;
|
|
82
89
|
}
|
|
83
90
|
declare class VisualBoundsRectangle {
|
|
84
91
|
/**
|
|
85
|
-
*
|
|
86
|
-
* @returns {number}
|
|
92
|
+
* Gets the horizontal scroll position of the document.
|
|
93
|
+
* @returns {number} The horizontal scroll position in pixels.
|
|
87
94
|
*/
|
|
88
95
|
get x(): number;
|
|
89
96
|
/**
|
|
90
|
-
*
|
|
91
|
-
* @returns {number}
|
|
97
|
+
* Gets the vertical scroll position of the document.
|
|
98
|
+
* @returns {number} The vertical scroll position in pixels.
|
|
92
99
|
*/
|
|
93
100
|
get y(): number;
|
|
94
101
|
/**
|
|
@@ -104,23 +111,23 @@ declare class VisualBoundsRectangle {
|
|
|
104
111
|
}
|
|
105
112
|
declare class LayoutBoundsDesktopRectangle {
|
|
106
113
|
/**
|
|
107
|
-
*
|
|
108
|
-
* @returns {number}
|
|
114
|
+
* Gets the horizontal scroll position of the window.
|
|
115
|
+
* @returns {number} The horizontal scroll position in pixels.
|
|
109
116
|
*/
|
|
110
117
|
get x(): number;
|
|
111
118
|
/**
|
|
112
|
-
*
|
|
113
|
-
* @returns {number}
|
|
119
|
+
* Gets the vertical scroll position of the window.
|
|
120
|
+
* @returns {number} The vertical scroll position in pixels.
|
|
114
121
|
*/
|
|
115
122
|
get y(): number;
|
|
116
123
|
/**
|
|
117
|
-
*
|
|
118
|
-
* @returns {number}
|
|
124
|
+
* Gets the width of the window.
|
|
125
|
+
* @returns {number} The width of the window in pixels.
|
|
119
126
|
*/
|
|
120
127
|
get width(): number;
|
|
121
128
|
/**
|
|
122
|
-
*
|
|
123
|
-
* @returns {number}
|
|
129
|
+
* Gets the height of the window.
|
|
130
|
+
* @returns {number} The height of the window in pixels.
|
|
124
131
|
*/
|
|
125
132
|
get height(): number;
|
|
126
133
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dom.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/dom.js"],"names":[],"mappings":"AAqLA;IACE;;;OAGG;IACH,oBAFW,OAAO,aAAa,EAAE,MAAM,EActC;IAXC,wBAG6D;IAC7D,mEAA0G;IAC1G,mEAA0G;IAC1G,wCAAmD;IACnD,8BAC0G;IAC1G,8BACyG;IAG3G;;;;;OAKG;IACH,mBAJW,iBAAiB,UACjB,KAAK,GACH,KAAK,CAYjB;IAED;;;;;OAKG;IACH,mBAJW,iBAAiB,YACjB,MAAM,GACJ,OAAO,CAQnB;IAED;;;;;OAKG;IACH,kBAJW,OAAO,YACP,MAAM,GACJ,MAAM,
|
|
1
|
+
{"version":3,"file":"dom.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/dom.js"],"names":[],"mappings":"AAqLA;IACE;;;OAGG;IACH,oBAFW,OAAO,aAAa,EAAE,MAAM,EActC;IAXC,wBAG6D;IAC7D,mEAA0G;IAC1G,mEAA0G;IAC1G,wCAAmD;IACnD,8BAC0G;IAC1G,8BACyG;IAG3G;;;;;OAKG;IACH,mBAJW,iBAAiB,UACjB,KAAK,GACH,KAAK,CAYjB;IAED;;;;;OAKG;IACH,mBAJW,iBAAiB,YACjB,MAAM,GACJ,OAAO,CAQnB;IAED;;;;;OAKG;IACH,kBAJW,OAAO,YACP,MAAM,GACJ;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAC,CAcrG;IAED;;;;OAIG;IACH,sCAHW,MAAM,GACJ,MAAM,CA8BlB;IAED;;;OAGG;IACH,eAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,eAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,mBAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,oBAFa,MAAM,CAIlB;CACF;AA5TD;IACE;;;OAGG;IACH,SAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,SAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,aAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,cAFa,MAAM,CAIlB;CACF;AAoCD;IACE;;;OAGG;IACH,SAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,SAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,aAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,cAFa,MAAM,CAIlB;CACF;AAlED;IACE;;;OAGG;IACH,SAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,SAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,aAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,cAFa,MAAM,CAIlB;CACF;AAoCD;IACE;;;OAGG;IACH,SAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,SAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,aAFa,MAAM,CAMlB;IAED;;;OAGG;IACH,cAFa,MAAM,CAMlB;CACF;AAKD;IACE;;;OAGG;IACH,SAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,SAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,aAFa,MAAM,CAKlB;IAED;;;OAGG;IACH,cAFa,MAAM,CAKlB;CACF;sBAnLqB,kBAAkB"}
|