2021-03-11 16:13:05 +01:00
|
|
|
import {PlayerAnimationDirections, PlayerAnimationTypes} from "../Player/Animation";
|
2020-04-12 19:35:51 +02:00
|
|
|
import {SpeechBubble} from "./SpeechBubble";
|
2020-05-01 23:38:09 +02:00
|
|
|
import BitmapText = Phaser.GameObjects.BitmapText;
|
2020-07-28 17:43:33 +02:00
|
|
|
import Container = Phaser.GameObjects.Container;
|
|
|
|
import Sprite = Phaser.GameObjects.Sprite;
|
2020-12-18 14:30:46 +01:00
|
|
|
import {TextureError} from "../../Exception/TextureError";
|
2021-04-01 18:51:51 +02:00
|
|
|
import {Companion} from "../Companion/Companion";
|
2020-04-12 16:12:08 +02:00
|
|
|
|
2020-06-04 18:54:34 +02:00
|
|
|
interface AnimationData {
|
|
|
|
key: string;
|
|
|
|
frameRate: number;
|
|
|
|
repeat: number;
|
|
|
|
frameModel: string; //todo use an enum
|
2021-03-11 16:13:05 +01:00
|
|
|
frames : number[]
|
2020-06-04 18:54:34 +02:00
|
|
|
}
|
|
|
|
|
2020-07-28 17:43:33 +02:00
|
|
|
export abstract class Character extends Container {
|
2020-06-04 18:11:07 +02:00
|
|
|
private bubble: SpeechBubble|null = null;
|
2020-05-22 22:59:43 +02:00
|
|
|
private readonly playerName: BitmapText;
|
2020-05-06 01:50:01 +02:00
|
|
|
public PlayerValue: string;
|
2020-07-28 17:43:33 +02:00
|
|
|
public sprites: Map<string, Sprite>;
|
2021-03-11 16:13:05 +01:00
|
|
|
private lastDirection: PlayerAnimationDirections = PlayerAnimationDirections.Down;
|
2020-10-12 11:22:41 +02:00
|
|
|
//private teleportation: Sprite;
|
2021-01-07 17:11:22 +01:00
|
|
|
private invisible: boolean;
|
2021-04-01 18:51:51 +02:00
|
|
|
public companion?: Companion;
|
2020-04-12 16:12:08 +02:00
|
|
|
|
2020-06-04 18:54:34 +02:00
|
|
|
constructor(scene: Phaser.Scene,
|
|
|
|
x: number,
|
|
|
|
y: number,
|
2021-01-07 17:11:22 +01:00
|
|
|
texturesPromise: Promise<string[]>,
|
2020-06-04 18:54:34 +02:00
|
|
|
name: string,
|
2021-03-11 16:13:05 +01:00
|
|
|
direction: PlayerAnimationDirections,
|
2020-06-04 18:54:34 +02:00
|
|
|
moving: boolean,
|
|
|
|
frame?: string | number
|
|
|
|
) {
|
2020-07-28 17:43:33 +02:00
|
|
|
super(scene, x, y/*, texture, frame*/);
|
2021-01-07 12:43:21 +01:00
|
|
|
this.PlayerValue = name;
|
2021-01-07 17:11:22 +01:00
|
|
|
this.invisible = true
|
2020-07-28 17:43:33 +02:00
|
|
|
|
|
|
|
this.sprites = new Map<string, Sprite>();
|
|
|
|
|
2021-01-07 17:11:22 +01:00
|
|
|
//textures are inside a Promise in case they need to be lazyloaded before use.
|
|
|
|
texturesPromise.then((textures) => {
|
|
|
|
this.addTextures(textures, frame);
|
|
|
|
this.invisible = false
|
|
|
|
})
|
2020-04-12 16:12:08 +02:00
|
|
|
|
2020-10-12 11:22:41 +02:00
|
|
|
/*this.teleportation = new Sprite(scene, -20, -10, 'teleportation', 3);
|
2020-10-06 23:56:27 +02:00
|
|
|
this.teleportation.setInteractive();
|
|
|
|
this.teleportation.visible = false;
|
|
|
|
this.teleportation.on('pointerup', () => {
|
|
|
|
this.report.visible = false;
|
|
|
|
this.teleportation.visible = false;
|
|
|
|
});
|
2020-10-12 11:22:41 +02:00
|
|
|
this.add(this.teleportation);*/
|
2020-10-06 23:56:27 +02:00
|
|
|
|
2021-01-07 12:43:21 +01:00
|
|
|
this.playerName = new BitmapText(scene, 0, - 25, 'main_font', name, 7);
|
2020-05-11 19:16:36 +02:00
|
|
|
this.playerName.setOrigin(0.5).setCenterAlign().setDepth(99999);
|
2021-01-07 12:43:21 +01:00
|
|
|
this.add(this.playerName);
|
2020-05-01 23:38:09 +02:00
|
|
|
|
2020-07-28 17:43:33 +02:00
|
|
|
scene.add.existing(this);
|
|
|
|
|
2020-04-13 13:42:21 +02:00
|
|
|
this.scene.physics.world.enableBody(this);
|
2020-07-28 17:43:33 +02:00
|
|
|
this.getBody().setImmovable(true);
|
|
|
|
this.getBody().setCollideWorldBounds(true);
|
|
|
|
this.setSize(16, 16);
|
|
|
|
this.getBody().setSize(16, 16); //edit the hitbox to better match the character model
|
|
|
|
this.getBody().setOffset(0, 8);
|
2020-05-08 17:35:40 +02:00
|
|
|
this.setDepth(-1);
|
2020-05-12 11:49:55 +02:00
|
|
|
|
2020-06-04 18:54:34 +02:00
|
|
|
this.playAnimation(direction, moving);
|
2021-04-01 18:51:51 +02:00
|
|
|
|
|
|
|
this.addCompanion();
|
|
|
|
}
|
|
|
|
|
|
|
|
private addCompanion(): void {
|
|
|
|
this.companion = new Companion(this.scene, this.x, this.y);
|
2020-06-04 18:54:34 +02:00
|
|
|
}
|
|
|
|
|
2020-10-20 16:39:23 +02:00
|
|
|
public addTextures(textures: string[], frame?: string | number): void {
|
|
|
|
for (const texture of textures) {
|
2020-12-18 14:30:46 +01:00
|
|
|
if(!this.scene.textures.exists(texture)){
|
|
|
|
throw new TextureError('texture not found');
|
|
|
|
}
|
2020-10-20 16:39:23 +02:00
|
|
|
const sprite = new Sprite(this.scene, 0, 0, texture, frame);
|
|
|
|
sprite.setInteractive({useHandCursor: true});
|
|
|
|
this.add(sprite);
|
|
|
|
this.getPlayerAnimations(texture).forEach(d => {
|
|
|
|
this.scene.anims.create({
|
|
|
|
key: d.key,
|
2021-03-11 16:13:05 +01:00
|
|
|
frames: this.scene.anims.generateFrameNumbers(d.frameModel, {frames: d.frames}),
|
2020-10-20 16:39:23 +02:00
|
|
|
frameRate: d.frameRate,
|
|
|
|
repeat: d.repeat
|
|
|
|
});
|
|
|
|
})
|
|
|
|
// Needed, otherwise, animations are not handled correctly.
|
2020-12-18 13:56:25 +01:00
|
|
|
if(this.scene) {
|
|
|
|
this.scene.sys.updateList.add(sprite);
|
|
|
|
}
|
2020-10-20 16:39:23 +02:00
|
|
|
this.sprites.set(texture, sprite);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 18:54:34 +02:00
|
|
|
private getPlayerAnimations(name: string): AnimationData[] {
|
|
|
|
return [{
|
2021-03-11 16:13:05 +01:00
|
|
|
key: `${name}-${PlayerAnimationDirections.Down}-${PlayerAnimationTypes.Walk}`,
|
2020-06-04 18:54:34 +02:00
|
|
|
frameModel: name,
|
2021-03-11 16:13:05 +01:00
|
|
|
frames: [0, 1, 2, 1],
|
2020-06-04 18:54:34 +02:00
|
|
|
frameRate: 10,
|
|
|
|
repeat: -1
|
|
|
|
}, {
|
2021-03-11 16:13:05 +01:00
|
|
|
key: `${name}-${PlayerAnimationDirections.Left}-${PlayerAnimationTypes.Walk}`,
|
2020-06-04 18:54:34 +02:00
|
|
|
frameModel: name,
|
2021-03-11 16:13:05 +01:00
|
|
|
frames: [3, 4, 5, 4],
|
2020-06-04 18:54:34 +02:00
|
|
|
frameRate: 10,
|
|
|
|
repeat: -1
|
|
|
|
}, {
|
2021-03-11 16:13:05 +01:00
|
|
|
key: `${name}-${PlayerAnimationDirections.Right}-${PlayerAnimationTypes.Walk}`,
|
2020-06-04 18:54:34 +02:00
|
|
|
frameModel: name,
|
2021-03-11 16:13:05 +01:00
|
|
|
frames: [6, 7, 8, 7],
|
2020-06-04 18:54:34 +02:00
|
|
|
frameRate: 10,
|
|
|
|
repeat: -1
|
|
|
|
}, {
|
2021-03-11 16:13:05 +01:00
|
|
|
key: `${name}-${PlayerAnimationDirections.Up}-${PlayerAnimationTypes.Walk}`,
|
2020-06-04 18:54:34 +02:00
|
|
|
frameModel: name,
|
2021-03-11 16:13:05 +01:00
|
|
|
frames: [9, 10, 11, 10],
|
2020-06-04 18:54:34 +02:00
|
|
|
frameRate: 10,
|
|
|
|
repeat: -1
|
2021-03-11 16:13:05 +01:00
|
|
|
},{
|
|
|
|
key: `${name}-${PlayerAnimationDirections.Down}-${PlayerAnimationTypes.Idle}`,
|
|
|
|
frameModel: name,
|
|
|
|
frames: [1],
|
|
|
|
frameRate: 10,
|
|
|
|
repeat: 1
|
|
|
|
}, {
|
|
|
|
key: `${name}-${PlayerAnimationDirections.Left}-${PlayerAnimationTypes.Idle}`,
|
|
|
|
frameModel: name,
|
|
|
|
frames: [4],
|
|
|
|
frameRate: 10,
|
|
|
|
repeat: 1
|
|
|
|
}, {
|
|
|
|
key: `${name}-${PlayerAnimationDirections.Right}-${PlayerAnimationTypes.Idle}`,
|
|
|
|
frameModel: name,
|
|
|
|
frames: [7],
|
|
|
|
frameRate: 10,
|
|
|
|
repeat: 1
|
|
|
|
}, {
|
|
|
|
key: `${name}-${PlayerAnimationDirections.Up}-${PlayerAnimationTypes.Idle}`,
|
|
|
|
frameModel: name,
|
|
|
|
frames: [10],
|
|
|
|
frameRate: 10,
|
|
|
|
repeat: 1
|
2020-06-04 18:54:34 +02:00
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
2021-03-11 16:13:05 +01:00
|
|
|
protected playAnimation(direction : PlayerAnimationDirections, moving: boolean): void {
|
2021-01-07 17:11:22 +01:00
|
|
|
if (this.invisible) return;
|
2020-07-28 17:43:33 +02:00
|
|
|
for (const [texture, sprite] of this.sprites.entries()) {
|
|
|
|
if (!sprite.anims) {
|
|
|
|
console.error('ANIMS IS NOT DEFINED!!!');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (moving && (!sprite.anims.currentAnim || sprite.anims.currentAnim.key !== direction)) {
|
2021-03-11 16:13:05 +01:00
|
|
|
sprite.play(texture+'-'+direction+'-'+PlayerAnimationTypes.Walk, true);
|
2020-07-28 17:43:33 +02:00
|
|
|
} else if (!moving) {
|
2021-03-11 16:13:05 +01:00
|
|
|
sprite.anims.play(texture + '-' + direction + '-'+PlayerAnimationTypes.Idle, true);
|
2020-07-28 17:43:33 +02:00
|
|
|
}
|
2020-06-10 15:43:22 +02:00
|
|
|
}
|
2020-07-28 17:43:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected getBody(): Phaser.Physics.Arcade.Body {
|
|
|
|
const body = this.body;
|
|
|
|
if (!(body instanceof Phaser.Physics.Arcade.Body)) {
|
|
|
|
throw new Error('Container does not have arcade body');
|
2020-06-04 18:54:34 +02:00
|
|
|
}
|
2020-07-28 17:43:33 +02:00
|
|
|
return body;
|
2020-04-12 16:12:08 +02:00
|
|
|
}
|
2020-04-12 19:06:31 +02:00
|
|
|
|
2020-05-06 01:50:01 +02:00
|
|
|
move(x: number, y: number) {
|
2020-07-28 17:43:33 +02:00
|
|
|
const body = this.getBody();
|
2020-04-12 19:06:31 +02:00
|
|
|
|
2020-07-28 17:43:33 +02:00
|
|
|
body.setVelocity(x, y);
|
2020-04-12 19:06:31 +02:00
|
|
|
|
2020-05-11 19:19:42 +02:00
|
|
|
// up or down animations are prioritized over left and right
|
2020-07-28 17:43:33 +02:00
|
|
|
if (body.velocity.y < 0) { //moving up
|
2021-03-11 16:13:05 +01:00
|
|
|
this.lastDirection = PlayerAnimationDirections.Up;
|
|
|
|
this.playAnimation(PlayerAnimationDirections.Up, true);
|
2020-07-28 17:43:33 +02:00
|
|
|
} else if (body.velocity.y > 0) { //moving down
|
2021-03-11 16:13:05 +01:00
|
|
|
this.lastDirection = PlayerAnimationDirections.Down;
|
|
|
|
this.playAnimation(PlayerAnimationDirections.Down, true);
|
2020-07-28 17:43:33 +02:00
|
|
|
} else if (body.velocity.x > 0) { //moving right
|
2021-03-11 16:13:05 +01:00
|
|
|
this.lastDirection = PlayerAnimationDirections.Right;
|
|
|
|
this.playAnimation(PlayerAnimationDirections.Right, true);
|
2020-07-28 17:43:33 +02:00
|
|
|
} else if (body.velocity.x < 0) { //moving left
|
2021-03-11 16:13:05 +01:00
|
|
|
this.lastDirection = PlayerAnimationDirections.Left;
|
|
|
|
this.playAnimation(PlayerAnimationDirections.Left, true);
|
2020-04-13 15:15:20 +02:00
|
|
|
}
|
2020-05-08 17:35:40 +02:00
|
|
|
|
|
|
|
this.setDepth(this.y);
|
2021-04-01 18:51:51 +02:00
|
|
|
|
|
|
|
if (this.companion) {
|
|
|
|
this.companion.setTarget(this.x, this.y, this.lastDirection);
|
|
|
|
}
|
2020-05-03 22:24:14 +02:00
|
|
|
}
|
|
|
|
|
2020-04-13 15:41:11 +02:00
|
|
|
stop(){
|
2020-07-28 17:43:33 +02:00
|
|
|
this.getBody().setVelocity(0, 0);
|
|
|
|
this.playAnimation(this.lastDirection, false);
|
2020-04-13 15:41:11 +02:00
|
|
|
}
|
2020-04-27 18:12:36 +02:00
|
|
|
|
2020-04-12 19:35:51 +02:00
|
|
|
say(text: string) {
|
|
|
|
if (this.bubble) return;
|
|
|
|
this.bubble = new SpeechBubble(this.scene, this, text)
|
|
|
|
setTimeout(() => {
|
2020-06-04 18:11:07 +02:00
|
|
|
if (this.bubble !== null) {
|
|
|
|
this.bubble.destroy();
|
|
|
|
this.bubble = null;
|
|
|
|
}
|
2020-04-12 19:35:51 +02:00
|
|
|
}, 3000)
|
|
|
|
}
|
2020-05-03 22:24:14 +02:00
|
|
|
|
2021-01-06 15:00:54 +01:00
|
|
|
destroy(): void {
|
2020-07-29 11:40:05 +02:00
|
|
|
for (const sprite of this.sprites.values()) {
|
2020-12-18 13:56:25 +01:00
|
|
|
if(this.scene) {
|
|
|
|
this.scene.sys.updateList.remove(sprite);
|
|
|
|
}
|
2020-07-29 11:40:05 +02:00
|
|
|
}
|
2021-01-06 15:00:54 +01:00
|
|
|
super.destroy();
|
2020-05-03 22:24:14 +02:00
|
|
|
this.playerName.destroy();
|
2021-04-01 18:51:51 +02:00
|
|
|
|
|
|
|
if (this.companion) {
|
|
|
|
this.companion.destroy();
|
|
|
|
}
|
2020-05-03 22:24:14 +02:00
|
|
|
}
|
2020-04-27 18:12:36 +02:00
|
|
|
}
|