2019-08-23 04:45:01 +08:00
|
|
|
import { ResizableView } from "../../core/gui/ResizableView";
|
2019-08-26 21:42:12 +08:00
|
|
|
import { el } from "../../core/gui/dom";
|
|
|
|
import { quest_editor_store } from "../stores/QuestEditorStore";
|
|
|
|
import { npc_data, NpcType } from "../../core/data_formats/parsing/quest/npc_types";
|
|
|
|
import { QuestModel } from "../model/QuestModel";
|
|
|
|
import "./NpcCountsView.css";
|
2019-08-27 20:50:16 +08:00
|
|
|
import { DisabledView } from "./DisabledView";
|
2019-08-23 04:45:01 +08:00
|
|
|
|
|
|
|
export class NpcCountsView extends ResizableView {
|
2019-08-26 21:42:12 +08:00
|
|
|
readonly element = el.div({ class: "quest_editor_NpcCountsView" });
|
|
|
|
|
|
|
|
private readonly table_element = el.table();
|
|
|
|
|
2019-08-27 20:50:16 +08:00
|
|
|
private readonly no_quest_view = new DisabledView("No quest loaded.");
|
2019-08-26 21:42:12 +08:00
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
2019-08-27 20:50:16 +08:00
|
|
|
this.element.append(this.table_element, this.no_quest_view.element);
|
2019-08-26 21:42:12 +08:00
|
|
|
|
2019-08-27 20:50:16 +08:00
|
|
|
const quest = quest_editor_store.current_quest;
|
|
|
|
const no_quest = quest.map(q => q == undefined);
|
2019-08-26 21:42:12 +08:00
|
|
|
|
2019-08-27 20:50:16 +08:00
|
|
|
this.bind_hidden(this.table_element, no_quest);
|
2019-08-26 21:42:12 +08:00
|
|
|
|
|
|
|
this.disposables(
|
2019-08-27 20:50:16 +08:00
|
|
|
this.no_quest_view.visible.bind_to(no_quest),
|
|
|
|
|
2019-08-26 21:42:12 +08:00
|
|
|
quest.observe(({ value }) => this.update_view(value), {
|
|
|
|
call_now: true,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private update_view(quest?: QuestModel): void {
|
|
|
|
const frag = document.createDocumentFragment();
|
|
|
|
|
|
|
|
const npc_counts = new Map<NpcType, number>();
|
|
|
|
|
|
|
|
if (quest) {
|
|
|
|
for (const npc of quest.npcs.val) {
|
|
|
|
const val = npc_counts.get(npc.type) || 0;
|
|
|
|
npc_counts.set(npc.type, val + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const extra_canadines = (npc_counts.get(NpcType.Canane) || 0) * 8;
|
|
|
|
|
|
|
|
// Sort by canonical order.
|
|
|
|
const sorted_npc_counts = [...npc_counts].sort((a, b) => a[0] - b[0]);
|
|
|
|
|
|
|
|
for (const [npc_type, count] of sorted_npc_counts) {
|
|
|
|
const extra = npc_type === NpcType.Canadine ? extra_canadines : 0;
|
|
|
|
|
|
|
|
frag.append(
|
|
|
|
el.tr(
|
|
|
|
{},
|
|
|
|
el.th({ text: npc_data(npc_type).name + ":" }),
|
|
|
|
el.td({ text: String(count + extra) }),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.table_element.innerHTML = "";
|
|
|
|
this.table_element.append(frag);
|
|
|
|
}
|
2019-08-23 04:45:01 +08:00
|
|
|
}
|