2020-08-07 12:21:15 -04:00
|
|
|
import InputReceiver from "../Input/InputReceiver";
|
|
|
|
import Vec2 from "../DataTypes/Vec2";
|
2020-08-10 13:19:59 -04:00
|
|
|
import Receiver from "../Events/Receiver";
|
2020-09-19 20:18:39 -04:00
|
|
|
import Emitter from "../Events/Emitter";
|
2020-09-06 18:07:09 -04:00
|
|
|
import Scene from "../Scene/Scene";
|
2020-09-05 00:04:14 -04:00
|
|
|
import Layer from "../Scene/Layer";
|
2020-10-25 17:46:43 -04:00
|
|
|
import { Physical, Positioned, isRegion, Unique, Updateable, Region } from "../DataTypes/Interfaces/Descriptors"
|
|
|
|
import Shape from "../DataTypes/Shapes/Shape";
|
|
|
|
import GameEvent from "../Events/GameEvent";
|
|
|
|
import Map from "../DataTypes/Map";
|
|
|
|
import AABB from "../DataTypes/Shapes/AABB";
|
2020-10-28 14:55:32 -04:00
|
|
|
import Debug from "../Debug/Debug";
|
2020-08-07 12:21:15 -04:00
|
|
|
|
2020-09-13 20:57:28 -04:00
|
|
|
/**
|
|
|
|
* The representation of an object in the game world
|
|
|
|
*/
|
2020-10-25 17:46:43 -04:00
|
|
|
export default abstract class GameNode implements Positioned, Unique, Updateable, Physical {
|
|
|
|
/*---------- POSITIONED ----------*/
|
2020-09-28 18:57:02 -04:00
|
|
|
private _position: Vec2;
|
2020-10-25 17:46:43 -04:00
|
|
|
|
|
|
|
/*---------- UNIQUE ----------*/
|
|
|
|
private _id: number;
|
|
|
|
|
|
|
|
/*---------- PHYSICAL ----------*/
|
|
|
|
hasPhysics: boolean;
|
|
|
|
moving: boolean;
|
|
|
|
onGround: boolean;
|
|
|
|
onWall: boolean;
|
|
|
|
onCeiling: boolean;
|
|
|
|
active: boolean;
|
|
|
|
collisionShape: Shape;
|
|
|
|
isStatic: boolean;
|
|
|
|
isCollidable: boolean;
|
|
|
|
isTrigger: boolean;
|
|
|
|
group: string;
|
|
|
|
triggers: Map<string>;
|
|
|
|
_velocity: Vec2;
|
|
|
|
sweptRect: AABB;
|
2020-10-28 14:55:32 -04:00
|
|
|
isPlayer: boolean;
|
2020-10-25 17:46:43 -04:00
|
|
|
|
|
|
|
protected input: InputReceiver;
|
2020-09-19 20:18:39 -04:00
|
|
|
protected receiver: Receiver;
|
|
|
|
protected emitter: Emitter;
|
2020-09-06 18:07:09 -04:00
|
|
|
protected scene: Scene;
|
|
|
|
protected layer: Layer;
|
2020-10-25 17:46:43 -04:00
|
|
|
|
2020-08-07 12:21:15 -04:00
|
|
|
|
|
|
|
constructor(){
|
|
|
|
this.input = InputReceiver.getInstance();
|
2020-09-28 18:57:02 -04:00
|
|
|
this._position = new Vec2(0, 0);
|
|
|
|
this._position.setOnChange(this.positionChanged);
|
2020-09-19 20:18:39 -04:00
|
|
|
this.receiver = new Receiver();
|
|
|
|
this.emitter = new Emitter();
|
2020-08-07 12:21:15 -04:00
|
|
|
}
|
2020-08-17 20:09:41 -04:00
|
|
|
|
2020-10-25 17:46:43 -04:00
|
|
|
/*---------- POSITIONED ----------*/
|
2020-09-28 18:57:02 -04:00
|
|
|
get position(): Vec2 {
|
|
|
|
return this._position;
|
|
|
|
}
|
|
|
|
|
|
|
|
set position(pos: Vec2) {
|
|
|
|
this._position = pos;
|
|
|
|
this._position.setOnChange(this.positionChanged);
|
|
|
|
this.positionChanged();
|
|
|
|
}
|
|
|
|
|
2020-10-25 17:46:43 -04:00
|
|
|
/*---------- UNIQUE ----------*/
|
|
|
|
get id(): number {
|
|
|
|
return this._id;
|
|
|
|
}
|
|
|
|
|
|
|
|
set id(id: number) {
|
|
|
|
// id can only be set once
|
|
|
|
if(this._id === undefined){
|
|
|
|
this._id = id;
|
|
|
|
} else {
|
|
|
|
throw "Attempted to assign id to object that already has id."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*---------- PHYSICAL ----------*/
|
|
|
|
/**
|
|
|
|
* @param velocity The velocity with which to move the object.
|
|
|
|
*/
|
|
|
|
move = (velocity: Vec2): void => {
|
|
|
|
this.moving = true;
|
|
|
|
this._velocity = velocity;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param velocity The velocity with which the object will move.
|
|
|
|
*/
|
|
|
|
finishMove = (): void => {
|
|
|
|
this.moving = false;
|
|
|
|
this.position.add(this._velocity);
|
2020-08-07 12:21:15 -04:00
|
|
|
}
|
|
|
|
|
2020-10-25 17:46:43 -04:00
|
|
|
/**
|
|
|
|
* @param collisionShape The collider for this object. If this has a region (implements Region),
|
|
|
|
* it will be used when no collision shape is specified (or if collision shape is null).
|
|
|
|
* @param isCollidable Whether this is collidable or not. True by default.
|
|
|
|
* @param isStatic Whether this is static or not. False by default
|
|
|
|
*/
|
|
|
|
addPhysics = (collisionShape?: Shape, isCollidable: boolean = true, isStatic: boolean = false): void => {
|
|
|
|
this.hasPhysics = true;
|
|
|
|
this.moving = false;
|
|
|
|
this.onGround = false;
|
|
|
|
this.onWall = false;
|
2020-10-28 14:55:32 -04:00
|
|
|
this.onCeiling = false;
|
2020-10-25 17:46:43 -04:00
|
|
|
this.active = true;
|
|
|
|
this.isCollidable = isCollidable;
|
|
|
|
this.isStatic = isStatic;
|
|
|
|
this.isTrigger = false;
|
|
|
|
this.group = "";
|
|
|
|
this.triggers = new Map();
|
|
|
|
this._velocity = Vec2.ZERO;
|
|
|
|
this.sweptRect = new AABB();
|
|
|
|
|
|
|
|
if(collisionShape){
|
|
|
|
this.collisionShape = collisionShape;
|
|
|
|
} else if (isRegion(this)) {
|
|
|
|
// If the gamenode has a region and no other is specified, use that
|
|
|
|
this.collisionShape = (<any>this).boundary.clone();
|
2020-08-10 19:13:42 -04:00
|
|
|
} else {
|
2020-10-25 17:46:43 -04:00
|
|
|
throw "No collision shape specified for physics object."
|
2020-08-10 19:13:42 -04:00
|
|
|
}
|
2020-10-25 17:46:43 -04:00
|
|
|
|
|
|
|
this.sweptRect = this.collisionShape.getBoundingRect();
|
|
|
|
this.scene.getPhysicsManager().registerObject(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param group The name of the group that will activate the trigger
|
|
|
|
* @param eventType The type of this event to send when this trigger is activated
|
|
|
|
*/
|
|
|
|
addTrigger = (group: string, eventType: string): void => {
|
|
|
|
this.isTrigger = true;
|
|
|
|
this.triggers.add(group, eventType);
|
|
|
|
};
|
|
|
|
|
|
|
|
/*---------- GAME NODE ----------*/
|
|
|
|
/**
|
|
|
|
* Sets the scene for this object.
|
|
|
|
* @param scene The scene this object belongs to.
|
|
|
|
*/
|
|
|
|
setScene(scene: Scene): void {
|
|
|
|
this.scene = scene;
|
2020-08-10 19:13:42 -04:00
|
|
|
}
|
|
|
|
|
2020-10-25 17:46:43 -04:00
|
|
|
/** Gets the scene this object is in. */
|
|
|
|
getScene(): Scene {
|
|
|
|
return this.scene;
|
2020-09-28 18:57:02 -04:00
|
|
|
}
|
|
|
|
|
2020-10-25 17:46:43 -04:00
|
|
|
/**
|
|
|
|
* Sets the layer of this object.
|
|
|
|
* @param layer The layer this object will be on.
|
|
|
|
*/
|
|
|
|
setLayer(layer: Layer): void {
|
|
|
|
this.layer = layer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns the layer this object is on. */
|
|
|
|
getLayer(): Layer {
|
|
|
|
return this.layer;
|
2020-09-28 18:57:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called if the position vector is modified or replaced
|
|
|
|
*/
|
2020-10-25 17:46:43 -04:00
|
|
|
// TODO - For some reason this isn't recognized in the child class
|
|
|
|
protected positionChanged = (): void => {
|
|
|
|
if(this.hasPhysics){
|
|
|
|
this.collisionShape.center = this.position;
|
|
|
|
}
|
|
|
|
};
|
2020-09-28 18:57:02 -04:00
|
|
|
|
2020-09-06 18:07:09 -04:00
|
|
|
// TODO - This doesn't seem ideal. Is there a better way to do this?
|
2020-10-05 15:01:26 -04:00
|
|
|
getViewportOriginWithParallax(): Vec2 {
|
|
|
|
return this.scene.getViewport().getOrigin().mult(this.layer.getParallax());
|
2020-09-06 18:07:09 -04:00
|
|
|
}
|
|
|
|
|
2020-10-18 18:34:13 -04:00
|
|
|
getViewportScale(): number {
|
|
|
|
return this.scene.getViewport().getZoomLevel();
|
|
|
|
}
|
|
|
|
|
2020-08-07 12:21:15 -04:00
|
|
|
abstract update(deltaT: number): void;
|
|
|
|
}
|