create StateManager from file

This commit is contained in:
Kistaro Windrider 2025-02-23 22:23:27 -08:00
parent 58b8bbc27b
commit 2837461add
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -10,6 +10,7 @@ import { openingScene } from "./openingscene.ts";
import { generateName } from "./namegen.ts";
import { photogenicThralls } from "./thralls.ts";
import { choose } from "./utils.ts";
import { SaveFileV1 } from "./saveformat.ts";
const N_TURNS: number = 9;
@ -17,9 +18,9 @@ export class StateManager {
#turn: number;
#revision: number;
constructor() {
this.#turn = 1;
this.#revision = 1;
constructor(file?:SaveFileV1) {
this.#turn = file?.turn ?? 1;
this.#revision = file?.revision ?? 1;
}
getTurn(): number {