123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522 |
- import {
- DiagramEngine,
- DiagramModel,
- DiagramWidget,
- LinkModel
- } from "storm-react-diagrams";
- import * as React from "react";
- import * as dagre from "dagre";
- import { GlobalState } from './globalState';
- import { GenericNodeFactory } from './components/diagram/generic/genericNodeFactory';
- import { GenericNodeModel } from './components/diagram/generic/genericNodeModel';
- import { NodeMaterialBlock } from 'babylonjs/Materials/Node/nodeMaterialBlock';
- import { NodeMaterialConnectionPoint } from 'babylonjs/Materials/Node/nodeMaterialBlockConnectionPoint';
- import { NodeListComponent } from './components/nodeList/nodeListComponent';
- import { PropertyTabComponent } from './components/propertyTab/propertyTabComponent';
- import { Portal } from './portal';
- import { TextureNodeFactory } from './components/diagram/texture/textureNodeFactory';
- import { DefaultNodeModel } from './components/diagram/defaultNodeModel';
- import { TextureNodeModel } from './components/diagram/texture/textureNodeModel';
- import { DefaultPortModel } from './components/diagram/port/defaultPortModel';
- import { InputNodeFactory } from './components/diagram/input/inputNodeFactory';
- import { InputNodeModel } from './components/diagram/input/inputNodeModel';
- import { TextureBlock } from 'babylonjs/Materials/Node/Blocks/Dual/textureBlock';
- import { LogComponent, LogEntry } from './components/log/logComponent';
- import { LightBlock } from 'babylonjs/Materials/Node/Blocks/Dual/lightBlock';
- import { LightNodeModel } from './components/diagram/light/lightNodeModel';
- import { LightNodeFactory } from './components/diagram/light/lightNodeFactory';
- import { DataStorage } from './dataStorage';
- import { NodeMaterialBlockConnectionPointTypes } from 'babylonjs/Materials/Node/nodeMaterialBlockConnectionPointTypes';
- import { InputBlock } from 'babylonjs/Materials/Node/Blocks/Input/inputBlock';
- import { Nullable } from 'babylonjs/types';
- import { MessageDialogComponent } from './sharedComponents/messageDialog';
- import { BlockTools } from './blockTools';
- import { AdvancedLinkFactory } from './components/diagram/link/advancedLinkFactory';
- require("storm-react-diagrams/dist/style.min.css");
- require("./main.scss");
- require("./components/diagram/diagram.scss");
- /*
- Graph Editor Overview
- Storm React setup:
- GenericNodeModel - Represents the nodes in the graph and can be any node type (eg. texture, vector2, etc)
- GenericNodeWidget - Renders the node model in the graph
- GenericPortModel - Represents the input/output of a node (contained within each GenericNodeModel)
- Generating/modifying the graph:
- Generating node graph - the createNodeFromObject method is used to recursively create the graph
- Modifications to the graph - The listener in the constructor of GraphEditor listens for port changes and updates the node material based on changes
- Saving the graph/generating code - Not yet done
- */
- interface IGraphEditorProps {
- globalState: GlobalState;
- }
- export class NodeCreationOptions {
- nodeMaterialBlock: NodeMaterialBlock;
- type?: string;
- connection?: NodeMaterialConnectionPoint;
- }
- export class GraphEditor extends React.Component<IGraphEditorProps> {
- private readonly NodeWidth = 100;
- private _engine: DiagramEngine;
- private _model: DiagramModel;
- private _startX: number;
- private _moveInProgress: boolean;
- private _leftWidth = DataStorage.ReadNumber("LeftWidth", 200);
- private _rightWidth = DataStorage.ReadNumber("RightWidth", 300);
- private _nodes = new Array<DefaultNodeModel>();
- /** @hidden */
- public _toAdd: LinkModel[] | null = [];
- /**
- * Creates a node and recursivly creates its parent nodes from it's input
- * @param nodeMaterialBlock
- */
- public createNodeFromObject(options: NodeCreationOptions) {
- // Create new node in the graph
- var newNode: DefaultNodeModel;
- var filterInputs = [];
- if (options.nodeMaterialBlock instanceof TextureBlock) {
- newNode = new TextureNodeModel();
- filterInputs.push("uv");
- } else if (options.nodeMaterialBlock instanceof LightBlock) {
- newNode = new LightNodeModel();
- filterInputs.push("worldPosition");
- filterInputs.push("worldNormal");
- filterInputs.push("cameraPosition");
- } else if (options.nodeMaterialBlock instanceof InputBlock) {
- newNode = new InputNodeModel();
- } else {
- newNode = new GenericNodeModel();
- }
- if (options.nodeMaterialBlock.isFinalMerger) {
- this.props.globalState.nodeMaterial!.addOutputNode(options.nodeMaterialBlock);
- }
- this._nodes.push(newNode)
- this._model.addAll(newNode);
- if (options.nodeMaterialBlock) {
- newNode.prepare(options, this._nodes, this._model, this, filterInputs);
- }
- return newNode;
- }
- componentDidMount() {
- if (this.props.globalState.hostDocument) {
- var widget = (this.refs["test"] as DiagramWidget);
- widget.setState({ document: this.props.globalState.hostDocument })
- this.props.globalState.hostDocument!.addEventListener("keyup", widget.onKeyUpPointer as any, false);
- }
- }
- componentWillUnmount() {
- if (this.props.globalState.hostDocument) {
- var widget = (this.refs["test"] as DiagramWidget);
- this.props.globalState.hostDocument!.removeEventListener("keyup", widget.onKeyUpPointer as any, false);
- }
- }
- constructor(props: IGraphEditorProps) {
- super(props);
- // setup the diagram engine
- this._engine = new DiagramEngine();
- this._engine.installDefaultFactories()
- this._engine.registerNodeFactory(new GenericNodeFactory(this.props.globalState));
- this._engine.registerNodeFactory(new TextureNodeFactory(this.props.globalState));
- this._engine.registerNodeFactory(new LightNodeFactory(this.props.globalState));
- this._engine.registerNodeFactory(new InputNodeFactory(this.props.globalState));
- this._engine.registerLinkFactory(new AdvancedLinkFactory());
- this.props.globalState.onRebuildRequiredObservable.add(() => {
- if (this.props.globalState.nodeMaterial) {
- this.buildMaterial();
- }
- this.forceUpdate();
- });
- this.props.globalState.onResetRequiredObservable.add(() => {
- this.build();
- if (this.props.globalState.nodeMaterial) {
- this.buildMaterial();
- }
- });
- this.props.globalState.onUpdateRequiredObservable.add(() => {
- this.forceUpdate();
- });
- this.props.globalState.onZoomToFitRequiredObservable.add(() => {
- this.zoomToFit();
- });
- this.props.globalState.onReOrganizedRequiredObservable.add(() => {
- this.reOrganize();
- })
- this.build(true);
- }
- zoomToFit(retry = 0) {
- const xFactor = this._engine.canvas.clientWidth / this._engine.canvas.scrollWidth;
- const yFactor = this._engine.canvas.clientHeight / this._engine.canvas.scrollHeight;
- const zoomFactor = xFactor < yFactor ? xFactor : yFactor;
- if (zoomFactor === 1) {
- return;
- }
- this._engine.diagramModel.setZoomLevel(this._engine.diagramModel.getZoomLevel() * zoomFactor);
- this._engine.diagramModel.setOffset(0, 0);
- this._engine.repaintCanvas();
- retry++;
- if (retry < 4) {
- setTimeout(() => this.zoomToFit(retry), 1);
- }
- }
- distributeGraph() {
- let nodes = this.mapElements();
- let edges = this.mapEdges();
- let graph = new dagre.graphlib.Graph();
- graph.setGraph({});
- graph.setDefaultEdgeLabel(() => ({}));
- graph.graph().rankdir = "LR";
- //add elements to dagre graph
- nodes.forEach(node => {
- graph.setNode(node.id, node.metadata);
- });
- edges.forEach(edge => {
- if (edge.from && edge.to) {
- graph.setEdge(edge.from.id, edge.to.id);
- }
- });
- //auto-distribute
- dagre.layout(graph);
- return graph.nodes().map(node => graph.node(node));
- }
- mapElements() {
- let output = [];
- // dagre compatible format
- for (var nodeName in this._model.nodes) {
- let node = this._model.nodes[nodeName];
- let size = {
- width: node.width | 200,
- height: node.height | 100
- };
- output.push({ id: node.id, metadata: { ...size, id: node.id } });
- }
- return output;
- }
- mapEdges() {
- // returns links which connects nodes
- // we check are there both from and to nodes in the model. Sometimes links can be detached
- let output = [];
- for (var linkName in this._model.links) {
- let link = this._model.links[linkName];
- output.push({
- from: link.sourcePort!.parent,
- to: link.targetPort!.parent
- });
- }
- return output;
- }
- buildMaterial() {
- if (!this.props.globalState.nodeMaterial) {
- return;
- }
- try {
- this.props.globalState.nodeMaterial.build(true);
- this.props.globalState.onLogRequiredObservable.notifyObservers(new LogEntry("Node material build successful", false));
- }
- catch (err) {
- this.props.globalState.onLogRequiredObservable.notifyObservers(new LogEntry(err, true));
- }
- }
- build(needToWait = false) {
- // setup the diagram model
- this._model = new DiagramModel();
- // Listen to events
- this._model.addListener({
- nodesUpdated: (e) => {
- if (!e.isCreated) {
- // Block is deleted
- let targetBlock = (e.node as GenericNodeModel).block;
- if (targetBlock && targetBlock.isFinalMerger) {
- this.props.globalState.nodeMaterial!.removeOutputNode(targetBlock);
- }
- this.props.globalState.onSelectionChangedObservable.notifyObservers(null);
- }
- },
- linksUpdated: (e) => {
- if (!e.isCreated) {
- // Link is deleted
- this.props.globalState.onSelectionChangedObservable.notifyObservers(null);
- let sourcePort = e.link.sourcePort as DefaultPortModel;
- var link = DefaultPortModel.SortInputOutput(sourcePort, e.link.targetPort as DefaultPortModel);
- if (link) {
- if (link.input.connection && link.output.connection) {
- if (link.input.connection.connectedPoint) {
- // Disconnect standard nodes
- link.output.connection.disconnectFrom(link.input.connection);
- link.input.syncWithNodeMaterialConnectionPoint(link.input.connection);
- link.output.syncWithNodeMaterialConnectionPoint(link.output.connection);
- }
- }
- } else {
- if (!e.link.targetPort && e.link.sourcePort && (e.link.sourcePort as DefaultPortModel).position === "input") {
- // Drag from input port, we are going to build an input for it
- let input = e.link.sourcePort as DefaultPortModel;
- let nodeModel = this.addValueNode(BlockTools.GetStringFromConnectionNodeType(input.connection!.type));
- let link = nodeModel.ports.output.link(input);
- nodeModel.x = e.link.points[1].x - this.NodeWidth;
- nodeModel.y = e.link.points[1].y;
- setTimeout(() => {
- this._model.addLink(link);
- input.syncWithNodeMaterialConnectionPoint(input.connection!);
- nodeModel.ports.output.syncWithNodeMaterialConnectionPoint(nodeModel.ports.output.connection!);
- this.forceUpdate();
- }, 1);
-
- nodeModel.ports.output.connection!.connectTo(input.connection!);
- this.props.globalState.onRebuildRequiredObservable.notifyObservers();
- }
- }
- this.forceUpdate();
- return;
- }
- e.link.addListener({
- sourcePortChanged: () => {
- },
- targetPortChanged: () => {
- // Link is created with a target port
- var link = DefaultPortModel.SortInputOutput(e.link.sourcePort as DefaultPortModel, e.link.targetPort as DefaultPortModel);
- if (link) {
- if (link.output.connection && link.input.connection) {
- // Disconnect previous connection
- for (var key in link.input.links) {
- let other = link.input.links[key];
- if ((other.getSourcePort() as DefaultPortModel).connection !== (link.output as DefaultPortModel).connection &&
- (other.getTargetPort() as DefaultPortModel).connection !== (link.output as DefaultPortModel).connection
- ) {
- other.remove();
- }
- }
- try {
- link.output.connection.connectTo(link.input.connection);
- }
- catch (err) {
- link.output.remove();
- this.props.globalState.onLogRequiredObservable.notifyObservers(new LogEntry(err, true));
- this.props.globalState.onErrorMessageDialogRequiredObservable.notifyObservers(err);
- }
- this.forceUpdate();
- }
- if (this.props.globalState.nodeMaterial) {
- this.buildMaterial();
- }
- }
- }
- })
- }
- });
- // Load graph of nodes from the material
- if (this.props.globalState.nodeMaterial) {
- var material: any = this.props.globalState.nodeMaterial;
- material._vertexOutputNodes.forEach((n: any) => {
- this.createNodeFromObject({ nodeMaterialBlock: n });
- })
- material._fragmentOutputNodes.forEach((n: any) => {
- this.createNodeFromObject({ nodeMaterialBlock: n });
- })
- }
- // load model into engine
- setTimeout(() => {
- if (this._toAdd) {
- this._model.addAll(...this._toAdd);
- }
- this._toAdd = null;
- this._engine.setDiagramModel(this._model);
- this.forceUpdate();
- this.reOrganize();
- }, needToWait ? 500 : 1);
- }
- reOrganize() {
- let nodes = this.distributeGraph();
- nodes.forEach(node => {
- for (var nodeName in this._model.nodes) {
- let modelNode = this._model.nodes[nodeName];
- if (modelNode.id === node.id) {
- modelNode.setPosition(node.x - node.width / 2, node.y - node.height / 2);
- return;
- }
- }
- });
- this.forceUpdate();
- }
- addValueNode(type: string) {
- let nodeType: NodeMaterialBlockConnectionPointTypes = BlockTools.GetConnectionNodeTypeFromString(type);
- let newInputBlock = new InputBlock(type, undefined, nodeType);
- newInputBlock.setDefaultValue();
- var localNode = this.createNodeFromObject({ type: type, nodeMaterialBlock: newInputBlock })
- return localNode;
- }
- onPointerDown(evt: React.PointerEvent<HTMLDivElement>) {
- this._startX = evt.clientX;
- this._moveInProgress = true;
- evt.currentTarget.setPointerCapture(evt.pointerId);
- }
- onPointerUp(evt: React.PointerEvent<HTMLDivElement>) {
- this._moveInProgress = false;
- evt.currentTarget.releasePointerCapture(evt.pointerId);
- }
- resizeColumns(evt: React.PointerEvent<HTMLDivElement>, forLeft = true) {
- if (!this._moveInProgress) {
- return;
- }
- const deltaX = evt.clientX - this._startX;
- const rootElement = evt.currentTarget.ownerDocument!.getElementById("node-editor-graph-root") as HTMLDivElement;
- if (forLeft) {
- this._leftWidth += deltaX;
- this._leftWidth = Math.max(150, Math.min(400, this._leftWidth));
- DataStorage.StoreNumber("LeftWidth", this._leftWidth);
- } else {
- this._rightWidth -= deltaX;
- this._rightWidth = Math.max(250, Math.min(500, this._rightWidth));
- DataStorage.StoreNumber("RightWidth", this._rightWidth);
- }
- rootElement.style.gridTemplateColumns = this.buildColumnLayout();
- this._startX = evt.clientX;
- }
- buildColumnLayout() {
- return `${this._leftWidth}px 4px calc(100% - ${this._leftWidth + 8 + this._rightWidth}px) 4px ${this._rightWidth}px`;
- }
- emitNewBlock(event: React.DragEvent<HTMLDivElement>) {
- var data = event.dataTransfer.getData("babylonjs-material-node") as string;
- let nodeModel: Nullable<DefaultNodeModel> = null;
- if (data.indexOf("Block") === -1) {
- nodeModel = this.addValueNode(data);
- } else {
- let block = BlockTools.GetBlockFromString(data);
- if (block) {
- nodeModel = this.createNodeFromObject({ nodeMaterialBlock: block });
- }
- };
- if (nodeModel) {
- const zoomLevel = this._engine.diagramModel.getZoomLevel() / 100.0;
- let x = (event.clientX - event.currentTarget.offsetLeft - this._engine.diagramModel.getOffsetX() - this.NodeWidth) / zoomLevel;
- let y = (event.clientY - event.currentTarget.offsetTop - this._engine.diagramModel.getOffsetY() - 20) / zoomLevel;
- nodeModel.setPosition(x, y);
- }
- this.forceUpdate();
- }
- render() {
- return (
- <Portal globalState={this.props.globalState}>
- <div id="node-editor-graph-root" style={
- {
- gridTemplateColumns: this.buildColumnLayout()
- }
- }>
- {/* Node creation menu */}
- <NodeListComponent globalState={this.props.globalState} />
- <div id="leftGrab"
- onPointerDown={evt => this.onPointerDown(evt)}
- onPointerUp={evt => this.onPointerUp(evt)}
- onPointerMove={evt => this.resizeColumns(evt)}
- ></div>
- {/* The node graph diagram */}
- <div className="diagram-container"
- onDrop={event => {
- this.emitNewBlock(event);
- }}
- onDragOver={event => {
- event.preventDefault();
- }}
- >
- <DiagramWidget className="diagram" deleteKeys={[46]} ref={"test"}
- allowLooseLinks={false}
- inverseZoom={true} diagramEngine={this._engine} maxNumberPointsPerLink={0} />
- </div>
- <div id="rightGrab"
- onPointerDown={evt => this.onPointerDown(evt)}
- onPointerUp={evt => this.onPointerUp(evt)}
- onPointerMove={evt => this.resizeColumns(evt, false)}
- ></div>
- {/* Property tab */}
- <PropertyTabComponent globalState={this.props.globalState} />
- <LogComponent globalState={this.props.globalState} />
- </div>
- <MessageDialogComponent globalState={this.props.globalState} />
- </Portal>
- );
- }
- }
|