MultiplayerMinesweeper/scripts/world/world.mjs

57 lines
1.4 KiB
JavaScript

import * as obfuscater from "./obfuscator.mjs";
import * as generator from "./generator.mjs"
import * as marker from "./marker.mjs"
import * as log from "../log.mjs"
import * as flagger from "./flagger.mjs"
import * as placer from "./placer.mjs"
export class World {
constructor(options) {
this.mines = options.mines
this.width = options.width*1
this.height = options.height*1
this.isGenerated = false;
this.isObfuscated = false;
this.isMarked = false;
this.data = Array.from(Array(this.width), () => new Array(this.height));
for (let x = 0; x < this.width; x++){
for (let y = 0; y < this.height; y++){
this.data[x][y] = {type: 1, flag: 0, mask: true}
}
}
}
click (x, y, mode, player) {
if (this.isGenerated) {
if (mode === 2) {
this.data = flagger.flag(x, y, this.data, player)
}
if (mode === 0) {
this.data = placer.place(x, y, this.data, player)
}
} else {
this.generate(x, y).mark();
this.data = placer.place(x, y, this.data, player)
}
}
generate(x, y) {
if (this.isGenerated) return log.log("Already Generated");
return generator.generate(x, y, this);
}
mark() {
if (this.isMarked) return log.log("Already Marked!");
return marker.mark(this);
}
obfuscate() {
if (this.isObfuscated) return log.log("already done")
const tempWorld = JSON.parse(JSON.stringify(this));;
return obfuscater.obfuscate(tempWorld);
}
}