2019-09-06 02:30:11 +08:00
|
|
|
import { Server } from "../../core/model";
|
2019-09-02 20:41:46 +08:00
|
|
|
import { QuestDto } from "../dto/QuestDto";
|
|
|
|
import { NpcType } from "../../core/data_formats/parsing/quest/npc_types";
|
|
|
|
import { SimpleQuestModel } from "../model/SimpleQuestModel";
|
|
|
|
import { HuntMethodModel } from "../model/HuntMethodModel";
|
2019-12-22 02:40:42 +08:00
|
|
|
import { HuntMethodPersister } from "../persistence/HuntMethodPersister";
|
2019-09-02 20:41:46 +08:00
|
|
|
import { Duration } from "luxon";
|
2019-09-06 02:30:11 +08:00
|
|
|
import { ListProperty } from "../../core/observable/property/list/ListProperty";
|
|
|
|
import { list_property } from "../../core/observable";
|
2019-12-22 02:40:42 +08:00
|
|
|
import { GuiStore } from "../../core/stores/GuiStore";
|
2019-12-22 05:49:41 +08:00
|
|
|
import { HttpClient } from "../../core/HttpClient";
|
2019-12-25 07:17:02 +08:00
|
|
|
import { Store } from "../../core/stores/Store";
|
|
|
|
import { DisposableServerMap } from "../../core/stores/DisposableServerMap";
|
|
|
|
import { LogManager } from "../../core/Logger";
|
2019-09-02 20:41:46 +08:00
|
|
|
|
2019-12-25 07:17:02 +08:00
|
|
|
const logger = LogManager.get("hunt_optimizer/stores/HuntMethodStore");
|
2019-09-02 20:41:46 +08:00
|
|
|
|
|
|
|
const DEFAULT_DURATION = Duration.fromObject({ minutes: 30 });
|
|
|
|
const DEFAULT_GOVERNMENT_TEST_DURATION = Duration.fromObject({ minutes: 45 });
|
|
|
|
const DEFAULT_LARGE_ENEMY_COUNT_DURATION = Duration.fromObject({ minutes: 45 });
|
|
|
|
|
2019-12-22 09:37:06 +08:00
|
|
|
export function create_hunt_method_stores(
|
2019-12-22 05:49:41 +08:00
|
|
|
http_client: HttpClient,
|
2019-12-22 02:40:42 +08:00
|
|
|
gui_store: GuiStore,
|
|
|
|
hunt_method_persister: HuntMethodPersister,
|
2019-12-25 07:17:02 +08:00
|
|
|
): DisposableServerMap<HuntMethodStore> {
|
|
|
|
return new DisposableServerMap(gui_store, create_loader(http_client, hunt_method_persister));
|
2019-12-22 02:40:42 +08:00
|
|
|
}
|
|
|
|
|
2019-12-25 07:17:02 +08:00
|
|
|
export class HuntMethodStore extends Store {
|
2019-09-06 02:30:11 +08:00
|
|
|
readonly methods: ListProperty<HuntMethodModel>;
|
2019-09-02 20:41:46 +08:00
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
constructor(
|
|
|
|
hunt_method_persister: HuntMethodPersister,
|
|
|
|
server: Server,
|
|
|
|
methods: HuntMethodModel[],
|
|
|
|
) {
|
2019-12-25 07:17:02 +08:00
|
|
|
super();
|
|
|
|
|
2019-09-07 23:49:21 +08:00
|
|
|
this.methods = list_property(method => [method.user_time], ...methods);
|
2019-09-06 02:30:11 +08:00
|
|
|
|
2019-12-25 07:17:02 +08:00
|
|
|
this.disposables(
|
2019-09-06 02:30:11 +08:00
|
|
|
this.methods.observe_list(() =>
|
|
|
|
hunt_method_persister.persist_method_user_times(this.methods.val, server),
|
|
|
|
),
|
|
|
|
);
|
2019-09-02 20:41:46 +08:00
|
|
|
}
|
2019-09-06 02:30:11 +08:00
|
|
|
}
|
2019-09-02 20:41:46 +08:00
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
function create_loader(
|
2019-12-22 05:49:41 +08:00
|
|
|
http_client: HttpClient,
|
2019-12-22 02:40:42 +08:00
|
|
|
hunt_method_persister: HuntMethodPersister,
|
|
|
|
): (server: Server) => Promise<HuntMethodStore> {
|
|
|
|
return async server => {
|
2019-12-22 05:49:41 +08:00
|
|
|
const quests: QuestDto[] = await http_client
|
|
|
|
.get(`/quests.${Server[server].toLowerCase()}.json`)
|
|
|
|
.json();
|
2019-12-22 02:40:42 +08:00
|
|
|
const methods: HuntMethodModel[] = [];
|
|
|
|
|
|
|
|
for (const quest of quests) {
|
|
|
|
let total_enemy_count = 0;
|
|
|
|
const enemy_counts = new Map<NpcType, number>();
|
|
|
|
|
2020-01-01 23:05:23 +08:00
|
|
|
for (const [code, count] of Object.entries(quest.enemy_counts)) {
|
2019-12-22 02:40:42 +08:00
|
|
|
const npc_type = (NpcType as any)[code];
|
|
|
|
|
|
|
|
if (!npc_type) {
|
|
|
|
logger.error(`No NpcType found for code ${code}.`);
|
|
|
|
} else {
|
|
|
|
enemy_counts.set(npc_type, count);
|
|
|
|
total_enemy_count += count;
|
|
|
|
}
|
2019-09-02 20:41:46 +08:00
|
|
|
}
|
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
// Filter out some quests.
|
|
|
|
/* eslint-disable no-fallthrough */
|
|
|
|
switch (quest.id) {
|
|
|
|
// The following quests are left out because their enemies don't drop anything.
|
|
|
|
case 31: // Black Paper's Dangerous Deal
|
|
|
|
case 34: // Black Paper's Dangerous Deal 2
|
|
|
|
case 1305: // Maximum Attack S (Ep. 1)
|
|
|
|
case 1306: // Maximum Attack S (Ep. 2)
|
|
|
|
case 1307: // Maximum Attack S (Ep. 4)
|
|
|
|
case 313: // Beyond the Horizon
|
|
|
|
|
|
|
|
// MAXIMUM ATTACK 3 Ver2 is filtered out because its actual enemy count depends on the path taken.
|
|
|
|
// TODO: generate a method per path.
|
|
|
|
case 314:
|
|
|
|
continue;
|
|
|
|
}
|
2019-09-02 20:41:46 +08:00
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
methods.push(
|
|
|
|
new HuntMethodModel(
|
|
|
|
`q${quest.id}`,
|
|
|
|
quest.name,
|
|
|
|
new SimpleQuestModel(quest.id, quest.name, quest.episode, enemy_counts),
|
|
|
|
/^\d-\d.*/.test(quest.name)
|
|
|
|
? DEFAULT_GOVERNMENT_TEST_DURATION
|
|
|
|
: total_enemy_count > 400
|
|
|
|
? DEFAULT_LARGE_ENEMY_COUNT_DURATION
|
|
|
|
: DEFAULT_DURATION,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2019-09-02 20:41:46 +08:00
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
await hunt_method_persister.load_method_user_times(methods, server);
|
2019-09-02 20:41:46 +08:00
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
return new HuntMethodStore(hunt_method_persister, server, methods);
|
|
|
|
};
|
2019-09-02 20:41:46 +08:00
|
|
|
}
|