polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
63 lines (62 loc) • 1.96 kB
JavaScript
import {TypedSopNode} from "./_Base";
import {CoreLoaderGeometry} from "../../../core/loader/Geometry";
import {FileType} from "../../params/utils/OptionsController";
import {FileSopOperation} from "../../../core/operations/sop/File";
import {NodeParamsConfig, ParamConfig} from "../utils/params/ParamsConfig";
const DEFAULT = FileSopOperation.DEFAULT_PARAMS;
class FileSopParamsConfig extends NodeParamsConfig {
constructor() {
super(...arguments);
this.url = ParamConfig.STRING(DEFAULT.url, {
fileBrowse: {type: [FileType.GEOMETRY]}
});
this.reload = ParamConfig.BUTTON(null, {
callback: (node, param) => {
FileSopNode.PARAM_CALLBACK_reload(node);
}
});
}
}
const ParamsConfig2 = new FileSopParamsConfig();
export class FileSopNode extends TypedSopNode {
constructor() {
super(...arguments);
this.params_config = ParamsConfig2;
}
static type() {
return "file";
}
async requiredModules() {
if (this.p.url.isDirty()) {
await this.p.url.compute();
}
const ext = CoreLoaderGeometry.get_extension(this.pv.url || "");
return CoreLoaderGeometry.module_names(ext);
}
initializeNode() {
this.scene().dispatchController.onAddListener(() => {
this.params.onParamsCreated("params_label", () => {
this.params.label.init([this.p.url], () => {
const url = this.pv.url;
if (url) {
const elements = url.split("/");
return elements[elements.length - 1];
} else {
return "";
}
});
});
});
}
async cook(input_contents) {
this._operation = this._operation || new FileSopOperation(this.scene(), this.states);
const core_group = await this._operation.cook(input_contents, this.pv);
this.setCoreGroup(core_group);
}
static PARAM_CALLBACK_reload(node) {
node.param_callback_reload();
}
param_callback_reload() {
this.p.url.setDirty();
}
}