mapcomplete/Customizations/AllKnownLayouts.ts

108 lines
4.7 KiB
TypeScript
Raw Normal View History

import * as bookcases from "../assets/themes/bookcases/Bookcases.json";
import * as aed from "../assets/themes/aed/aed.json";
2020-08-22 14:00:33 +00:00
import * as toilets from "../assets/themes/toilets/toilets.json";
import * as artworks from "../assets/themes/artwork/artwork.json";
import * as cyclestreets from "../assets/themes/cyclestreets/cyclestreets.json";
import * as ghostbikes from "../assets/themes/ghostbikes/ghostbikes.json"
2020-09-17 11:13:02 +00:00
import * as cyclofix from "../assets/themes/cyclofix/cyclofix.json"
import * as buurtnatuur from "../assets/themes/buurtnatuur/buurtnatuur.json"
2020-09-19 11:37:04 +00:00
import * as nature from "../assets/themes/nature/nature.json"
import * as maps from "../assets/themes/maps/maps.json"
import * as shops from "../assets/themes/shops/shops.json"
2020-10-17 20:27:27 +00:00
import * as bike_monitoring_stations from "../assets/themes/bike_monitoring_station/bike_monitoring_stations.json"
2020-10-19 10:08:42 +00:00
import * as fritures from "../assets/themes/fritures/fritures.json"
2020-10-23 09:49:39 +00:00
import * as benches from "../assets/themes/benches/benches.json";
2020-10-23 17:26:08 +00:00
import * as charging_stations from "../assets/themes/charging_stations/charging_stations.json"
import * as widths from "../assets/themes/widths/width.json"
2020-11-11 15:23:49 +00:00
import * as drinking_water from "../assets/themes/drinking_water/drinking_water.json"
2020-11-16 11:20:20 +00:00
import * as climbing from "../assets/themes/climbing/climbing.json"
2020-11-13 22:58:11 +00:00
import * as surveillance_cameras from "../assets/themes/surveillance_cameras/surveillance_cameras.json"
import * as trees from "../assets/themes/trees/trees.json"
2020-11-11 15:23:49 +00:00
import * as personal from "../assets/themes/personalLayout/personalLayout.json"
2020-12-31 20:09:22 +00:00
import * as playgrounds from "../assets/themes/playgrounds/playgrounds.json"
import * as bicycle_lib from "../assets/themes/bicycle_library/bicycle_library.json"
2020-11-13 22:58:11 +00:00
import LayerConfig from "./JSON/LayerConfig";
2020-11-11 15:23:49 +00:00
import LayoutConfig from "./JSON/LayoutConfig";
2020-11-13 22:58:11 +00:00
import SharedLayers from "./SharedLayers";
2020-07-05 16:59:47 +00:00
export class AllKnownLayouts {
2020-10-27 00:01:34 +00:00
public static allLayers: Map<string, LayerConfig> = undefined;
2020-11-11 15:23:49 +00:00
private static GenerateCycloFix(): LayoutConfig {
const layout = new LayoutConfig(cyclofix)
2020-09-17 11:13:02 +00:00
const now = new Date();
const m = now.getMonth() + 1;
const day = new Date().getDate() + 1;
2020-09-17 11:13:02 +00:00
const date = day + "/" + m;
if (date === "31/10" || date === "1/11" || date === "2/11") {
console.log("The current date is ",date,", which means we remember our dead")
2020-09-17 11:13:02 +00:00
// Around Halloween/Fiesta de muerte/Allerzielen, we remember the dead
layout.layers.push(
2020-10-27 00:01:34 +00:00
SharedLayers.sharedLayers.get("ghost_bike")
2020-09-17 11:13:02 +00:00
);
}
return layout;
}
2020-11-11 15:23:49 +00:00
public static layoutsList: LayoutConfig[] = [
new LayoutConfig(personal),
AllKnownLayouts.GenerateCycloFix(),
2020-11-11 15:23:49 +00:00
new LayoutConfig(aed),
2020-12-14 00:14:22 +00:00
new LayoutConfig(bookcases),
2020-11-11 15:23:49 +00:00
new LayoutConfig(toilets),
2020-12-14 00:14:22 +00:00
new LayoutConfig(artworks),
new LayoutConfig(ghostbikes),
2020-11-11 15:23:49 +00:00
new LayoutConfig(shops),
new LayoutConfig(drinking_water),
new LayoutConfig(nature),
new LayoutConfig(cyclestreets),
new LayoutConfig(bicycle_lib),
2020-12-14 00:14:22 +00:00
new LayoutConfig(maps),
new LayoutConfig(fritures),
2020-11-11 15:23:49 +00:00
new LayoutConfig(benches),
new LayoutConfig(charging_stations),
2020-12-14 00:14:22 +00:00
new LayoutConfig(widths),
new LayoutConfig(buurtnatuur),
new LayoutConfig(bike_monitoring_stations),
new LayoutConfig(surveillance_cameras),
2020-12-31 20:09:22 +00:00
new LayoutConfig(climbing),
2021-01-04 18:08:22 +00:00
new LayoutConfig(playgrounds),
new LayoutConfig(trees),
2020-07-31 02:58:58 +00:00
];
2020-09-17 11:13:02 +00:00
2020-07-31 02:58:58 +00:00
2020-11-11 15:23:49 +00:00
public static allSets: Map<string, LayoutConfig> = AllKnownLayouts.AllLayouts();
2020-07-24 23:07:02 +00:00
2020-11-11 15:23:49 +00:00
private static AllLayouts(): Map<string, LayoutConfig> {
2020-10-27 00:01:34 +00:00
this.allLayers = new Map<string, LayerConfig>();
2020-07-31 02:58:58 +00:00
for (const layout of this.layoutsList) {
for (let i = 0; i < layout.layers.length; i++) {
let layer = layout.layers[i];
if (typeof (layer) === "string") {
2020-10-27 00:01:34 +00:00
layer = layout.layers[i] = SharedLayers.sharedLayers.get(layer);
if(layer === undefined){
2020-10-27 00:01:34 +00:00
console.log("Defined layers are ", SharedLayers.sharedLayers.keys())
throw `Layer ${layer} was not found or defined - probably a type was made`
}
}
2020-07-31 02:58:58 +00:00
if (this.allLayers[layer.id] !== undefined) {
2020-07-24 23:07:02 +00:00
continue;
}
2020-07-31 02:58:58 +00:00
this.allLayers[layer.id] = layer;
this.allLayers[layer.id.toLowerCase()] = layer;
2020-07-24 23:07:02 +00:00
}
}
2020-11-11 15:23:49 +00:00
const allSets: Map<string, LayoutConfig> = new Map();
2020-07-31 02:58:58 +00:00
for (const layout of this.layoutsList) {
allSets[layout.id] = layout;
allSets[layout.id.toLowerCase()] = layout;
2020-07-05 16:59:47 +00:00
}
return allSets;
}
2020-07-05 16:59:47 +00:00
}