mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 09:23:08 +02:00
68 lines
1.3 KiB
TypeScript
68 lines
1.3 KiB
TypeScript
import { ref, computed } from 'vue';
|
|
import * as os from '@/os';
|
|
|
|
type SaveData = {
|
|
gameVersion: number;
|
|
cookies: number;
|
|
totalCookies: number;
|
|
totalHandmadeCookies: number;
|
|
clicked: number;
|
|
achievements: any[];
|
|
facilities: any[];
|
|
};
|
|
|
|
export const saveData = ref<SaveData>();
|
|
export const ready = computed(() => saveData.value != null);
|
|
|
|
let prev = '';
|
|
|
|
export async function load() {
|
|
try {
|
|
saveData.value = await os.api('i/registry/get', {
|
|
scope: ['clickerGame'],
|
|
key: 'saveData',
|
|
});
|
|
} catch (err) {
|
|
if (err.code === 'NO_SUCH_KEY') {
|
|
saveData.value = {
|
|
gameVersion: 2,
|
|
cookies: 0,
|
|
totalCookies: 0,
|
|
totalHandmadeCookies: 0,
|
|
clicked: 0,
|
|
achievements: [],
|
|
facilities: [],
|
|
};
|
|
save();
|
|
return;
|
|
}
|
|
throw err;
|
|
}
|
|
|
|
// migration
|
|
if (saveData.value.gameVersion === 1) {
|
|
saveData.value = {
|
|
gameVersion: 2,
|
|
cookies: saveData.value.cookies,
|
|
totalCookies: saveData.value.cookies,
|
|
totalHandmadeCookies: saveData.value.cookies,
|
|
clicked: saveData.value.clicked,
|
|
achievements: [],
|
|
facilities: [],
|
|
};
|
|
save();
|
|
}
|
|
}
|
|
|
|
export async function save() {
|
|
const current = JSON.stringify(saveData.value);
|
|
if (current === prev) return;
|
|
|
|
await os.api('i/registry/set', {
|
|
scope: ['clickerGame'],
|
|
key: 'saveData',
|
|
value: saveData.value,
|
|
});
|
|
|
|
prev = current;
|
|
}
|