65 lines
1.7 KiB
TypeScript
65 lines
1.7 KiB
TypeScript
import { Renderer } from 'sdf-2d';
|
|
import {
|
|
CommandExecutors,
|
|
CommandReceiver,
|
|
CreateObjectsCommand,
|
|
CreatePlayerCommand,
|
|
DeleteObjectsCommand,
|
|
Id,
|
|
UpdateObjectsCommand,
|
|
} from 'shared';
|
|
import { Game } from '../game';
|
|
import { Camera } from './camera';
|
|
import { CharacterView } from './character-view';
|
|
import { ViewObject } from './view-object';
|
|
|
|
export class GameObjectContainer extends CommandReceiver {
|
|
protected objects: Map<Id, ViewObject> = new Map();
|
|
public player!: CharacterView;
|
|
public camera!: Camera;
|
|
|
|
protected commandExecutors: CommandExecutors = {
|
|
[CreatePlayerCommand.type]: (c: CreatePlayerCommand) => {
|
|
this.player = c.character as CharacterView;
|
|
this.camera = new Camera(this.game);
|
|
this.addObject(this.player);
|
|
this.addObject(this.camera);
|
|
},
|
|
|
|
[CreateObjectsCommand.type]: (c: CreateObjectsCommand) =>
|
|
c.objects.forEach((o) => this.addObject(o as ViewObject)),
|
|
|
|
[DeleteObjectsCommand.type]: (c: DeleteObjectsCommand) =>
|
|
c.ids.forEach((id: Id) => this.objects.delete(id)),
|
|
|
|
[UpdateObjectsCommand.type]: (c: UpdateObjectsCommand) => {
|
|
c.objects.forEach((o) => {
|
|
this.objects.delete(o.id);
|
|
this.addObject(o as ViewObject);
|
|
if (o.id === this.player.id) {
|
|
this.player = o as CharacterView;
|
|
}
|
|
});
|
|
},
|
|
};
|
|
|
|
constructor(private game: Game) {
|
|
super();
|
|
}
|
|
|
|
public stepObjects(delta: number) {
|
|
if (this.player) {
|
|
this.camera.center = this.player.position;
|
|
}
|
|
|
|
this.objects.forEach((o) => o.step(delta));
|
|
}
|
|
|
|
public drawObjects(renderer: Renderer) {
|
|
this.objects.forEach((o) => o.draw(renderer));
|
|
}
|
|
|
|
private addObject(object: ViewObject) {
|
|
this.objects.set(object.id, object);
|
|
}
|
|
}
|