jumpstorm/engine/entities/Entity.ts

43 lines
1.1 KiB
TypeScript
Raw Normal View History

2023-08-23 21:44:59 -04:00
import { EntityNames, Player } from ".";
2023-07-19 23:38:24 -04:00
import type { Component } from "../components";
export abstract class Entity {
2023-08-23 21:44:59 -04:00
public id: string;
public components: Map<string, Component>;
public name: string;
2023-07-19 23:38:24 -04:00
2023-08-23 21:44:59 -04:00
constructor(name: string, id: string = crypto.randomUUID()) {
this.name = name;
this.id = id;
2023-07-19 23:38:24 -04:00
this.components = new Map();
}
public addComponent(component: Component) {
this.components.set(component.name, component);
}
public getComponent<T extends Component>(name: string): T {
if (!this.hasComponent(name)) {
throw new Error("Entity does not have component " + name);
}
return this.components.get(name) as T;
}
public getComponents(): Component[] {
return Array.from(this.components.values());
}
public hasComponent(name: string): boolean {
return this.components.has(name);
}
2023-08-23 21:44:59 -04:00
static from(entityName: string, args: any): Entity {
switch (entityName) {
case EntityNames.Player:
return new Player(args.playerId);
default:
throw new Error(".from() Entity type not implemented: " + entityName);
}
}
2023-07-19 23:38:24 -04:00
}