phantasmal-world/src/viewer/gui/model/ModelToolBarView.ts

91 lines
3.2 KiB
TypeScript
Raw Normal View History

import { ToolBar } from "../../../core/gui/ToolBar";
import { FileButton } from "../../../core/gui/FileButton";
import { CheckBox } from "../../../core/gui/CheckBox";
import { NumberInput } from "../../../core/gui/NumberInput";
import { PSO_FRAME_RATE } from "../../../core/rendering/conversion/ninja_animation";
import { Label } from "../../../core/gui/Label";
import { Icon } from "../../../core/gui/dom";
import { View } from "../../../core/gui/View";
import { ModelToolBarController } from "../../controllers/model/ModelToolBarController";
export class ModelToolBarView extends View {
private readonly toolbar: ToolBar;
get element(): HTMLElement {
return this.toolbar.element;
}
get height(): number {
return this.toolbar.height;
}
constructor(ctrl: ModelToolBarController) {
super();
const open_file_button = new FileButton({
icon_left: Icon.File,
text: "Open file...",
accept: ".afs, .nj, .njm, .xj, .xvm",
});
const skeleton_checkbox = new CheckBox(false, { label: "Show skeleton" });
const play_animation_checkbox = new CheckBox(true, { label: "Play animation" });
const animation_frame_rate_input = new NumberInput(PSO_FRAME_RATE, {
label: "Frame rate:",
min: 1,
max: 240,
step: 1,
});
const animation_frame_input = new NumberInput(1, {
label: "Frame:",
min: 1,
max: ctrl.animation_frame_count,
step: 1,
});
const animation_frame_count_label = new Label(ctrl.animation_frame_count_label);
this.toolbar = this.add(
new ToolBar(
open_file_button,
skeleton_checkbox,
play_animation_checkbox,
animation_frame_rate_input,
animation_frame_input,
animation_frame_count_label,
),
);
// Always-enabled controls.
this.disposables(
open_file_button.files.observe(({ value: files }) => {
if (files.length) ctrl.load_file(files[0]);
}),
skeleton_checkbox.checked.observe(({ value }) => ctrl.set_show_skeleton(value)),
);
// Controls that are only enabled when an animation is selected.
const enabled = ctrl.animation_controls_enabled;
this.disposables(
play_animation_checkbox.enabled.bind_to(enabled),
play_animation_checkbox.checked.bind_to(ctrl.animation_playing),
2019-10-26 23:03:12 +08:00
play_animation_checkbox.checked.observe(({ value }) =>
ctrl.set_animation_playing(value),
2019-10-26 23:03:12 +08:00
),
animation_frame_rate_input.enabled.bind_to(enabled),
2019-10-26 23:03:12 +08:00
animation_frame_rate_input.value.observe(({ value }) =>
ctrl.set_animation_frame_rate(value),
2019-10-26 23:03:12 +08:00
),
animation_frame_input.enabled.bind_to(enabled),
animation_frame_input.value.bind_to(ctrl.animation_frame),
animation_frame_input.value.observe(({ value }) => ctrl.set_animation_frame(value)),
animation_frame_count_label.enabled.bind_to(enabled),
);
this.finalize_construction();
}
}