2020-02-11 21:20:11 +01:00
|
|
|
'use strict';
|
|
|
|
|
2020-01-22 22:50:45 +01:00
|
|
|
import Key from "./Key.js";
|
|
|
|
import MrCroc from "./MrCroc.js";
|
2020-01-23 23:09:03 +01:00
|
|
|
import RetroArchitecture from "./retro/RetroArchitecture.js";
|
2020-02-09 22:06:59 +01:00
|
|
|
import Camera from "./Camera.js";
|
2020-02-11 21:20:11 +01:00
|
|
|
import Gisela from "./Gisela.js";
|
2020-02-12 21:29:06 +01:00
|
|
|
import Setting from "./Setting.js";
|
2020-02-12 23:30:04 +01:00
|
|
|
import FrameRateMeasurer from "./FrameRateMeasurer.js";
|
2020-02-14 00:12:24 +01:00
|
|
|
import GraphicSet from "./GraphicSet.js";
|
2020-02-16 00:53:03 +01:00
|
|
|
import ImageLoader from "./ImageLoader.js";
|
|
|
|
import Level from "./Level.js";
|
2020-02-16 15:32:17 +01:00
|
|
|
import InterfaceEvent from "./events/InterfaceEvent.js";
|
2020-02-16 19:39:44 +01:00
|
|
|
import UrlParam from "./UrlParam.js";
|
2020-02-24 21:09:21 +01:00
|
|
|
import UserInterface from "./ui/UserInterface.js";
|
|
|
|
import TextMessageGisela from "./ui/TextMessageGisela.js";
|
|
|
|
import TextMessageMrCroc from "./ui/TextMessageMrCroc.js";
|
2023-09-17 14:18:21 +02:00
|
|
|
import {LoadLevelDialog} from "./ui/LoadLevelDialog.js";
|
2020-01-22 22:50:45 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
class Game
|
2020-01-22 22:50:45 +01:00
|
|
|
{
|
2023-09-17 14:18:21 +02:00
|
|
|
static GAME_SPEED = 1
|
|
|
|
|
|
|
|
constructor(level) {
|
|
|
|
this.level = level;
|
|
|
|
this.fps = 0;
|
|
|
|
this.frameDuration = 0;
|
|
|
|
this.lastRendered = undefined;
|
|
|
|
this.lastTimestamp = undefined;
|
|
|
|
this.canvas = document.getElementById('canvas');
|
|
|
|
this.context = this.canvas.getContext('2d');
|
|
|
|
this.mrCroc = new MrCroc();
|
|
|
|
this.gisela = new Gisela();
|
|
|
|
this.architecture = RetroArchitecture.createFromData(this.level);
|
|
|
|
this.camera = new Camera();
|
|
|
|
this.gameFinished = false;
|
|
|
|
this.hasPlayerLeftArchitecture = false;
|
|
|
|
this.textBoxGameStart = new TextMessageMrCroc('Mr. Croc: "Where is Gisela? I have to find her!"', this.context);
|
|
|
|
this.textBoxGameFinished = new TextMessageGisela(
|
|
|
|
'Gisela: "Thanks for showing up, Mr. Croc, but I\'m not in danger."',
|
|
|
|
this.context
|
|
|
|
);
|
|
|
|
this.userInterface = new UserInterface();
|
|
|
|
this.isPaused = false;
|
2020-01-22 22:50:45 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
this.KeyLeft = new Key('ArrowLeft');
|
|
|
|
this.KeyRight = new Key('ArrowRight');
|
|
|
|
this.KeyJump = new Key('Space');
|
|
|
|
this.KeyLoad = new Key('KeyL');
|
2020-01-22 22:50:45 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
this.loader = new ImageLoader();
|
|
|
|
this.loader.addImage(Setting.GRAPHICS_LOCATION + 'mr-croc-walk-right.png');
|
|
|
|
this.loader.addImage(Setting.GRAPHICS_LOCATION + 'mr-croc-walk-left.png');
|
|
|
|
this.loader.addImage(Setting.TILESET_LOCATION + GraphicSet[this.level.getTilesetId()].tileset);
|
|
|
|
this.loader.addImage(Setting.GRAPHICS_LOCATION + 'gisela-right.png');
|
|
|
|
this.loader.addImage(Setting.GRAPHICS_LOCATION + 'gisela-left.png');
|
2020-01-22 22:50:45 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
new FrameRateMeasurer();
|
2020-01-25 13:11:25 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
window.addEventListener(
|
|
|
|
'imagesloaded',
|
|
|
|
() => {
|
|
|
|
this.init();
|
|
|
|
}
|
|
|
|
);
|
2020-01-25 13:11:25 +01:00
|
|
|
}
|
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
render(timestamp)
|
|
|
|
{
|
|
|
|
if (timestamp - this.lastRendered < this.frameDuration) {
|
|
|
|
return;
|
|
|
|
}
|
2020-01-25 13:11:25 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
if (this.gisela.currentAnimation !== 'LOOK_LEFT' && this.mrCroc.position.x < this.gisela.position.x) {
|
|
|
|
this.gisela.currentAnimation = 'LOOK_LEFT';
|
|
|
|
} else if (this.gisela.currentAnimation !== 'LOOK_RIGHT' && this.mrCroc.position.x >= this.gisela.position.x) {
|
|
|
|
this.gisela.currentAnimation = 'LOOK_RIGHT';
|
|
|
|
}
|
|
|
|
|
|
|
|
this.context.clearRect(0, 0, window.innerWidth, window.innerHeight);
|
|
|
|
this.architecture.draw(this.context, this.camera);
|
|
|
|
this.mrCroc.draw(this.context, this.camera);
|
|
|
|
this.gisela.draw(this.context, this.camera);
|
|
|
|
this.userInterface.draw(this.context);
|
|
|
|
|
|
|
|
this.lastRendered = timestamp;
|
2020-01-25 13:11:25 +01:00
|
|
|
}
|
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
canBeFinished()
|
|
|
|
{
|
|
|
|
return (
|
|
|
|
!this.gameFinished &&
|
|
|
|
this.mrCroc.isJumping === false &&
|
|
|
|
this.architecture.isMovableInsideTargetPosition(this.mrCroc)
|
2020-01-25 23:30:36 +01:00
|
|
|
);
|
2023-09-17 14:18:21 +02:00
|
|
|
}
|
2020-01-25 23:30:36 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
handlePhysics(delta, timestamp)
|
|
|
|
{
|
|
|
|
let ceilingHeight = Math.max(
|
|
|
|
this.architecture.getCeilingHeight(this.mrCroc.getPositionHeadLeft()),
|
|
|
|
this.architecture.getCeilingHeight(this.mrCroc.getPositionHeadRight()),
|
|
|
|
);
|
2020-01-26 22:12:32 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
let groundHeight = Math.min(
|
|
|
|
this.architecture.getGroundHeight(this.mrCroc.getPositionFootLeft()),
|
|
|
|
this.architecture.getGroundHeight(this.mrCroc.getPositionFootRight())
|
2020-01-25 23:30:36 +01:00
|
|
|
);
|
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
/* Handle falling */
|
|
|
|
this.mrCroc.position.y += this.mrCroc.fallSpeed;
|
|
|
|
this.mrCroc.fallSpeed += this.level.gravity * delta;
|
2020-01-26 22:12:32 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
/* Handle ground collision */
|
|
|
|
if (this.mrCroc.position.y > groundHeight && this.mrCroc.fallSpeed > 0) {
|
|
|
|
this.mrCroc.position.y = groundHeight;
|
|
|
|
this.mrCroc.fallSpeed = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle ceiling collision */
|
|
|
|
if (this.mrCroc.position.y - this.mrCroc.getHeight() <= ceilingHeight) {
|
|
|
|
this.mrCroc.fallSpeed = 0;
|
|
|
|
this.mrCroc.position.y = ceilingHeight + this.mrCroc.getHeight() + 1;
|
2020-01-25 13:11:25 +01:00
|
|
|
}
|
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
this.handlePlayerMovement(delta, timestamp, groundHeight);
|
|
|
|
}
|
2020-02-11 21:20:11 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
updateCamera()
|
|
|
|
{
|
|
|
|
this.camera.focusPosition(
|
|
|
|
this.mrCroc.position.x - this.mrCroc.getWidth() * 0.5,
|
|
|
|
this.mrCroc.position.y - this.mrCroc.getHeight() * 0.5,
|
|
|
|
20
|
2020-02-11 21:20:11 +01:00
|
|
|
);
|
2023-09-17 14:18:21 +02:00
|
|
|
this.camera.lockCameraIntoBorders();
|
2020-02-11 21:20:11 +01:00
|
|
|
}
|
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
handlePlayerMovement(delta, timestamp, groundHeight)
|
|
|
|
{
|
|
|
|
/* Jumping */
|
|
|
|
if (!this.mrCroc.isJumping && this.mrCroc.fallSpeed === 0 && this.mrCroc.position.y === groundHeight && this.KeyJump.isPressed()) {
|
|
|
|
this.mrCroc.jump();
|
|
|
|
} else if (!this.KeyJump.isPressed()) {
|
|
|
|
this.mrCroc.isJumping = false;
|
2020-02-24 21:18:45 +01:00
|
|
|
}
|
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
/* Movement left and right */
|
|
|
|
if (!this.hasPlayerLeftArchitecture && this.KeyLeft.isPressed()) {
|
|
|
|
let lastWallLeft = Math.min(
|
|
|
|
this.architecture.getWallLeft(this.mrCroc.getPositionHeadLeft()),
|
|
|
|
this.architecture.getWallLeft(this.mrCroc.getPositionFootLeft())
|
|
|
|
);
|
2020-02-24 00:19:21 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
this.mrCroc.moveLeft(timestamp, delta);
|
2020-01-22 22:50:45 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
if (this.mrCroc.position.x <= lastWallLeft + this.mrCroc.getWidth() * 0.5) {
|
|
|
|
this.mrCroc.position.x = lastWallLeft + this.mrCroc.getWidth() * 0.5 + 1;
|
|
|
|
}
|
|
|
|
} else if (!this.hasPlayerLeftArchitecture && this.KeyRight.isPressed()) {
|
|
|
|
let lastWallRight = Math.max(
|
|
|
|
this.architecture.getWallRight(this.mrCroc.getPositionHeadRight()),
|
|
|
|
this.architecture.getWallRight(this.mrCroc.getPositionFootRight())
|
|
|
|
);
|
2020-02-12 21:29:06 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
this.mrCroc.moveRight(timestamp, delta);
|
2020-01-22 22:50:45 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
if (this.mrCroc.position.x >= lastWallRight - this.mrCroc.getWidth() * 0.5) {
|
|
|
|
this.mrCroc.position.x = lastWallRight - this.mrCroc.getWidth() * 0.5 - 1;
|
|
|
|
}
|
|
|
|
}
|
2020-02-16 19:39:44 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
if (!this.hasPlayerLeftArchitecture && !this.architecture.isInsideArchitecture(this.mrCroc.position)) {
|
|
|
|
this.hasPlayerLeftArchitecture = true;
|
|
|
|
|
|
|
|
setTimeout(
|
|
|
|
() => {
|
|
|
|
this.architecture.setMovableToStartPosition(this.mrCroc);
|
|
|
|
this.hasPlayerLeftArchitecture = false;
|
|
|
|
}, 2000
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2020-02-16 19:39:44 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
finish()
|
|
|
|
{
|
|
|
|
this.gameFinished = true;
|
|
|
|
this.KeyLeft.pressed = false;
|
|
|
|
this.KeyRight.pressed = false;
|
|
|
|
this.KeyJump.pressed = false;
|
|
|
|
this.lastTimestamp = undefined;
|
|
|
|
this.lastRendered = undefined;
|
|
|
|
this.textBoxGameFinished.updateLines(window.innerWidth - 40, this.context);
|
|
|
|
this.textBoxGameFinished.animate(75);
|
|
|
|
this.userInterface.addTextBox(this.textBoxGameFinished);
|
|
|
|
}
|
2020-02-16 19:39:44 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
init(loopFunction) {
|
|
|
|
this.canvas.width = window.innerWidth;
|
|
|
|
this.canvas.height = window.innerHeight;
|
|
|
|
this.canvas.style.backgroundAttachment = 'fixed';
|
|
|
|
this.canvas.style.backgroundSize = 'cover';
|
|
|
|
this.canvas.style.backgroundPosition = 'center center';
|
2020-02-16 19:39:44 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
if (GraphicSet[this.level.getTilesetId()].backgroundImage !== null) {
|
|
|
|
this.canvas.style.backgroundImage = 'url("' + Setting.GRAPHICS_LOCATION + GraphicSet[this.level.getTilesetId()].backgroundImage +'")';
|
2020-02-14 00:12:24 +01:00
|
|
|
}
|
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
this.canvas.style.backgroundColor = this.level.getBackgroundColor();
|
2020-01-19 00:45:17 +01:00
|
|
|
|
2020-01-25 23:30:36 +01:00
|
|
|
window.addEventListener(
|
|
|
|
'resize',
|
|
|
|
function () {
|
2023-09-17 14:18:21 +02:00
|
|
|
this.canvas.width = window.innerWidth;
|
|
|
|
this.canvas.height = window.innerHeight;
|
2020-01-25 23:30:36 +01:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
this.textBoxGameStart.animate(75, 1000);
|
|
|
|
this.textBoxGameStart.show(1000);
|
|
|
|
this.textBoxGameStart.hide(10000);
|
|
|
|
this.userInterface.addTextBox(this.textBoxGameStart);
|
2020-02-24 21:09:21 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
this.camera.borderRight = this.architecture.columns * this.architecture.tileWidth;
|
|
|
|
this.camera.borderBottom = this.architecture.rows * this.architecture.tileHeight;
|
2020-01-19 00:45:17 +01:00
|
|
|
|
2023-09-17 14:18:21 +02:00
|
|
|
this.architecture.setMovableToStartPosition(this.mrCroc);
|
|
|
|
this.architecture.setMovableToTargetPosition(this.gisela);
|
2020-01-25 13:11:25 +01:00
|
|
|
|
2020-02-16 15:32:17 +01:00
|
|
|
window.addEventListener(
|
|
|
|
InterfaceEvent.FRAME_RATE_MEASURED,
|
|
|
|
(event) => {
|
2023-09-17 14:18:21 +02:00
|
|
|
this.fps = event.frameRate;
|
|
|
|
this.frameDuration = 1000.0 / this.fps;
|
|
|
|
window.requestAnimationFrame(loopFunction);
|
2020-02-16 15:32:17 +01:00
|
|
|
}
|
|
|
|
);
|
2020-01-22 22:50:45 +01:00
|
|
|
}
|
2023-09-17 14:18:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function mainLoop(timestamp)
|
|
|
|
{
|
|
|
|
if (game.isPaused) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (game.lastRendered === undefined && game.lastTimestamp === undefined) {
|
|
|
|
game.lastRendered = timestamp;
|
|
|
|
game.lastTimestamp = timestamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
let delta = (timestamp - game.lastTimestamp) / (10 / Game.GAME_SPEED);
|
|
|
|
|
|
|
|
game.handlePhysics(delta, timestamp);
|
|
|
|
game.updateCamera();
|
|
|
|
game.render(timestamp);
|
|
|
|
game.lastTimestamp = timestamp;
|
|
|
|
|
|
|
|
if (game.canBeFinished()) {
|
|
|
|
game.finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (game.KeyLoad.isPressed()) {
|
|
|
|
const dialog = new LoadLevelDialog();
|
|
|
|
dialog.onClose = () => {
|
|
|
|
dialog.close();
|
|
|
|
game.isPaused = false;
|
|
|
|
window.requestAnimationFrame(mainLoop);
|
|
|
|
}
|
|
|
|
dialog.onLoad = (data) => {
|
|
|
|
game = new Game(Level.createFromJson(data));
|
|
|
|
game.init();
|
|
|
|
}
|
|
|
|
|
|
|
|
game.isPaused = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.requestAnimationFrame(mainLoop);
|
|
|
|
}
|
|
|
|
|
|
|
|
const LEVEL = [
|
|
|
|
'level01.json',
|
|
|
|
'moon.json',
|
|
|
|
'moonbase.json',
|
|
|
|
'terrain8.json',
|
|
|
|
];
|
|
|
|
|
|
|
|
const urlGetter = new UrlParam();
|
|
|
|
|
|
|
|
const levelIndex = urlGetter.getInt('level');
|
|
|
|
const level = Level.createFromFile(
|
|
|
|
Setting.LEVELS_LOCATION + LEVEL[levelIndex < 0 || levelIndex >= LEVEL.length ? 0 : levelIndex]
|
|
|
|
);
|
|
|
|
|
|
|
|
let game = new Game(level);
|
|
|
|
game.init(mainLoop);
|