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";
|
|
|
|
import { array_property } from "../../core/observable";
|
|
|
|
import { AreaModel } from "../model/AreaModel";
|
|
|
|
import { Icon } from "../../core/gui/dom";
|
2019-08-30 06:06:32 +08:00
|
|
|
import { DropDownButton } from "../../core/gui/DropDownButton";
|
|
|
|
import { Episode } from "../../core/data_formats/parsing/quest/Episode";
|
2019-08-29 03:36:45 +08:00
|
|
|
|
|
|
|
export class QuestEditorToolBar extends ToolBar {
|
|
|
|
constructor() {
|
2019-08-30 06:06:32 +08:00
|
|
|
const new_quest_button = new DropDownButton(
|
|
|
|
"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",
|
|
|
|
});
|
|
|
|
const save_as_button = new Button("Save as...", { icon_left: Icon.Save });
|
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-08-29 03:36:45 +08:00
|
|
|
tooltip: undo_manager.first_undo.map(action =>
|
|
|
|
action ? `Undo "${action.description}"` : "Nothing to undo",
|
|
|
|
),
|
|
|
|
});
|
|
|
|
const redo_button = new Button("Redo", {
|
2019-08-30 00:24:03 +08:00
|
|
|
icon_left: Icon.Redo,
|
2019-08-29 03:36:45 +08:00
|
|
|
tooltip: undo_manager.first_redo.map(action =>
|
|
|
|
action ? `Redo "${action.description}"` : "Nothing to redo",
|
|
|
|
),
|
|
|
|
});
|
2019-08-30 00:24:03 +08:00
|
|
|
const area_select = new Select<AreaModel>(
|
|
|
|
quest_editor_store.current_quest.flat_map(quest => {
|
|
|
|
if (quest) {
|
|
|
|
return quest.area_variants.map(variants =>
|
|
|
|
variants.map(variant => variant.area),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return array_property<AreaModel>();
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
element => element.name,
|
|
|
|
);
|
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-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-08-29 03:36:45 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|