forked from hunterlord/phaser-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInputField.ts
473 lines (404 loc) · 16.8 KB
/
InputField.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
module Fabrique {
import Text = Phaser.Text;
export interface InputOptions extends Phaser.PhaserTextStyle {
x?: number;
y?: number;
placeHolder?: string;
fillAlpha?: number;
width?: number;
height?: number;
padding?: number;
borderWidth?: number;
borderColor?: string;
borderRadius?: number;
cursorColor?: string;
placeHolderColor?: string;
type?: InputType;
min?: string;
max?: string;
textAlign?: string;
selectionColor?: string;
zoom?: boolean;
}
export class InputField extends Phaser.Sprite {
private placeHolder:Phaser.Text = null;
private box:Phaser.Graphics = null;
private textMask: TextMask;
private focus:boolean = false;
private cursor:Phaser.Text;
private text:Phaser.Text;
private offscreenText: Phaser.Text;
public value:string = '';
private inputOptions: InputOptions;
private domElement: InputElement;
private selection: SelectionHighlight;
private windowScale: number = 1;
constructor(game:Phaser.Game, x:number, y:number, inputOptions:InputOptions = {}) {
super(game, x, y);
//Parse the options
this.inputOptions = inputOptions;
this.inputOptions.width = inputOptions.width || 150;
this.inputOptions.padding = inputOptions.padding || 0;
this.inputOptions.textAlign = inputOptions.textAlign || 'left';
this.inputOptions.type = inputOptions.type || InputType.text;
this.inputOptions.borderRadius = inputOptions.borderRadius || 0;
this.inputOptions.height = inputOptions.height || 14;
this.inputOptions.fillAlpha = (inputOptions.fillAlpha === undefined) ? 1 : inputOptions.fillAlpha;
this.inputOptions.selectionColor = inputOptions.selectionColor || 'rgba(179, 212, 253, 0.8)';
this.inputOptions.zoom = (!game.device.desktop) ? inputOptions.zoom || false : false;
//create the input box
this.box = new InputBox(this.game, inputOptions);
this.setTexture(this.box.generateTexture());
//create the mask that will be used for the texts
this.textMask = new TextMask(this.game, inputOptions);
this.addChild(this.textMask);
//Create the hidden dom elements
this.domElement = new InputElement(this.game, 'phaser-input-' + (Math.random() * 10000 | 0).toString(), this.inputOptions.type, this.value);
this.domElement.setMax(this.inputOptions.max, this.inputOptions.min);
this.selection = new SelectionHighlight(this.game, this.inputOptions);
this.addChild(this.selection);
if (inputOptions.placeHolder && inputOptions.placeHolder.length > 0) {
this.placeHolder = new Phaser.Text(game, this.inputOptions.padding, this.inputOptions.padding, inputOptions.placeHolder, <Phaser.PhaserTextStyle>{
font: inputOptions.font || '14px Arial',
fontWeight: inputOptions.fontWeight || 'normal',
fill: inputOptions.placeHolderColor || '#bfbebd'
});
this.placeHolder.mask = this.textMask;
this.addChild(this.placeHolder);
}
this.cursor = new Phaser.Text(game, this.inputOptions.padding, this.inputOptions.padding - 2, '|', <Phaser.PhaserTextStyle>{
font: inputOptions.font || '14px Arial',
fontWeight: inputOptions.fontWeight || 'normal',
fill: inputOptions.cursorColor || '#000000'
});
this.cursor.visible = false;
this.addChild(this.cursor);
this.text = new Phaser.Text(game, this.inputOptions.padding, this.inputOptions.padding, '', <Phaser.PhaserTextStyle>{
font: inputOptions.font || '14px Arial',
fontWeight: inputOptions.fontWeight || 'normal',
fill: inputOptions.fill || '#000000'
});
this.text.mask = this.textMask;
this.addChild(this.text);
this.offscreenText = new Phaser.Text(game, this.inputOptions.padding, this.inputOptions.padding, '', <Phaser.PhaserTextStyle>{
font: inputOptions.font || '14px Arial',
fontWeight: inputOptions.fontWeight || 'normal',
fill: inputOptions.fill || '#000000'
});
switch (this.inputOptions.textAlign) {
case 'left':
this.text.anchor.set(0, 0);
this.cursor.x = this.inputOptions.padding + this.getCaretPosition();
break;
case 'center':
this.text.anchor.set(0.5, 0);
this.text.x += this.inputOptions.width / 2;
this.cursor.x = this.inputOptions.padding + this.inputOptions.width / 2 - this.text.width / 2 + this.getCaretPosition();
break;
case 'right':
this.text.anchor.set(1, 0);
this.text.x += this.inputOptions.width;
this.cursor.x = this.inputOptions.padding + this.inputOptions.width;
break;
}
this.inputEnabled = true;
this.input.useHandCursor = true;
this.game.input.onDown.add(this.checkDown, this);
this.domElement.focusOut.add((): void => {
if (Plugins.InputField.KeyboardOpen) {
this.endFocus();
if (this.inputOptions.zoom) {
this.zoomOut();
}
}
});
}
/**
* This is a generic input down handler for the game.
* if the input object is clicked, we gain focus on it and create the dom element
*
* If there was focus on the element previously, but clicked outside of it, the element will loose focus
* and no keyboard events will be registered anymore
*
* @param e Phaser.Pointer
*/
private checkDown(e: Phaser.Pointer): void
{
if (this.input.checkPointerOver(e)) {
if (this.focus) {
this.setCaretOnclick(e);
return;
}
if (null !== this.placeHolder) {
this.placeHolder.visible = false;
}
if (this.inputOptions.zoom && !Fabrique.Plugins.InputField.Zoomed) {
this.zoomIn();
}
this.startFocus();
} else {
if (this.focus === true) {
this.endFocus();
if (this.inputOptions.zoom) {
this.zoomOut();
}
}
}
}
/**
* Update function makes the cursor blink, it uses two private properties to make it toggle
*
* @returns {number}
*/
private blink:boolean = true;
private cnt: number = 0;
public update()
{
if (!this.focus) {
return;
}
if (this.cnt !== 30) {
return this.cnt++;
}
this.cursor.visible = this.blink;
this.blink = !this.blink;
this.cnt = 0;
}
/**
* Focus is lost on the input element, we disable the cursor and remove the hidden input element
*/
private endFocus() {
this.domElement.removeEventListener();
this.focus = false;
if (this.value.length === 0 && null !== this.placeHolder) {
this.placeHolder.visible = true;
}
this.cursor.visible = false;
if (this.game.device.desktop) {
//Timeout is a chrome hack
setTimeout(() => {
this.domElement.blur();
}, 0);
} else {
this.domElement.blur();
}
if (!this.game.device.desktop) {
Plugins.InputField.KeyboardOpen = false;
Plugins.InputField.onKeyboardClose.dispatch();
}
}
/**
*
*/
private startFocus() {
this.focus = true;
this.domElement.addKeyUpListener(this.keyListener.bind(this));
if (this.game.device.desktop) {
//Timeout is a chrome hack
setTimeout(() => {
this.domElement.focus();
}, 0);
} else {
this.domElement.focus();
}
if (!this.game.device.desktop) {
Plugins.InputField.KeyboardOpen = true;
Plugins.InputField.onKeyboardOpen.dispatch();
}
}
/**
* Update the text value in the box, and make sure the cursor is positioned correctly
*/
private updateText()
{
var text: string = '';
if (this.inputOptions.type === InputType.password) {
for (let i = 0; i < this.value.length; i++) {
text += '*';
}
}else if (this.inputOptions.type === InputType.number) {
var val = parseInt(this.value);
if (val < parseInt(this.inputOptions.min)) {
text = this.inputOptions.min;
} else if (val > parseInt(this.inputOptions.max)) {
text = this.inputOptions.max;
} else {
text = this.value;
}
} else {
text = this.value;
}
this.text.setText(text);
if (this.text.width > this.inputOptions.width) {
this.text.anchor.x = 1;
this.text.x = this.inputOptions.padding + this.inputOptions.width;
} else {
switch (this.inputOptions.textAlign) {
case 'left':
this.text.anchor.set(0, 0);
this.text.x = this.inputOptions.padding;
break;
case 'center':
this.text.anchor.set(0.5, 0);
this.text.x = this.inputOptions.padding + this.inputOptions.width / 2;
break;
case 'right':
this.text.anchor.set(1, 0);
this.text.x = this.inputOptions.padding + this.inputOptions.width;
break;
}
}
}
/**
* Updates the position of the caret in the phaser input field
*/
private updateCursor() {
if (this.text.width > this.inputOptions.width || this.inputOptions.textAlign === 'right') {
this.cursor.x = this.inputOptions.padding + this.inputOptions.width;
} else {
switch (this.inputOptions.textAlign) {
case 'left':
this.cursor.x = this.inputOptions.padding + this.getCaretPosition();
break;
case 'center':
this.cursor.x = this.inputOptions.padding + this.inputOptions.width / 2 - this.text.width / 2 + this.getCaretPosition();
break;
}
}
}
/**
* Fetches the carrot position from the dom element. This one changes when you use the keyboard to navigate the element
*
* @returns {number}
*/
private getCaretPosition() {
var caretPosition: number = this.domElement.getCaretPosition();
if (-1 === caretPosition) {
return this.text.width;
}
var text = this.value;
if (this.inputOptions.type === InputType.password) {
text = '';
for (let i = 0; i < this.value.length; i++) {
text += '*';
}
}
this.offscreenText.setText(text.slice(0, caretPosition));
return this.offscreenText.width;
}
/**
* Set the caret when a click was made in the input field
*
* @param e
*/
private setCaretOnclick(e: Phaser.Pointer) {
var localX: number = (this.text.toLocal(new PIXI.Point(e.x, e.y), this.game.world)).x;
if (this.inputOptions.textAlign && this.inputOptions.textAlign === 'center') {
localX += this.text.width / 2;
}
var characterWidth: number = this.text.width / this.value.length;
var index: number = 0;
for (let i: number = 0; i < this.value.length; i++) {
if (localX >= i * characterWidth && localX <= (i + 1) * characterWidth) {
index = i;
break;
}
}
if (localX > (this.value.length - 1) * characterWidth) {
index = this.value.length;
}
this.startFocus();
this.domElement.setCaretPosition(index);
this.updateCursor();
}
/**
* This checks if a select has been made, and if so highlight it with blue
*/
private updateSelection(): void {
if (this.domElement.hasSelection) {
var text = this.value;
if (this.inputOptions.type === InputType.password) {
text = '';
for (let i = 0; i < this.value.length; i++) {
text += '*';
}
}
text = text.substring(this.domElement.caretStart, this.domElement.caretEnd);
this.offscreenText.setText(text);
this.selection.updateSelection(this.offscreenText.getBounds());
switch (this.inputOptions.textAlign) {
case 'left':
this.selection.x = this.inputOptions.padding;
break;
case 'center':
this.selection.x = this.inputOptions.padding + this.inputOptions.width / 2 - this.text.width / 2;
break;
}
} else {
this.selection.clear();
}
}
private zoomIn(): void {
if (Plugins.InputField.Zoomed) {
return;
}
let bounds: PIXI.Rectangle = this.getBounds();
if (window.innerHeight > window.innerWidth) {
this.windowScale = this.game.width / (bounds.width * 1.5);
} else {
this.windowScale = (this.game.width / 2) / (bounds.width * 1.5);
}
let offsetX: number = ((this.game.width - bounds.width * 1.5) / 2) / this.windowScale;
this.game.world.scale.set(this.game.world.scale.x * this.windowScale, this.game.world.scale.y * this.windowScale);
this.game.world.pivot.set(bounds.x - offsetX, bounds.y - this.inputOptions.padding * 2);
Plugins.InputField.Zoomed = true;
}
private zoomOut(): void {
if (!Plugins.InputField.Zoomed) {
return;
}
this.game.world.scale.set(this.game.world.scale.x / this.windowScale, this.game.world.scale.y / this.windowScale);
this.game.world.pivot.set(0, 0);
Plugins.InputField.Zoomed = false;
}
/**
* Event fired when a key is pressed, it takes the value from the hidden input field and adds it as its own
*/
private keyListener(evt: KeyboardEvent)
{
this.value = this.domElement.value;
if (evt.keyCode === 13) {
this.endFocus();
return;
}
this.updateText();
this.updateCursor();
this.updateSelection();
}
/**
* We overwrite the destroy method because we want to delete the (hidden) dom element when the inputField was removed
*/
public destroy() {
this.domElement.destroy();
super.destroy();
}
/**
* Resets the text to an empty value
*/
public resetText() {
this.setText();
}
public setText(text: string = ''): void {
if (text.length > 0) {
this.placeHolder.visible = false;
} else {
this.placeHolder.visible = true;
}
this.value = text;
this.domElement.value = this.value;
this.updateText();
this.updateCursor();
this.endFocus();
}
}
}