40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import {GameScene} from "../Game/GameScene";
|
|
import {PointInterface} from "../../Connexion/ConnexionModels";
|
|
import {Character} from "../Entity/Character";
|
|
|
|
/**
|
|
* Class representing the sprite of a remote player (a player that plays on another computer)
|
|
*/
|
|
export class RemotePlayer extends Character {
|
|
userId: number;
|
|
|
|
constructor(
|
|
userId: number,
|
|
Scene: GameScene,
|
|
x: number,
|
|
y: number,
|
|
name: string,
|
|
texturesPromise: Promise<string[]>,
|
|
direction: string,
|
|
moving: boolean
|
|
) {
|
|
super(Scene, x, y, texturesPromise, name, direction, moving, 1);
|
|
|
|
//set data
|
|
this.userId = userId;
|
|
|
|
//todo: implement on click action
|
|
/*this.playerName.setInteractive();
|
|
this.playerName.on('pointerup', () => {
|
|
});*/
|
|
}
|
|
|
|
updatePosition(position: PointInterface): void {
|
|
this.playAnimation(position.direction, position.moving);
|
|
this.setX(position.x);
|
|
this.setY(position.y);
|
|
|
|
this.setDepth(position.y); //this is to make sure the perspective (player models closer the bottom of the screen will appear in front of models nearer the top of the screen).
|
|
}
|
|
}
|