2019-09-20 04:20:17 +08:00
|
|
|
import { EntityListView } from "./EntityListView";
|
2019-09-22 21:18:46 +08:00
|
|
|
import { npc_data, NPC_TYPES, NpcType } from "../../core/data_formats/parsing/quest/npc_types";
|
2019-12-22 02:40:42 +08:00
|
|
|
import { QuestEditorStore } from "../stores/QuestEditorStore";
|
2019-09-22 21:18:46 +08:00
|
|
|
import { Episode } from "../../core/data_formats/parsing/quest/Episode";
|
2019-12-22 05:49:41 +08:00
|
|
|
import { EntityImageRenderer } from "../rendering/EntityImageRenderer";
|
2019-09-20 04:20:17 +08:00
|
|
|
|
|
|
|
export class NpcListView extends EntityListView<NpcType> {
|
2019-12-22 05:49:41 +08:00
|
|
|
constructor(
|
|
|
|
private readonly quest_editor_store: QuestEditorStore,
|
|
|
|
entity_image_renderer: EntityImageRenderer,
|
|
|
|
) {
|
|
|
|
super(quest_editor_store, entity_image_renderer, "quest_editor_NpcListView");
|
2019-09-20 04:20:17 +08:00
|
|
|
|
2019-09-22 21:18:46 +08:00
|
|
|
this.disposables(
|
|
|
|
quest_editor_store.current_quest.observe(this.filter_npcs),
|
|
|
|
quest_editor_store.current_area.observe(this.filter_npcs),
|
|
|
|
);
|
|
|
|
|
|
|
|
this.filter_npcs();
|
2020-07-15 01:46:11 +08:00
|
|
|
this.finalize_construction(NpcListView);
|
2019-09-20 04:20:17 +08:00
|
|
|
}
|
2019-09-22 21:18:46 +08:00
|
|
|
|
|
|
|
private filter_npcs = (): void => {
|
2019-12-22 02:40:42 +08:00
|
|
|
const quest = this.quest_editor_store.current_quest.val;
|
|
|
|
const area = this.quest_editor_store.current_area.val;
|
2019-09-22 21:18:46 +08:00
|
|
|
|
|
|
|
const episode = quest ? quest.episode : Episode.I;
|
|
|
|
const area_id = area ? area.id : 0;
|
|
|
|
|
|
|
|
this.entities.val = NPC_TYPES.filter(npc => {
|
|
|
|
const data = npc_data(npc);
|
|
|
|
return (
|
|
|
|
(data.episode == undefined || data.episode === episode) &&
|
|
|
|
data.area_ids.includes(area_id)
|
|
|
|
);
|
|
|
|
});
|
|
|
|
};
|
2019-09-20 04:20:17 +08:00
|
|
|
}
|