2020-04-26 17:54:56 +02:00
|
|
|
|
2020-05-01 23:19:51 +02:00
|
|
|
export class TextInput extends Phaser.GameObjects.BitmapText {
|
2020-04-26 18:48:41 +02:00
|
|
|
private underLineLength = 10;
|
|
|
|
private underLine: Phaser.GameObjects.Text;
|
2020-05-26 22:17:00 +02:00
|
|
|
|
|
|
|
constructor(scene: Phaser.Scene, x: number, y: number, maxLength: number, text: string, onChange: (text: string) => void) {
|
|
|
|
super(scene, x, y, 'main_font', text, 32);
|
2020-04-26 17:54:56 +02:00
|
|
|
this.scene.add.existing(this);
|
|
|
|
|
2020-05-01 23:19:51 +02:00
|
|
|
this.underLine = this.scene.add.text(x, y+1, '_______', { fontFamily: 'Arial', fontSize: "32px", color: '#ffffff'})
|
|
|
|
|
2020-04-26 18:48:41 +02:00
|
|
|
|
2020-06-09 23:13:26 +02:00
|
|
|
const keySpace = this.scene.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.SPACE);
|
|
|
|
const keyBackspace = this.scene.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.BACKSPACE);
|
2020-04-26 17:54:56 +02:00
|
|
|
this.scene.input.keyboard.on('keydown', (event: any) => {
|
|
|
|
if (event.keyCode === 8 && this.text.length > 0) {
|
2020-04-26 18:48:41 +02:00
|
|
|
this.deleteLetter();
|
2020-05-01 23:19:51 +02:00
|
|
|
} else if ((event.keyCode === 32 || (event.keyCode >= 48 && event.keyCode <= 90)) && this.text.length < maxLength) {
|
2020-04-26 18:48:41 +02:00
|
|
|
this.addLetter(event.key);
|
2020-04-26 17:54:56 +02:00
|
|
|
}
|
2020-05-26 22:17:00 +02:00
|
|
|
onChange(this.text);
|
2020-04-26 17:54:56 +02:00
|
|
|
});
|
|
|
|
}
|
2020-05-01 23:19:51 +02:00
|
|
|
|
2020-04-26 18:48:41 +02:00
|
|
|
private deleteLetter() {
|
|
|
|
this.text = this.text.substr(0, this.text.length - 1);
|
|
|
|
if (this.underLine.text.length > this.underLineLength) {
|
|
|
|
this.underLine.text = this.underLine.text.substr(0, this.underLine.text.length - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private addLetter(letter: string) {
|
|
|
|
this.text += letter;
|
|
|
|
if (this.text.length > this.underLineLength) {
|
|
|
|
this.underLine.text += '_';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-26 17:54:56 +02:00
|
|
|
getText(): string {
|
|
|
|
return this.text;
|
|
|
|
}
|
2020-05-01 23:19:51 +02:00
|
|
|
}
|