Slash-The-Hordes/assets/Scripts/Game/Player/Player.ts
2022-11-16 12:26:20 +01:00

57 lines
1.6 KiB
TypeScript

import { BoxCollider2D, Collider2D, Component, PointToPointConstraint, Vec2, Vec3, _decorator } from "cc";
import { IInput } from "../Input/IInput";
import { Weapon } from "../Weapon";
import { PlayerUI } from "./PlayerUI/PlayerUI";
import { UnitHealth } from "./UnitHealth";
const { ccclass, property } = _decorator;
@ccclass("Player")
export class Player extends Component {
@property private speed = 0;
@property(BoxCollider2D) private collider: BoxCollider2D;
@property(PlayerUI) private playerUI: PlayerUI;
private input: IInput;
private weapon: Weapon;
private health: UnitHealth;
private xp: number;
public init(input: IInput, weapon: Weapon, maxHp: number): void {
this.input = input;
this.weapon = weapon;
this.health = new UnitHealth(maxHp);
this.weapon.node.parent = this.node;
this.weapon.node.setPosition(new Vec3());
this.playerUI.init(this.health);
}
public get Health(): UnitHealth {
return this.health;
}
public get Collider(): Collider2D {
return this.collider;
}
public addXp(points: number): void {
this.xp += points;
}
public gameTick(deltaTime: number): void {
const movement: Vec2 = this.input.getAxis();
movement.x *= deltaTime * this.speed;
movement.y *= deltaTime * this.speed;
const newPosition: Vec3 = this.node.worldPosition;
newPosition.x += movement.x;
newPosition.y += movement.y;
this.node.setWorldPosition(newPosition);
this.weapon.gameTick(deltaTime);
}
}