LiveAtlas/src/store/getters.ts

76 lines
2.4 KiB
TypeScript
Raw Normal View History

2020-12-16 16:54:41 +00:00
/*
* Copyright 2020 James Lyne
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2020-11-23 16:16:26 +00:00
import {GetterTree} from "vuex";
import {State} from "@/store/state";
2020-12-10 02:22:29 +00:00
import Util from "@/util";
2020-11-23 16:16:26 +00:00
export type Getters = {
playerMarkersEnabled(state: State): boolean;
2020-12-01 23:20:38 +00:00
coordinatesControlEnabled(state: State): boolean;
clockControlEnabled(state: State): boolean;
2020-12-10 02:22:29 +00:00
night(state: State): boolean;
mapBackground(state: State, getters: GetterTree<State, State> & Getters): string;
url(state: State, getters: GetterTree<State, State> & Getters): string;
2020-11-23 16:16:26 +00:00
}
export const getters: GetterTree<State, State> & Getters = {
playerMarkersEnabled(state: State): boolean {
return state.components.playerMarkers !== undefined;
2020-12-01 23:20:38 +00:00
},
coordinatesControlEnabled(state: State): boolean {
return state.components.coordinatesControl !== undefined;
},
clockControlEnabled(state: State): boolean {
return state.components.clockControl !== undefined;
2020-12-10 02:22:29 +00:00
},
night(state: State): boolean {
return Util.getMinecraftTime(state.currentWorldState.timeOfDay).night;
},
mapBackground(state: State): string {
if(!state.currentMap) {
return 'transparent';
}
if(state.currentMap.nightAndDay) {
if(Util.getMinecraftTime(state.currentWorldState.timeOfDay).night) {
2020-12-10 02:22:29 +00:00
return state.currentMap.backgroundNight || state.currentMap.background || 'transparent';
}
return state.currentMap.backgroundDay || state.currentMap.background || 'transparent';
}
return state.currentMap.background || 'transparent';
},
url(state: State): string {
const x = Math.round(state.currentLocation.x),
y = Math.round(state.currentLocation.y),
z = Math.round(state.currentLocation.z),
locationString = `${x},${y},${z}`,
zoom = state.currentZoom;
if(!state.currentWorld || !state.currentMap) {
return '';
}
return `#${state.currentWorld.name};${state.currentMap.name};${locationString};${zoom}`;
}
2020-11-23 16:16:26 +00:00
}