54 lines
3.0 KiB
TypeScript
54 lines
3.0 KiB
TypeScript
import fs from 'node:fs';
|
|
import { join } from 'node:path';
|
|
import type { Unit } from './unit';
|
|
import type { SolarSystem } from './solar-system';
|
|
import type { Attribute } from './attribute';
|
|
import type { Blueprint } from './blueprint';
|
|
import type { Category } from './category';
|
|
import type { Effect } from './effect';
|
|
import type { Group } from './group';
|
|
import type { Icon } from './icon';
|
|
import type { MarketGroup } from './market-group';
|
|
import type { MetaGroup } from './meta-group';
|
|
import type { Region } from './region';
|
|
import type { Schematic } from './schematic';
|
|
import type { Skill } from './skill';
|
|
import type { Type } from './type';
|
|
|
|
const dataSets = {
|
|
loaded: false,
|
|
dogma_attributes: {} as Record<string, Attribute>,
|
|
blueprints: {} as Record<string, Blueprint>,
|
|
categories: {} as Record<string, Category>,
|
|
dogma_effects: {} as Record<string, Effect>,
|
|
groups: {} as Record<string, Group>,
|
|
icons: {} as Record<string, Icon>,
|
|
market_groups: {} as Record<string, MarketGroup>,
|
|
meta_groups: {} as Record<string, MetaGroup>,
|
|
regions: {} as Record<string, Region>,
|
|
schematics: {} as Record<string, Schematic>,
|
|
skills: {} as Record<string, Skill>,
|
|
solar_systems: {} as Record<string, SolarSystem>,
|
|
types: {} as Record<string, Type>,
|
|
units: {} as Record<string, Unit>,
|
|
};
|
|
export async function loadModels() {
|
|
dataSets.dogma_attributes = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/dogma_attributes.json')).toString());
|
|
dataSets.blueprints = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/blueprints.json')).toString());
|
|
dataSets.categories = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/categories.json')).toString());
|
|
dataSets.dogma_effects = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/dogma_effects.json')).toString());
|
|
dataSets.groups = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/groups.json')).toString());
|
|
dataSets.icons = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/icons.json')).toString());
|
|
dataSets.market_groups = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/market_groups.json')).toString());
|
|
dataSets.meta_groups = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/meta_groups.json')).toString());
|
|
dataSets.regions = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/regions.json')).toString());
|
|
dataSets.schematics = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/schematics.json')).toString());
|
|
dataSets.skills = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/skills.json')).toString());
|
|
dataSets.solar_systems = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/solar_systems.json')).toString());
|
|
dataSets.types = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/types.json')).toString());
|
|
dataSets.units = JSON.parse(fs.readFileSync(join(__dirname, '../data/reference-data/units.json')).toString());
|
|
dataSets.loaded = true;
|
|
}
|
|
|
|
export { dataSets };
|