mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-06 08:08:28 +08:00
56 lines
1.8 KiB
TypeScript
56 lines
1.8 KiB
TypeScript
import { el, Icon } from "../../core/gui/dom";
|
|
import { ResizableWidget } from "../../core/gui/ResizableWidget";
|
|
import { FileButton } from "../../core/gui/FileButton";
|
|
import { ToolBar } from "../../core/gui/ToolBar";
|
|
import { texture_store } from "../stores/TextureStore";
|
|
import { RendererWidget } from "../../core/gui/RendererWidget";
|
|
import { TextureRenderer } from "../rendering/TextureRenderer";
|
|
import { gui_store, GuiTool } from "../../core/stores/GuiStore";
|
|
|
|
export class TextureView extends ResizableWidget {
|
|
readonly element = el.div({ class: "viewer_TextureView" });
|
|
|
|
private readonly open_file_button = new FileButton("Open file...", {
|
|
icon_left: Icon.File,
|
|
accept: ".xvm",
|
|
});
|
|
|
|
private readonly tool_bar = this.disposable(new ToolBar({ children: [this.open_file_button] }));
|
|
|
|
private readonly renderer_view = this.disposable(new RendererWidget(new TextureRenderer()));
|
|
|
|
constructor() {
|
|
super();
|
|
|
|
this.element.append(this.tool_bar.element, this.renderer_view.element);
|
|
|
|
this.disposable(
|
|
this.open_file_button.files.observe(({ value: files }) => {
|
|
if (files.length) texture_store.load_file(files[0]);
|
|
}),
|
|
);
|
|
|
|
this.renderer_view.start_rendering();
|
|
|
|
this.disposable(
|
|
gui_store.tool.observe(({ value: tool }) => {
|
|
if (tool === GuiTool.Viewer) {
|
|
this.renderer_view.start_rendering();
|
|
} else {
|
|
this.renderer_view.stop_rendering();
|
|
}
|
|
}),
|
|
);
|
|
|
|
this.finalize_construction(TextureView.prototype);
|
|
}
|
|
|
|
resize(width: number, height: number): this {
|
|
super.resize(width, height);
|
|
|
|
this.renderer_view.resize(width, Math.max(0, height - this.tool_bar.height));
|
|
|
|
return this;
|
|
}
|
|
}
|