2021-04-07 14:09:45 +02:00
|
|
|
import {areCharacterLayersValid, isUserNameValid, LocalUser} from "./LocalUser";
|
2020-10-12 16:23:07 +02:00
|
|
|
|
2021-01-29 14:42:13 +01:00
|
|
|
const playerNameKey = 'playerName';
|
|
|
|
const selectedPlayerKey = 'selectedPlayer';
|
|
|
|
const customCursorPositionKey = 'customCursorPosition';
|
|
|
|
const characterLayersKey = 'characterLayers';
|
2021-04-02 21:21:11 +02:00
|
|
|
const companionKey = 'companion';
|
2021-01-29 14:42:13 +01:00
|
|
|
const gameQualityKey = 'gameQuality';
|
|
|
|
const videoQualityKey = 'videoQuality';
|
|
|
|
const audioPlayerVolumeKey = 'audioVolume';
|
|
|
|
const audioPlayerMuteKey = 'audioMute';
|
2021-02-03 23:28:46 +01:00
|
|
|
const helpCameraSettingsShown = 'helpCameraSettingsShown';
|
2021-04-07 12:42:56 +02:00
|
|
|
const fullscreenKey = 'fullscreen';
|
2020-12-04 11:30:35 +01:00
|
|
|
|
2020-10-12 16:23:07 +02:00
|
|
|
class LocalUserStore {
|
|
|
|
saveUser(localUser: LocalUser) {
|
|
|
|
localStorage.setItem('localUser', JSON.stringify(localUser));
|
|
|
|
}
|
|
|
|
getLocalUser(): LocalUser|null {
|
|
|
|
const data = localStorage.getItem('localUser');
|
|
|
|
return data ? JSON.parse(data) : null;
|
|
|
|
}
|
2021-01-29 14:42:13 +01:00
|
|
|
|
2020-10-15 12:05:40 +02:00
|
|
|
setName(name:string): void {
|
2021-01-29 14:42:13 +01:00
|
|
|
localStorage.setItem(playerNameKey, name);
|
2020-10-15 12:05:40 +02:00
|
|
|
}
|
2021-04-07 14:09:45 +02:00
|
|
|
getName(): string|null {
|
|
|
|
const value = localStorage.getItem(playerNameKey) || '';
|
|
|
|
return isUserNameValid(value) ? value : null;
|
2020-10-15 12:05:40 +02:00
|
|
|
}
|
2020-10-20 13:44:57 +02:00
|
|
|
|
|
|
|
setPlayerCharacterIndex(playerCharacterIndex: number): void {
|
2021-01-29 14:42:13 +01:00
|
|
|
localStorage.setItem(selectedPlayerKey, ''+playerCharacterIndex);
|
2020-10-20 13:44:57 +02:00
|
|
|
}
|
|
|
|
getPlayerCharacterIndex(): number {
|
2021-01-29 14:42:13 +01:00
|
|
|
return parseInt(localStorage.getItem(selectedPlayerKey) || '');
|
2020-10-20 13:44:57 +02:00
|
|
|
}
|
|
|
|
|
2020-10-20 17:22:32 +02:00
|
|
|
setCustomCursorPosition(activeRow:number, selectedLayers: number[]): void {
|
2021-01-29 14:42:13 +01:00
|
|
|
localStorage.setItem(customCursorPositionKey, JSON.stringify({activeRow, selectedLayers}));
|
2020-10-20 13:44:57 +02:00
|
|
|
}
|
2020-10-20 17:22:32 +02:00
|
|
|
getCustomCursorPosition(): {activeRow:number, selectedLayers:number[]}|null {
|
2021-01-29 14:42:13 +01:00
|
|
|
return JSON.parse(localStorage.getItem(customCursorPositionKey) || "null");
|
2020-10-20 13:44:57 +02:00
|
|
|
}
|
2020-12-04 11:30:35 +01:00
|
|
|
|
|
|
|
setCharacterLayers(layers: string[]): void {
|
2021-01-29 14:42:13 +01:00
|
|
|
localStorage.setItem(characterLayersKey, JSON.stringify(layers));
|
2020-12-04 11:30:35 +01:00
|
|
|
}
|
|
|
|
getCharacterLayers(): string[]|null {
|
2021-04-07 14:09:45 +02:00
|
|
|
const value = JSON.parse(localStorage.getItem(characterLayersKey) || "null");
|
|
|
|
return areCharacterLayersValid(value) ? value : null;
|
2020-12-04 11:30:35 +01:00
|
|
|
}
|
2021-01-29 14:42:13 +01:00
|
|
|
|
2021-04-02 23:00:51 +02:00
|
|
|
setCompanion(companion: string|null): void {
|
|
|
|
return localStorage.setItem(companionKey, JSON.stringify(companion));
|
2021-04-02 21:21:11 +02:00
|
|
|
}
|
|
|
|
getCompanion(): string|null {
|
2021-04-06 18:54:45 +02:00
|
|
|
const companion = JSON.parse(localStorage.getItem(companionKey) || "null");
|
|
|
|
|
|
|
|
if (typeof companion !== "string" || companion === "") {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return companion;
|
2021-04-02 23:00:51 +02:00
|
|
|
}
|
|
|
|
wasCompanionSet(): boolean {
|
|
|
|
return localStorage.getItem(companionKey) ? true : false;
|
2021-04-02 21:21:11 +02:00
|
|
|
}
|
|
|
|
|
2020-12-04 11:30:35 +01:00
|
|
|
setGameQualityValue(value: number): void {
|
|
|
|
localStorage.setItem(gameQualityKey, '' + value);
|
|
|
|
}
|
2021-01-29 14:42:13 +01:00
|
|
|
getGameQualityValue(): number {
|
|
|
|
return parseInt(localStorage.getItem(gameQualityKey) || '60');
|
2020-12-04 11:30:35 +01:00
|
|
|
}
|
2021-01-29 14:42:13 +01:00
|
|
|
|
2020-12-04 11:30:35 +01:00
|
|
|
setVideoQualityValue(value: number): void {
|
|
|
|
localStorage.setItem(videoQualityKey, '' + value);
|
|
|
|
}
|
2021-01-29 14:42:13 +01:00
|
|
|
getVideoQualityValue(): number {
|
|
|
|
return parseInt(localStorage.getItem(videoQualityKey) || '20');
|
|
|
|
}
|
|
|
|
|
|
|
|
setAudioPlayerVolume(value: number): void {
|
|
|
|
localStorage.setItem(audioPlayerVolumeKey, '' + value);
|
|
|
|
}
|
|
|
|
getAudioPlayerVolume(): number {
|
|
|
|
return parseFloat(localStorage.getItem(audioPlayerVolumeKey) || '1');
|
|
|
|
}
|
|
|
|
|
|
|
|
setAudioPlayerMuted(value: boolean): void {
|
|
|
|
localStorage.setItem(audioPlayerMuteKey, value.toString());
|
|
|
|
}
|
|
|
|
getAudioPlayerMuted(): boolean {
|
|
|
|
return localStorage.getItem(audioPlayerMuteKey) === 'true';
|
|
|
|
}
|
2021-03-24 15:59:18 +01:00
|
|
|
|
|
|
|
setHelpCameraSettingsShown(): void {
|
|
|
|
localStorage.setItem(helpCameraSettingsShown, '1');
|
|
|
|
}
|
|
|
|
getHelpCameraSettingsShown(): boolean {
|
|
|
|
return localStorage.getItem(helpCameraSettingsShown) === '1';
|
|
|
|
}
|
2021-02-03 23:28:46 +01:00
|
|
|
|
2021-04-07 12:42:56 +02:00
|
|
|
setFullscreen(value: boolean): void {
|
|
|
|
localStorage.setItem(fullscreenKey, value.toString());
|
2021-02-03 23:28:46 +01:00
|
|
|
}
|
2021-04-07 12:42:56 +02:00
|
|
|
getFullscreen(): boolean {
|
|
|
|
return localStorage.getItem(fullscreenKey) === 'true';
|
2021-02-03 23:28:46 +01:00
|
|
|
}
|
2020-10-12 16:23:07 +02:00
|
|
|
}
|
|
|
|
|
2021-01-29 14:42:13 +01:00
|
|
|
export const localUserStore = new LocalUserStore();
|