improcket/js/game/index.mjs
2018-03-07 11:17:09 +00:00

62 lines
1.1 KiB
JavaScript

import * as graphics from '../graphics/index.mjs';
import * as gui from '../gui/index.mjs';
import * as assets from '../assets.mjs';
import * as input from '../input.mjs';
import * as inventory from './inventory.mjs';
import * as world from '../world/index.mjs';
import * as events from './events.mjs';
import * as control from './control.mjs';
import * as edit from './edit.mjs';
export let state;
export async function init() {
state = {
view: 'menu',
playing: false,
editing: false,
paused: false,
inventory: false
};
graphics.init();
await assets.init();
gui.init();
input.init();
events.startGame();
//tick(); return;
// Recursive `requestAnimationFrame` can cause problems with Parcel.
while(true) {
tick();
await new Promise(res => requestAnimationFrame(res));
}
}
export function changeView(view) {
state.view = view;
gui.changeView(view);
if (view == 'game') {
state.playing = true;
state.editing = false;
state.paused = false;
world.init();
inventory.init();
}
}
function tick() {
events.tick();
if (state.view == 'game') {
world.tick();
control.tick();
}
gui.tick();
graphics.render();
input.tick();
}