feat(#8): fix 2d camera support
This commit is contained in:
parent
07c64eadeb
commit
c1fe3acc11
5 changed files with 103 additions and 36 deletions
|
@ -1,12 +1,67 @@
|
|||
import { TILE_SIZE } from "../constants.js";
|
||||
import { GameObject } from "./game-object.js";
|
||||
import { MapManagement } from "./map-management.js";
|
||||
|
||||
export class Camera extends GameObject {
|
||||
constructor({ map, x = 0, y = 0, width = 320, height = 240 }) {
|
||||
constructor({ mapManagement, x = 0, y = 0, width = 160, height = 120 }) {
|
||||
super({ x, y });
|
||||
this.map = map;
|
||||
this.mapManagement = mapManagement;
|
||||
this.gameObjects = [mapManagement];
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
this.keys = [
|
||||
{ key: "ArrowUp", pressed: false, value: [0, -1] },
|
||||
{ key: "ArrowDown", pressed: false, value: [0, 1] },
|
||||
{ key: "ArrowLeft", pressed: false, value: [-1, 0] },
|
||||
{ key: "ArrowRight", pressed: false, value: [1, 0] },
|
||||
];
|
||||
this.availableKeys = this.keys.reduce(
|
||||
(acc, item) => ({ ...acc, [item.key]: item }),
|
||||
{}
|
||||
);
|
||||
}
|
||||
|
||||
update(delta) {
|
||||
this.keys.forEach((item) => {
|
||||
if (item.pressed) {
|
||||
this.moveCamera(...item.value, delta);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
onKeyPressed(key) {
|
||||
if (!this.availableKeys[key]) return;
|
||||
this.availableKeys[key].pressed = true;
|
||||
}
|
||||
|
||||
onKeyReleased(key) {
|
||||
if (!this.availableKeys[key]) return;
|
||||
this.availableKeys[key].pressed = false;
|
||||
}
|
||||
|
||||
render(ctx) {
|
||||
this.gameObjects.forEach((item) =>
|
||||
item.render(ctx, this.x, this.y, this.width, this.height)
|
||||
);
|
||||
}
|
||||
|
||||
moveCamera(dx, dy, delta) {
|
||||
const { levelConfig } = this.mapManagement.selected;
|
||||
const layer = levelConfig.layers[0];
|
||||
const { height, width } = layer;
|
||||
|
||||
const floorX = dx > 0 ? Math.floor : Math.ceil;
|
||||
const floorY = dy > 0 ? Math.floor : Math.ceil;
|
||||
|
||||
this.x = Math.min(
|
||||
Math.max(this.x + floorX(dx * (delta * 100)), 0),
|
||||
width * TILE_SIZE - this.width
|
||||
);
|
||||
this.y = Math.min(
|
||||
Math.max(this.y + floorY(dy * (delta * 100)), 0),
|
||||
height * TILE_SIZE - this.height
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue