1
1
import Phaser from "phaser" ;
2
- const chars = `ABCDEFGHIJKLMNOPQRSTUVWXYZ 12345abcdefghijklmnopqrstuvwxyz 67890{}[]()<>$*-+=/#_%^@\\&|~?'" !,.;:` ;
3
- const charsPerRow = 32 ;
4
- const height = 13 ;
5
- const image = "proggy_clean_inv" ;
6
- const offset = { "x" : 5 , "y" : 24 } ;
7
- const spacing = { "x" : 0 , "y" : 0 } ;
8
- const width = 7 ;
9
2
const fontData = {
10
- chars,
11
- charsPerRow,
12
- height,
13
- image,
14
- offset,
15
- spacing,
16
- width
3
+ chars : `ABCDEFGHIJKLMNOPQRSTUVWXYZ 12345abcdefghijklmnopqrstuvwxyz 67890{}[]()<>$*-+=/#_%^@\\&|~?'" !,.;:` ,
4
+ charsPerRow : 32 ,
5
+ height : 13 ,
6
+ image : "proggy_clean_inv" ,
7
+ offset : { x : 5 , y : 24 } ,
8
+ spacing : { x : 0 , y : 0 } ,
9
+ width : 7
17
10
} ;
18
11
const fontImage = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQ4AAABKCAMAAAB90UpZAAABEVBMVEUAAADUUP1/f398e3x+fn58fHx8fH3///97e3t6e3t5eXl3d3d2dXV2dXZzc3NzdHNxcnFxcXFvb29sbGxtbW1qamprampoaGhmZWVlZmVjY2JjY2NgX2BgYGBeXV5dXl1aWlpYWFdYV1dVVFVUVFVSUVJSUlJPT05PTk9MTEtMTExISUlISUhGRkZGRkVDQ0NCQ0M/QD9AP0A9PD06OTo6Ojk2Njc2Nzc0NDQ0MzMwMDEwMDAuLi0tLS4rKysqKisnKCcnJyckJSQlJSUiIiIfHx8gHx8cHB0ZGRkaGhoXGBcXFxcUFRUVFRQTEhISEhMQEBAODg4ODQ4MCwsMDAwKCQoKCgoICAgGBgYGBQYFBATgX/oDAAADz0lEQVR4AeyVB1LEMAxFRRW9d+5/T8gfj/chNOuEXvRIpEiORfa72QdRFEVRbEx0Jx+zU8JkBbN8VVadf7McMpkzOlmGdCwzafJXZgfkaBOAjbkc6P8X5BhMEpg5s0Pmr8iR7R1BDjTCUcAp+R8piqIoNkGxkqPYepZjRfGJcpQcJUfJUXKUHCVHsb2NoNjZ7Y/uMnJ66JHLN9fbzGSQ60lnweaT/4BI3kXrjrd6TUTCOv2juxP46lns7Qc5eDcrZ92hzZzpfqdy4NLNKBSLcvhrOeh6HsXYeQEHB3LZ58XBTlwiB1KOPxlInESoyja3cGVqsADrLJXj8DDIMRGKYs3wY0Q6aZbLYe65HKhgno4OA84K/iKby9GxNaCDj2aHe7ZYsHgpcDNBW0Sc7zTs6mtWSpbM59GQk1PW84EcSI4XSy7HmtnsmRxh90FxgCTkEMvkODtP5fiQrVQWI+toG2+ljPJXCJPOR0ZjLi6CHBPpQYuiyUErG6pEOWRYhfKzAKNcDgx9j7qzVQujOVxe2Tfi9sO4vkFQ3N4iKO7uERQPj6PVzAx3JY8PL06ZJ/bMArl2GIaiHjyL+FBm7isz739HZYiuNB67gaIfhpToxJJ1Hb4mjr//KnCQ2VMZDZxbIcnIoj9F7f/YN8Ch9VfwU9jGx20g4MgSbaO5pIK4OeDbPQMrSU+kjpBE66hsVxptcExMWsbkABMW41qkywJZm7hSNSkONRTqeysBMVQoxzE1bUxan/RWlOAgleKwHFAcykLrUo1iX94DtThmZkMBhr/hZTioxWFcEhyqaNXzGEcbzTI3LziGDhb1SbwzihaDKsCBN1SHY2FRgiWTShM+rGJF63HECVlM+n0C/EatSUGEWTImy9rScmcDItWH8umU38pqNxcEpG+AY229bv+M6wPhoE8BsLHZWPhto5Gt+9FspDPcnfdv9H+ZEKCXkNna1nPTXJBF3h3JqAtYxhAJYnyUxDi6YrOz2xYHBcGsLujUui8cCHsOfePY2y/AYZYkrIhR4XEAQIjjyRweR1XIaaMe1cFhPQ7RsBj37I4A7oY2FuRJmz5b9Q/Ie8ZxdOzmryCLAyT5inqXmjEX7sQ4VL5KzdlnKXJy2q53GKEV9w5ZcNnDuJyIZdpAOM7OW+aOlIgvvaRzqF2Po66hP7WoLi5bjiwApReJrETNmHm0+t7RHsfVVf91B4ovS5AWIUDbALq+aVGV9t4YmEa6az++CQCGgQAGht2nd1f+QLwKhG67CETzgmjdEO0HovNCdN+InhfR9yNKGVEpiGpD1PskGtJlPAcJ+yNWAAAAAElFTkSuQmCC" ;
19
12
const twoSpaces = / { 2 , } / g;
@@ -73,30 +66,29 @@ const WalkDisplayListObj = (obj, output = [], currentDepth = 0, maxDepth = 10, m
73
66
const { POSITIVE_INFINITY } = Number ;
74
67
const TextureEvents = Phaser . Textures . Events ;
75
68
const CacheEvents = Phaser . Cache . Events ;
69
+ const KeyboardEvents = Phaser . Input . Keyboard . Events ;
76
70
const SceneEvents = Phaser . Scenes . Events ;
71
+ const { KeyCodes } = Phaser . Input . Keyboard ;
77
72
const ParseRetroFont = Phaser . GameObjects . RetroFont . Parse ;
78
73
const fontTextureKey = fontData . image ;
79
74
const fontKey = fontData . image ;
80
- let hasPendingFontImage = false ;
81
75
class DisplayListWatcher extends Phaser . Plugins . ScenePlugin {
82
76
constructor ( scene , pluginManager ) {
83
77
super ( scene , pluginManager ) ;
84
78
this . camera = null ;
85
79
this . controls = null ;
86
- this . hideKey = null ;
87
80
this . modKey = null ;
88
- this . resetKey = null ;
89
- this . showKey = null ;
90
81
this . text = null ;
91
- this . toggleKey = null ;
92
82
}
93
83
boot ( ) {
94
84
const { cache, events, settings, textures } = this . systems ;
95
- if ( ! hasPendingFontImage && ! textures . exists ( fontTextureKey ) ) {
96
- hasPendingFontImage = true ;
97
- textures . addBase64 ( fontKey , fontImage ) ;
85
+ if ( ! textures . exists ( fontTextureKey ) ) {
86
+ this . addImage ( fontKey , fontImage ) ;
98
87
}
99
88
textures . once ( `${ TextureEvents . ADD_KEY } ${ fontTextureKey } ` , ( ) => {
89
+ if ( cache . bitmapFont . has ( fontKey ) ) {
90
+ return ;
91
+ }
100
92
cache . bitmapFont . add ( fontKey , ParseRetroFont ( this . scene , fontData ) ) ;
101
93
} ) ;
102
94
if ( settings . key === "__SYSTEM" ) {
@@ -109,77 +101,55 @@ class DisplayListWatcher extends Phaser.Plugins.ScenePlugin {
109
101
this . start ( ) ;
110
102
}
111
103
}
112
- startIfFontWasAdded ( cache , key ) {
104
+ // For Phaser v3.87. Avoids errors from duplicate keys.
105
+ addImage ( key , url ) {
106
+ const { textures } = this . systems ;
107
+ if ( textures . exists ( key ) ) {
108
+ }
109
+ const image = new Image ( ) ;
110
+ image . onload = function onload ( ) {
111
+ image . onload = null ;
112
+ if ( textures . exists ( key ) ) {
113
+ return ;
114
+ }
115
+ textures . addImage ( key , image ) ;
116
+ } ;
117
+ image . src = url ;
118
+ }
119
+ onFontCacheAdded ( cache , key ) {
113
120
if ( key !== fontKey ) {
114
121
return ;
115
122
}
116
- cache . events . off ( CacheEvents . ADD , this . startIfFontWasAdded , this ) ;
123
+ cache . events . off ( CacheEvents . ADD , this . onFontCacheAdded , this ) ;
117
124
this . start ( ) ;
118
125
}
119
126
start ( ) {
120
- const { cache, events, make, renderer } = this . systems ;
127
+ const { cache, events, input , make, renderer } = this . systems ;
121
128
const fontCache = cache . bitmapFont ;
122
- const { keyboard } = this . systems . input ;
123
- const { width : width2 , height : height2 } = this . systems . scale ;
129
+ const keyboard = input == null ? void 0 : input . keyboard ;
130
+ const { width, height } = this . systems . scale ;
124
131
if ( ! fontCache . exists ( fontKey ) ) {
125
- fontCache . events . on ( CacheEvents . ADD , this . startIfFontWasAdded , this ) ;
132
+ fontCache . events . on ( CacheEvents . ADD , this . onFontCacheAdded , this ) ;
126
133
return ;
127
134
}
128
- events . on ( SceneEvents . UPDATE , this . update , this ) ;
129
135
events . on ( SceneEvents . RENDER , this . render , this ) ;
130
- this . camera = new Phaser . Cameras . Scene2D . Camera (
131
- 0 ,
132
- 0 ,
133
- width2 ,
134
- height2
135
- ) . setBounds ( 0 , 0 , POSITIVE_INFINITY , POSITIVE_INFINITY ) ;
136
- this . controls = new Phaser . Cameras . Controls . FixedKeyControl ( {
137
- camera : this . camera ,
138
- up : keyboard . addKey ( "UP" ) ,
139
- down : keyboard . addKey ( "DOWN" ) ,
140
- left : keyboard . addKey ( "LEFT" ) ,
141
- right : keyboard . addKey ( "RIGHT" ) ,
142
- speed : 1
143
- } ) ;
144
- this . modKey = keyboard . addKey ( "SHIFT" ) ;
145
- this . toggleKey = keyboard . addKey ( "Z" ) ;
146
- this . showKey = keyboard . addKey ( "X" ) ;
147
- this . hideKey = keyboard . addKey ( "C" ) ;
148
- this . resetKey = keyboard . addKey ( "V" ) ;
149
- this . toggleKey . on ( "down" , ( _key , event ) => {
150
- if ( event . shiftKey ) {
151
- this . toggle ( ) ;
152
- }
153
- } ) ;
154
- this . showKey . on ( "down" , ( _key , event ) => {
155
- if ( event . shiftKey ) {
156
- this . show ( ) ;
157
- }
158
- } ) ;
159
- this . hideKey . on ( "down" , ( _key , event ) => {
160
- if ( event . shiftKey ) {
161
- this . hide ( ) ;
162
- }
163
- } ) ;
164
- this . resetKey . on ( "down" , ( _key , event ) => {
165
- if ( event . shiftKey ) {
166
- this . resetCamera ( ) ;
167
- }
168
- } ) ;
136
+ this . camera = new Phaser . Cameras . Scene2D . Camera ( 0 , 0 , width , height ) . setBounds ( 0 , 0 , POSITIVE_INFINITY , POSITIVE_INFINITY ) . setRoundPixels ( true ) ;
137
+ if ( keyboard ) {
138
+ events . on ( SceneEvents . UPDATE , this . update , this ) ;
139
+ this . addKeyboardControls ( keyboard ) ;
140
+ }
169
141
this . text = make . bitmapText ( { font : fontKey } , false ) ;
170
142
this . renderText = renderer . type === Phaser . WEBGL ? this . text . renderWebGL : this . text . renderCanvas ;
171
143
}
172
144
stop ( ) {
173
145
const { cache, events, input, settings } = this . systems ;
174
- const { keyboard } = input ;
175
- cache . bitmapFont . events . off ( CacheEvents . ADD , this . startIfFontWasAdded , this ) ;
146
+ const keyboard = input == null ? void 0 : input . keyboard ;
147
+ cache . bitmapFont . events . off ( CacheEvents . ADD , this . onFontCacheAdded , this ) ;
176
148
events . off ( SceneEvents . UPDATE , this . update , this ) ;
177
149
events . off ( SceneEvents . RENDER , this . render , this ) ;
178
- keyboard . removeKey ( this . hideKey , true ) ;
179
- keyboard . removeKey ( this . modKey , true ) ;
180
- keyboard . removeKey ( this . resetKey , true ) ;
181
- keyboard . removeKey ( this . showKey , true ) ;
182
- keyboard . removeKey ( this . toggleKey , true ) ;
150
+ if ( keyboard ) {
151
+ keyboard . off ( KeyboardEvents . ANY_KEY_DOWN , this . onAnyKeyDown , this ) ;
152
+ }
183
153
if ( this . camera ) {
184
154
this . camera . destroy ( ) ;
185
155
}
@@ -195,11 +165,7 @@ class DisplayListWatcher extends Phaser.Plugins.ScenePlugin {
195
165
}
196
166
this . camera = null ;
197
167
this . controls = null ;
198
- this . hideKey = null ;
199
168
this . modKey = null ;
200
- this . resetKey = null ;
201
- this . showKey = null ;
202
- this . toggleKey = null ;
203
169
}
204
170
update ( _time , delta ) {
205
171
if ( this . modKey . isDown ) {
@@ -223,16 +189,36 @@ class DisplayListWatcher extends Phaser.Plugins.ScenePlugin {
223
189
0
224
190
) ;
225
191
this . text . setPosition ( x , y ) . setText ( output ) ;
192
+ this . camera . setBounds ( 0 , 0 , POSITIVE_INFINITY , this . text . height ) ;
226
193
this . camera . preRender ( ) ;
227
194
this . renderText ( renderer , this . text , this . camera ) ;
228
195
}
229
196
destroy ( ) {
230
197
this . stop ( ) ;
198
+ this . systems . events . off ( SceneEvents . START , this . start , this ) . off ( SceneEvents . SHUTDOWN , this . stop , this ) . off ( SceneEvents . DESTROY , this . destroy , this ) ;
231
199
this . pluginManager = null ;
232
200
this . game = null ;
233
201
this . scene = null ;
234
202
this . systems = null ;
235
203
}
204
+ onAnyKeyDown ( event ) {
205
+ if ( ! this . modKey . isDown ) return ;
206
+ const method = this . keyMap [ event . keyCode ] ;
207
+ if ( ! method ) return ;
208
+ method . call ( this ) ;
209
+ }
210
+ addKeyboardControls ( keyboard ) {
211
+ this . controls = new Phaser . Cameras . Controls . FixedKeyControl ( {
212
+ camera : this . camera ,
213
+ up : keyboard . addKey ( KeyCodes . UP ) ,
214
+ down : keyboard . addKey ( KeyCodes . DOWN ) ,
215
+ left : keyboard . addKey ( KeyCodes . LEFT ) ,
216
+ right : keyboard . addKey ( KeyCodes . RIGHT ) ,
217
+ speed : 1
218
+ } ) ;
219
+ this . modKey = keyboard . addKey ( KeyCodes . SHIFT ) ;
220
+ keyboard . on ( KeyboardEvents . ANY_KEY_DOWN , this . onAnyKeyDown , this ) ;
221
+ }
236
222
hide ( ) {
237
223
this . text . visible = false ;
238
224
}
@@ -245,7 +231,30 @@ class DisplayListWatcher extends Phaser.Plugins.ScenePlugin {
245
231
resetCamera ( ) {
246
232
this . camera . setScroll ( 0 , 0 ) ;
247
233
}
234
+ pageUp ( ) {
235
+ this . camera . scrollY -= this . camera . height ;
236
+ }
237
+ pageDown ( ) {
238
+ this . camera . scrollY += this . camera . height ;
239
+ }
240
+ pageStart ( ) {
241
+ this . camera . scrollY = 0 ;
242
+ }
243
+ pageEnd ( ) {
244
+ this . camera . scrollY = POSITIVE_INFINITY ;
245
+ }
248
246
}
247
+ const proto = DisplayListWatcher . prototype ;
248
+ proto . keyMap = {
249
+ [ KeyCodes . C ] : proto . hide ,
250
+ [ KeyCodes . END ] : proto . pageEnd ,
251
+ [ KeyCodes . HOME ] : proto . pageStart ,
252
+ [ KeyCodes . PAGE_DOWN ] : proto . pageDown ,
253
+ [ KeyCodes . PAGE_UP ] : proto . pageUp ,
254
+ [ KeyCodes . V ] : proto . resetCamera ,
255
+ [ KeyCodes . X ] : proto . show ,
256
+ [ KeyCodes . Z ] : proto . toggle
257
+ } ;
249
258
export {
250
259
DisplayListWatcher as default
251
260
} ;
0 commit comments