50c7a26a58
This is the first pass of ESLint on the codebase. ESLint formatting is less strict when it comes to line-length and line-breaks then dprint/biome, so if you see formatting that you don't like... fix it! It shouldn't require a configuration change. - This should merge clean into master (when the time comes). - This will not merge clean into `3.9.0-DEV`, but the conflicts aren't that bad.
81 lines
3.2 KiB
TypeScript
81 lines
3.2 KiB
TypeScript
import { inject, injectable } from "tsyringe";
|
|
import { HealthController } from "@spt-aki/controllers/HealthController";
|
|
import { ProfileHelper } from "@spt-aki/helpers/ProfileHelper";
|
|
import { IPmcData } from "@spt-aki/models/eft/common/IPmcData";
|
|
import { IHealthTreatmentRequestData } from "@spt-aki/models/eft/health/IHealthTreatmentRequestData";
|
|
import { IOffraidEatRequestData } from "@spt-aki/models/eft/health/IOffraidEatRequestData";
|
|
import { IOffraidHealRequestData } from "@spt-aki/models/eft/health/IOffraidHealRequestData";
|
|
import { ISyncHealthRequestData } from "@spt-aki/models/eft/health/ISyncHealthRequestData";
|
|
import { IWorkoutData } from "@spt-aki/models/eft/health/IWorkoutData";
|
|
import { IGetBodyResponseData } from "@spt-aki/models/eft/httpResponse/IGetBodyResponseData";
|
|
import { IItemEventRouterResponse } from "@spt-aki/models/eft/itemEvent/IItemEventRouterResponse";
|
|
import { HttpResponseUtil } from "@spt-aki/utils/HttpResponseUtil";
|
|
|
|
@injectable()
|
|
export class HealthCallbacks
|
|
{
|
|
constructor(
|
|
@inject("HttpResponseUtil") protected httpResponse: HttpResponseUtil,
|
|
@inject("ProfileHelper") protected profileHelper: ProfileHelper,
|
|
@inject("HealthController") protected healthController: HealthController,
|
|
)
|
|
{}
|
|
|
|
/**
|
|
* Custom aki server request found in modules/HealthSynchronizer.cs
|
|
* @param url
|
|
* @param info HealthListener.Instance.CurrentHealth class
|
|
* @param sessionID session id
|
|
* @returns empty response, no data sent back to client
|
|
*/
|
|
public syncHealth(url: string, info: ISyncHealthRequestData, sessionID: string): IGetBodyResponseData<string>
|
|
{
|
|
this.healthController.saveVitality(this.profileHelper.getPmcProfile(sessionID), info, sessionID);
|
|
return this.httpResponse.emptyResponse();
|
|
}
|
|
|
|
/**
|
|
* Custom aki server request found in modules/QTEPatch.cs
|
|
* @param url
|
|
* @param info HealthListener.Instance.CurrentHealth class
|
|
* @param sessionID session id
|
|
* @returns empty response, no data sent back to client
|
|
*/
|
|
public handleWorkoutEffects(url: string, info: IWorkoutData, sessionID: string): IGetBodyResponseData<string>
|
|
{
|
|
this.healthController.applyWorkoutChanges(this.profileHelper.getPmcProfile(sessionID), info, sessionID);
|
|
return this.httpResponse.emptyResponse();
|
|
}
|
|
|
|
/**
|
|
* Handle Eat
|
|
* @returns IItemEventRouterResponse
|
|
*/
|
|
public offraidEat(pmcData: IPmcData, body: IOffraidEatRequestData, sessionID: string): IItemEventRouterResponse
|
|
{
|
|
return this.healthController.offraidEat(pmcData, body, sessionID);
|
|
}
|
|
|
|
/**
|
|
* Handle Heal
|
|
* @returns IItemEventRouterResponse
|
|
*/
|
|
public offraidHeal(pmcData: IPmcData, body: IOffraidHealRequestData, sessionID: string): IItemEventRouterResponse
|
|
{
|
|
return this.healthController.offraidHeal(pmcData, body, sessionID);
|
|
}
|
|
|
|
/**
|
|
* Handle RestoreHealth
|
|
* @returns IItemEventRouterResponse
|
|
*/
|
|
public healthTreatment(
|
|
pmcData: IPmcData,
|
|
info: IHealthTreatmentRequestData,
|
|
sessionID: string,
|
|
): IItemEventRouterResponse
|
|
{
|
|
return this.healthController.healthTreatment(pmcData, info, sessionID);
|
|
}
|
|
}
|