mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-06 08:08:28 +08:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
![]() |
import { Persister } from "./Persister";
|
||
|
import { Server, HuntMethod } from "../domain";
|
||
|
|
||
|
class HuntMethodPersister extends Persister {
|
||
|
persist_method_user_times(hunt_methods: HuntMethod[], server: Server): void {
|
||
|
const user_times: PersistedUserTimes = {};
|
||
|
|
||
|
for (const method of hunt_methods) {
|
||
|
if (method.user_time != undefined) {
|
||
|
user_times[method.id] = method.user_time;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
this.persist_for_server(server, "HuntMethodStore.methodUserTimes", user_times);
|
||
|
}
|
||
|
|
||
|
async load_method_user_times(
|
||
|
hunt_methods: HuntMethod[],
|
||
|
server: Server
|
||
|
): Promise<HuntMethod[]> {
|
||
|
const user_times = await this.load_for_server<PersistedUserTimes>(
|
||
|
server,
|
||
|
"HuntMethodStore.methodUserTimes"
|
||
|
);
|
||
|
|
||
|
if (user_times) {
|
||
|
for (const method of hunt_methods) {
|
||
|
method.user_time = user_times[method.id];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return hunt_methods;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type PersistedUserTimes = { [method_id: string]: number };
|
||
|
|
||
|
export const hunt_method_persister = new HuntMethodPersister();
|