Skip to content
Snippets Groups Projects
Commit 3018a15c authored by Paolo.Brasolin's avatar Paolo.Brasolin
Browse files

feat: #fe spears stab ground

parent ddc99e34
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,7 @@ export default class FightScene extends Phaser.Scene {
scene.foes.splice(scene.foes.indexOf(enemy), 1); // FIXME
}
new Spear(this, this.player, enemy);
new Spear(this, this.player, hit ? enemy : undefined);
}
}
......
......@@ -15,7 +15,7 @@ const config = {
default: "arcade",
arcade: {
gravity: { y: GRAVITY_Y },
debug: true,
// debug: true,
},
},
scene: FightScene,
......
......@@ -8,15 +8,16 @@ const SPEED = 450;
class Spear extends Phaser.Physics.Arcade.Sprite {
source: Phaser.GameObjects.Sprite;
target: Phaser.GameObjects.Sprite;
target: Phaser.GameObjects.Sprite | undefined;
body: Phaser.Physics.Arcade.Body;
constructor(
scene: FightScene,
source: Phaser.GameObjects.Sprite,
target: Phaser.GameObjects.Sprite,
target: Phaser.GameObjects.Sprite | undefined,
) {
super(scene, scene.player.x, scene.player.y, "spear");
this.play({ key: "spearAni", repeat: -1 });
scene.add.existing(this);
this.setScale(3);
......@@ -27,27 +28,63 @@ class Spear extends Phaser.Physics.Arcade.Sprite {
//scene.physics.world.enableBody(this, Phaser.Physics.Arcade.DYNAMIC_BODY);
this.body = new Phaser.Physics.Arcade.Body(scene.physics.world, this);
scene.physics.world.add(this.body);
scene.physics.add.collider(this, scene.ground);
scene.physics.add.collider(this, scene.ground, this.hitGround.bind(this));
this.body.setBounce(0, 0.2); // TODO: bounce only at small angles
const theta = this.calculateSuccessfulLaunchAngle(source, target);
if (this.target) {
this.shootTarget();
} else {
this.shootGround();
}
}
shootTarget() {
const theta = this.calculateSuccessfulLaunchAngle(this.source, this.target);
if (theta) {
this.body.setVelocity(SPEED * Math.cos(theta), SPEED * Math.sin(theta));
this.scene.physics.add.overlap(
this,
this.target,
this.hitTarget.bind(this),
);
} else {
console.error("Cannot hit foe.");
console.error("Cannot hit foe. :(");
}
}
scene.physics.add.overlap(this, this.target, (_, hitTarget) => {
scene.physics.world.removeCollider(this);
this.destroy();
hitTarget.flee();
hitTarget() {
this.scene.physics.world.removeCollider(this);
// TODO: bounce?
this.destroy();
this.target.flee();
}
shootGround() {
const theta = Math.random() * 2 * Math.PI;
this.body.setVelocity(SPEED * Math.cos(theta), SPEED * Math.sin(theta));
}
hitGround() {
// this.scene.physics.world.remove(this.body);
this.body.setEnable(false);
this.play({ key: "spearHitAni", repeat: -1, frameRate: 48 });
this.setRotation(this.rotation - Math.PI / 2);
this.scene.tweens.add({
targets: this,
alpha: 0,
ease: "Linear",
delay: 500,
duration: 1500,
onComplete: this.destroy.bind(this),
});
}
// this.anims.play("spearAni");
preUpdate(time, delta): void {
super.preUpdate(time, delta); // NOTE: this preserves sprite animations
if (this.body.enable) this.alignToVelocity();
}
preUpdate(): void {
alignToVelocity() {
const velocity = this.body.velocity as Phaser.Math.Vector2;
this.setRotation(velocity.angle());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment