Server/project/src/helpers/PresetHelper.ts

196 lines
5.6 KiB
TypeScript

import { inject, injectable } from "tsyringe";
import { IPreset } from "@spt/models/eft/common/IGlobals";
import { BaseClasses } from "@spt/models/enums/BaseClasses";
import { DatabaseServer } from "@spt/servers/DatabaseServer";
import { ICloner } from "@spt/utils/cloners/ICloner";
import { ItemHelper } from "./ItemHelper";
@injectable()
export class PresetHelper
{
protected lookup: Record<string, string[]> = {};
protected defaultEquipmentPresets: Record<string, IPreset>;
protected defaultWeaponPresets: Record<string, IPreset>;
constructor(
@inject("DatabaseServer") protected databaseServer: DatabaseServer,
@inject("ItemHelper") protected itemHelper: ItemHelper,
@inject("RecursiveCloner") protected cloner: ICloner,
)
{}
public hydratePresetStore(input: Record<string, string[]>): void
{
this.lookup = input;
}
/**
* Get default weapon and equipment presets
* @returns Dictionary
*/
public getDefaultPresets(): Record<string, IPreset>
{
const weapons = this.getDefaultWeaponPresets();
const equipment = this.getDefaultEquipmentPresets();
return Object.assign({}, weapons, equipment);
}
/**
* Get default weapon presets
* @returns Dictionary
*/
public getDefaultWeaponPresets(): Record<string, IPreset>
{
if (!this.defaultWeaponPresets)
{
this.defaultWeaponPresets = Object.values(this.databaseServer.getTables().globals!.ItemPresets)
.filter(
(preset) =>
preset._encyclopedia !== undefined
&& this.itemHelper.isOfBaseclass(preset._encyclopedia, BaseClasses.WEAPON),
)
.reduce((acc, cur) =>
{
acc[cur._id] = cur;
return acc;
}, {});
}
return this.defaultWeaponPresets;
}
/**
* Get default equipment presets
* @returns Dictionary
*/
public getDefaultEquipmentPresets(): Record<string, IPreset>
{
if (!this.defaultEquipmentPresets)
{
this.defaultEquipmentPresets = Object.values(this.databaseServer.getTables().globals!.ItemPresets)
.filter(
(preset) =>
preset._encyclopedia !== undefined
&& this.itemHelper.armorItemCanHoldMods(preset._encyclopedia),
)
.reduce((acc, cur) =>
{
acc[cur._id] = cur;
return acc;
}, {});
}
return this.defaultEquipmentPresets;
}
public isPreset(id: string): boolean
{
return id in this.databaseServer.getTables().globals!.ItemPresets;
}
/**
* Checks to see if the preset is of the given base class.
* @param id The id of the preset
* @param baseClass The BaseClasses enum to check against
* @returns True if the preset is of the given base class, false otherwise
*/
public isPresetBaseClass(id: string, baseClass: BaseClasses): boolean
{
return this.isPreset(id) && this.itemHelper.isOfBaseclass(this.getPreset(id)._encyclopedia, baseClass);
}
public hasPreset(templateId: string): boolean
{
return templateId in this.lookup;
}
public getPreset(id: string): IPreset
{
return this.cloner.clone(this.databaseServer.getTables().globals!.ItemPresets[id]);
}
public getAllPresets(): IPreset[]
{
return this.cloner.clone(Object.values(this.databaseServer.getTables().globals!.ItemPresets));
}
public getPresets(templateId: string): IPreset[]
{
if (!this.hasPreset(templateId))
{
return [];
}
const presets = [];
const ids = this.lookup[templateId];
for (const id of ids)
{
presets.push(this.getPreset(id));
}
return presets;
}
/**
* Get the default preset for passed in item id
* @param templateId Item id to get preset for
* @returns Null if no default preset, otherwise IPreset
*/
public getDefaultPreset(templateId: string): IPreset | undefined
{
if (!this.hasPreset(templateId))
{
return undefined;
}
const allPresets = this.getPresets(templateId);
for (const preset of allPresets)
{
if ("_encyclopedia" in preset)
{
return preset;
}
}
return allPresets[0];
}
public getBaseItemTpl(presetId: string): string
{
if (this.isPreset(presetId))
{
const preset = this.getPreset(presetId);
for (const item of preset._items)
{
if (preset._parent === item._id)
{
return item._tpl;
}
}
}
return "";
}
/**
* Return the price of the preset for the given item tpl, or for the tpl itself if no preset exists
* @param tpl The item template to get the price of
* @returns The price of the given item preset, or base item if no preset exists
*/
public getDefaultPresetOrItemPrice(tpl: string): number
{
// Get default preset if it exists
const defaultPreset = this.getDefaultPreset(tpl);
// Bundle up tpls we want price for
const tpls = defaultPreset ? defaultPreset._items.map((item) => item._tpl) : [tpl];
// Get price of tpls
return this.itemHelper.getItemAndChildrenPrice(tpls);
}
}