2024-07-30 18:56:24 +00:00
|
|
|
class Overworld {
|
|
|
|
constructor(config) {
|
|
|
|
this.element = config.element;
|
|
|
|
this.canvas = this.element.querySelector(".game-canvas");
|
|
|
|
this.ctx = this.canvas.getContext("2d");
|
|
|
|
this.map = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
startGameLoop() {
|
|
|
|
const step = () => {
|
|
|
|
this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
|
|
|
|
|
|
|
|
const cameraPerson = this.map.gameObjects.hero;
|
|
|
|
|
|
|
|
// update all objects
|
|
|
|
Object.values(this.map.gameObjects).forEach(object => {
|
|
|
|
object.update({
|
|
|
|
arrow: this.directionInput.direction,
|
|
|
|
map: this.map,
|
|
|
|
});
|
|
|
|
})
|
|
|
|
|
|
|
|
this.map.drawLowerImage(this.ctx, cameraPerson);
|
|
|
|
|
2024-08-02 14:01:51 +00:00
|
|
|
Object.values(this.map.gameObjects).sort((a,b) => {
|
|
|
|
return a.y - b.y;
|
|
|
|
}).forEach(object => {
|
2024-07-30 18:56:24 +00:00
|
|
|
object.sprite.draw(this.ctx, cameraPerson);
|
|
|
|
})
|
|
|
|
|
|
|
|
this.map.drawUpperImage(this.ctx, cameraPerson);
|
|
|
|
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
step();
|
|
|
|
})
|
|
|
|
}
|
|
|
|
step();
|
|
|
|
}
|
|
|
|
|
|
|
|
init() {
|
|
|
|
this.map = new OverworldMap(window.OverworldMaps.DemoRoom);
|
|
|
|
this.map.mountObjects();
|
|
|
|
|
|
|
|
this.directionInput = new DirectionInput();
|
|
|
|
this.directionInput.init();
|
|
|
|
|
|
|
|
this.startGameLoop();
|
2024-08-02 14:01:51 +00:00
|
|
|
|
|
|
|
this.map.startCutscene([
|
|
|
|
{ who: "hero", type: "walk", direction: "down" },
|
|
|
|
{ who: "hero", type: "walk", direction: "down" },
|
|
|
|
{ who: "hero", type: "walk", direction: "down" },
|
|
|
|
{ who: "npc1", type: "walk", direction: "right" },
|
|
|
|
])
|
2024-07-30 18:56:24 +00:00
|
|
|
}
|
|
|
|
}
|