fix missing data
This commit is contained in:
parent
69ab049f50
commit
0dcebdd718
1 changed files with 8 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
import fs from 'fs'
|
import fs from 'fs'
|
||||||
import { createPuzzle } from './Puzzle.js'
|
import { createPuzzle } from './Puzzle.js'
|
||||||
import GameCommon from './../common/GameCommon.js'
|
import GameCommon from './../common/GameCommon.js'
|
||||||
|
import Util from './../common/Util.js'
|
||||||
|
|
||||||
async function createGame(gameId, targetTiles, image) {
|
async function createGame(gameId, targetTiles, image) {
|
||||||
GameCommon.newGame({
|
GameCommon.newGame({
|
||||||
|
|
@ -23,6 +24,13 @@ function loadAllGames() {
|
||||||
const file = `${DATA_DIR}/${f}`
|
const file = `${DATA_DIR}/${f}`
|
||||||
const contents = fs.readFileSync(file, 'utf-8')
|
const contents = fs.readFileSync(file, 'utf-8')
|
||||||
const game = JSON.parse(contents)
|
const game = JSON.parse(contents)
|
||||||
|
if (typeof game.puzzle.data.started === 'undefined') {
|
||||||
|
game.puzzle.data.started = Math.round(fs.statSync(file).atimeMs)
|
||||||
|
}
|
||||||
|
if (typeof game.puzzle.data.finished === 'undefined') {
|
||||||
|
let unfinished = game.puzzle.tiles.map(Util.decodeTile).find(t => t.owner !== -1)
|
||||||
|
game.puzzle.data.finished = unfinished ? 0 : Util.timestamp()
|
||||||
|
}
|
||||||
GameCommon.newGame({
|
GameCommon.newGame({
|
||||||
id: game.id,
|
id: game.id,
|
||||||
puzzle: game.puzzle,
|
puzzle: game.puzzle,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue