2019-08-29 03:36:45 +08:00
|
|
|
import { ToolBar } from "../../core/gui/ToolBar";
|
|
|
|
import { FileButton } from "../../core/gui/FileButton";
|
|
|
|
import { Button } from "../../core/gui/Button";
|
|
|
|
import { quest_editor_store } from "../stores/QuestEditorStore";
|
|
|
|
import { undo_manager } from "../../core/undo/UndoManager";
|
2019-08-30 00:24:03 +08:00
|
|
|
import { Select } from "../../core/gui/Select";
|
2019-09-02 20:41:46 +08:00
|
|
|
import { list_property } from "../../core/observable";
|
2019-08-30 00:24:03 +08:00
|
|
|
import { AreaModel } from "../model/AreaModel";
|
|
|
|
import { Icon } from "../../core/gui/dom";
|
2019-09-13 20:30:29 +08:00
|
|
|
import { DropDown } from "../../core/gui/DropDown";
|
2019-08-30 06:06:32 +08:00
|
|
|
import { Episode } from "../../core/data_formats/parsing/quest/Episode";
|
2019-09-01 02:01:35 +08:00
|
|
|
import { area_store } from "../stores/AreaStore";
|
|
|
|
import { gui_store, GuiTool } from "../../core/stores/GuiStore";
|
2019-08-29 03:36:45 +08:00
|
|
|
|
|
|
|
export class QuestEditorToolBar extends ToolBar {
|
|
|
|
constructor() {
|
2019-09-13 20:30:29 +08:00
|
|
|
const new_quest_button = new DropDown(
|
2019-08-30 06:06:32 +08:00
|
|
|
"New quest",
|
|
|
|
[Episode.I],
|
|
|
|
episode => `Episode ${Episode[episode]}`,
|
|
|
|
{
|
|
|
|
icon_left: Icon.NewFile,
|
|
|
|
},
|
|
|
|
);
|
2019-08-30 00:24:03 +08:00
|
|
|
const open_file_button = new FileButton("Open file...", {
|
|
|
|
icon_left: Icon.File,
|
|
|
|
accept: ".qst",
|
2019-09-01 02:01:35 +08:00
|
|
|
tooltip: "Open a quest file (Ctrl-O)",
|
|
|
|
});
|
|
|
|
const save_as_button = new Button("Save as...", {
|
|
|
|
icon_left: Icon.Save,
|
|
|
|
tooltip: "Save this quest to new file (Ctrl-Shift-S)",
|
2019-08-30 00:24:03 +08:00
|
|
|
});
|
2019-08-29 03:36:45 +08:00
|
|
|
const undo_button = new Button("Undo", {
|
2019-08-30 00:24:03 +08:00
|
|
|
icon_left: Icon.Undo,
|
2019-09-01 02:01:35 +08:00
|
|
|
tooltip: undo_manager.first_undo.map(
|
|
|
|
action =>
|
|
|
|
(action ? `Undo "${action.description}"` : "Nothing to undo") + " (Ctrl-Z)",
|
2019-08-29 03:36:45 +08:00
|
|
|
),
|
|
|
|
});
|
|
|
|
const redo_button = new Button("Redo", {
|
2019-08-30 00:24:03 +08:00
|
|
|
icon_left: Icon.Redo,
|
2019-09-01 02:01:35 +08:00
|
|
|
tooltip: undo_manager.first_redo.map(
|
|
|
|
action =>
|
|
|
|
(action ? `Redo "${action.description}"` : "Nothing to redo") +
|
|
|
|
" (Ctrl-Shift-Z)",
|
2019-08-29 03:36:45 +08:00
|
|
|
),
|
|
|
|
});
|
2019-08-30 00:24:03 +08:00
|
|
|
const area_select = new Select<AreaModel>(
|
|
|
|
quest_editor_store.current_quest.flat_map(quest => {
|
|
|
|
if (quest) {
|
2019-09-06 02:30:11 +08:00
|
|
|
return list_property(
|
|
|
|
undefined,
|
|
|
|
...area_store.get_areas_for_episode(quest.episode),
|
|
|
|
);
|
2019-08-30 00:24:03 +08:00
|
|
|
} else {
|
2019-09-02 20:41:46 +08:00
|
|
|
return list_property<AreaModel>();
|
2019-08-30 00:24:03 +08:00
|
|
|
}
|
|
|
|
}),
|
2019-09-01 02:01:35 +08:00
|
|
|
area => {
|
|
|
|
const quest = quest_editor_store.current_quest.val;
|
|
|
|
|
|
|
|
if (quest) {
|
|
|
|
const entity_count = quest.entities_per_area.val.get(area.id);
|
|
|
|
return area.name + (entity_count ? ` (${entity_count})` : "");
|
|
|
|
} else {
|
|
|
|
return area.name;
|
|
|
|
}
|
|
|
|
},
|
2019-08-30 00:24:03 +08:00
|
|
|
);
|
2019-08-29 03:36:45 +08:00
|
|
|
|
|
|
|
super({
|
2019-08-30 06:06:32 +08:00
|
|
|
children: [
|
|
|
|
new_quest_button,
|
|
|
|
open_file_button,
|
|
|
|
save_as_button,
|
|
|
|
undo_button,
|
|
|
|
redo_button,
|
|
|
|
area_select,
|
|
|
|
],
|
2019-08-29 03:36:45 +08:00
|
|
|
});
|
|
|
|
|
2019-08-30 00:24:03 +08:00
|
|
|
const quest_loaded = quest_editor_store.current_quest.map(q => q != undefined);
|
|
|
|
|
2019-08-29 03:36:45 +08:00
|
|
|
this.disposables(
|
2019-08-30 06:06:32 +08:00
|
|
|
new_quest_button.chosen.observe(({ value: episode }) =>
|
|
|
|
quest_editor_store.new_quest(episode),
|
|
|
|
),
|
|
|
|
|
2019-08-29 03:36:45 +08:00
|
|
|
open_file_button.files.observe(({ value: files }) => {
|
|
|
|
if (files.length) {
|
|
|
|
quest_editor_store.open_file(files[0]);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
2019-08-30 00:24:03 +08:00
|
|
|
save_as_button.enabled.bind_to(quest_loaded),
|
2019-09-01 02:01:35 +08:00
|
|
|
save_as_button.click.observe(quest_editor_store.save_as),
|
2019-08-29 03:36:45 +08:00
|
|
|
|
|
|
|
undo_button.enabled.bind_to(undo_manager.can_undo),
|
|
|
|
undo_button.click.observe(() => undo_manager.undo()),
|
|
|
|
|
|
|
|
redo_button.enabled.bind_to(undo_manager.can_redo),
|
|
|
|
redo_button.click.observe(() => undo_manager.redo()),
|
2019-08-30 00:24:03 +08:00
|
|
|
|
|
|
|
area_select.enabled.bind_to(quest_loaded),
|
|
|
|
area_select.selected.bind_to(quest_editor_store.current_area),
|
|
|
|
area_select.selected.observe(({ value: area }) =>
|
|
|
|
quest_editor_store.set_current_area(area),
|
|
|
|
),
|
2019-09-01 02:01:35 +08:00
|
|
|
|
2019-09-01 02:30:40 +08:00
|
|
|
gui_store.on_global_keydown(GuiTool.QuestEditor, "Ctrl-O", () =>
|
2019-09-01 02:01:35 +08:00
|
|
|
open_file_button.click(),
|
|
|
|
),
|
|
|
|
|
2019-09-01 02:30:40 +08:00
|
|
|
gui_store.on_global_keydown(
|
2019-09-01 02:01:35 +08:00
|
|
|
GuiTool.QuestEditor,
|
|
|
|
"Ctrl-Shift-S",
|
|
|
|
quest_editor_store.save_as,
|
|
|
|
),
|
|
|
|
|
2019-09-01 02:30:40 +08:00
|
|
|
gui_store.on_global_keydown(GuiTool.QuestEditor, "Ctrl-Z", () => {
|
2019-09-16 00:34:24 +08:00
|
|
|
undo_manager.undo();
|
2019-09-01 02:01:35 +08:00
|
|
|
}),
|
|
|
|
|
2019-09-01 02:30:40 +08:00
|
|
|
gui_store.on_global_keydown(GuiTool.QuestEditor, "Ctrl-Shift-Z", () => {
|
2019-09-16 00:34:24 +08:00
|
|
|
undo_manager.redo();
|
2019-09-01 02:01:35 +08:00
|
|
|
}),
|
2019-08-29 03:36:45 +08:00
|
|
|
);
|
2019-09-14 21:20:36 +08:00
|
|
|
|
|
|
|
this.finalize_construction(QuestEditorToolBar.prototype);
|
2019-08-29 03:36:45 +08:00
|
|
|
}
|
|
|
|
}
|