Make changes playable

This commit is contained in:
dylan
2023-05-05 12:21:14 -07:00
parent 99655e663c
commit b58a0d8cb1
2 changed files with 14 additions and 10 deletions

View File

@ -9,13 +9,16 @@ import { repl, resetRepl } from "./repl.ts";
import { addToContext } from "./runcode.ts";
import { editmode } from "./editmode.ts";
const game = codeSheet(0);
game.init();
// deno-lint-ignore no-explicit-any
let game: any = null;
let mode: "play" | "edit" | "repl" = "repl";
addToContext("play", () => {mode = "play"});
addToContext("play", () => {
mode = "play";
game = codeSheet(0);
game.init();
});
clearScreen();
@ -37,8 +40,10 @@ await mainloop((_t) => {
mode = modeTo;
} else {
if (mode === "play") {
game.update();
game.draw();
if (game) {
game.update();
game.draw();
}
frame();
} else if (mode === "repl") {
repl.update();