mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-21 12:36:15 -04:00
71 lines
No EOL
1.7 KiB
TypeScript
71 lines
No EOL
1.7 KiB
TypeScript
// Settings
|
|
|
|
import {toast} from "./toast";
|
|
import {t} from "./i18n/i18n";
|
|
|
|
let cachedSettings: { [key: string]: unknown } = {};
|
|
|
|
try {
|
|
for (let key in localStorage) {
|
|
try {
|
|
cachedSettings[key] = JSON.parse(localStorage.getItem(key) || "null");
|
|
} catch (e) {
|
|
console.warn(e);
|
|
}
|
|
}
|
|
} catch (e) {
|
|
console.warn(e);
|
|
}
|
|
|
|
export function getSettingValue<T>(key: string, defaultValue: T) {
|
|
return (cachedSettings[key] as T) ?? defaultValue;
|
|
}
|
|
|
|
// We avoid using localstorage synchronously for perf reasons
|
|
let needsSaving: Set<string> = new Set();
|
|
export function setSettingValue<T>(key: string, value: T) {
|
|
needsSaving.add(key);
|
|
cachedSettings[key] = value;
|
|
}
|
|
|
|
export function commitSettingsChangesToLocalStorage() {
|
|
try {
|
|
for (let key of needsSaving) {
|
|
localStorage.setItem(key, JSON.stringify(cachedSettings[key]));
|
|
}
|
|
needsSaving.clear();
|
|
} catch (e) {
|
|
console.warn(e);
|
|
}
|
|
}
|
|
setInterval(() => commitSettingsChangesToLocalStorage(), 500);
|
|
|
|
export function getTotalScore() {
|
|
return getSettingValue("breakout_71_total_score", 0);
|
|
}
|
|
|
|
export function getCurrentMaxCoins() {
|
|
return Math.pow(2, getSettingValue("max_coins", 2)) * 200;
|
|
}
|
|
export function getCurrentMaxParticles() {
|
|
return getCurrentMaxCoins();
|
|
}
|
|
export function cycleMaxCoins() {
|
|
setSettingValue("max_coins", (getSettingValue("max_coins", 2) + 1) % 7);
|
|
}
|
|
|
|
let asked=false
|
|
export function askForPersistentStorage(){
|
|
if(asked) return
|
|
asked=true
|
|
if (navigator.storage && navigator.storage.persist) {
|
|
navigator.storage.persist().then((persistent) => {
|
|
if (persistent) {
|
|
toast(t('settings.storage_granted'))
|
|
} else {
|
|
toast(t('settings.storage_refused'))
|
|
}
|
|
});
|
|
}
|
|
|
|
} |