5afb1bc89c2dc3f867693c4ce8814bfbe472a373c6d15955ebdf24896d6af014.json 18 KB

1
  1. {"ast":null,"code":"import { __decorate } from \"../../../../tslib.es6.js\";\nimport { NodeGeometryBlockConnectionPointTypes } from \"../../Enums/nodeGeometryConnectionPointTypes.js\";\nimport { NodeGeometryBlock } from \"../../nodeGeometryBlock.js\";\nimport { GeometryInputBlock } from \"../geometryInputBlock.js\";\nimport { RegisterClass } from \"../../../../Misc/typeStore.js\";\nimport { CreateSegmentedBoxVertexData } from \"../../../Builders/boxBuilder.js\";\nimport { editableInPropertyPage } from \"../../../../Decorators/nodeDecorator.js\";\n/**\n * Defines a block used to generate box geometry data\n */\nexport class BoxBlock extends NodeGeometryBlock {\n /**\n * Create a new BoxBlock\n * @param name defines the block name\n */\n constructor(name) {\n super(name);\n /**\n * Gets or sets a boolean indicating that this block can evaluate context\n * Build performance is improved when this value is set to false as the system will cache values instead of reevaluating everything per context change\n */\n this.evaluateContext = false;\n this.registerInput(\"size\", NodeGeometryBlockConnectionPointTypes.Float, true, 1);\n this.registerInput(\"width\", NodeGeometryBlockConnectionPointTypes.Float, true, 0);\n this.registerInput(\"height\", NodeGeometryBlockConnectionPointTypes.Float, true, 0);\n this.registerInput(\"depth\", NodeGeometryBlockConnectionPointTypes.Float, true, 0);\n this.registerInput(\"subdivisions\", NodeGeometryBlockConnectionPointTypes.Int, true, 1);\n this.registerInput(\"subdivisionsX\", NodeGeometryBlockConnectionPointTypes.Int, true, 0);\n this.registerInput(\"subdivisionsY\", NodeGeometryBlockConnectionPointTypes.Int, true, 0);\n this.registerInput(\"subdivisionsZ\", NodeGeometryBlockConnectionPointTypes.Int, true, 0);\n this.registerOutput(\"geometry\", NodeGeometryBlockConnectionPointTypes.Geometry);\n }\n /**\n * Gets the current class name\n * @returns the class name\n */\n getClassName() {\n return \"BoxBlock\";\n }\n /**\n * Gets the size input component\n */\n get size() {\n return this._inputs[0];\n }\n /**\n * Gets the width input component\n */\n get width() {\n return this._inputs[1];\n }\n /**\n * Gets the height input component\n */\n get height() {\n return this._inputs[2];\n }\n /**\n * Gets the depth input component\n */\n get depth() {\n return this._inputs[3];\n }\n /**\n * Gets the subdivisions input component\n */\n get subdivisions() {\n return this._inputs[4];\n }\n /**\n * Gets the subdivisionsX input component\n */\n get subdivisionsX() {\n return this._inputs[5];\n }\n /**\n * Gets the subdivisionsY input component\n */\n get subdivisionsY() {\n return this._inputs[6];\n }\n /**\n * Gets the subdivisionsZ input component\n */\n get subdivisionsZ() {\n return this._inputs[7];\n }\n /**\n * Gets the geometry output component\n */\n get geometry() {\n return this._outputs[0];\n }\n autoConfigure() {\n if (this.size.isConnected) {\n return;\n }\n if (!this.width.isConnected && !this.height.isConnected && !this.depth.isConnected) {\n const sizeInput = new GeometryInputBlock(\"Size\");\n sizeInput.value = 1;\n sizeInput.output.connectTo(this.size);\n return;\n }\n if (!this.width.isConnected) {\n const widthInput = new GeometryInputBlock(\"Width\");\n widthInput.value = 1;\n widthInput.output.connectTo(this.width);\n }\n if (!this.height.isConnected) {\n const heightInput = new GeometryInputBlock(\"Height\");\n heightInput.value = 1;\n heightInput.output.connectTo(this.height);\n }\n if (!this.depth.isConnected) {\n const depthInput = new GeometryInputBlock(\"Depth\");\n depthInput.value = 1;\n depthInput.output.connectTo(this.depth);\n }\n }\n _buildBlock(state) {\n const options = {};\n const func = state => {\n options.size = this.size.getConnectedValue(state);\n options.width = this.width.getConnectedValue(state);\n options.height = this.height.getConnectedValue(state);\n options.depth = this.depth.getConnectedValue(state);\n const subdivisions = this.subdivisions.getConnectedValue(state);\n const subdivisionsX = this.subdivisionsX.getConnectedValue(state);\n const subdivisionsY = this.subdivisionsY.getConnectedValue(state);\n const subdivisionsZ = this.subdivisionsZ.getConnectedValue(state);\n if (subdivisions) {\n options.segments = subdivisions;\n }\n if (subdivisionsX) {\n options.widthSegments = subdivisionsX;\n }\n if (subdivisionsY) {\n options.heightSegments = subdivisionsY;\n }\n if (subdivisionsZ) {\n options.depthSegments = subdivisionsZ;\n }\n // Append vertex data from the plane builder\n return CreateSegmentedBoxVertexData(options);\n };\n if (this.evaluateContext) {\n this.geometry._storedFunction = func;\n } else {\n const value = func(state);\n this.geometry._storedFunction = () => {\n this.geometry._executionCount = 1;\n return value.clone();\n };\n }\n }\n _dumpPropertiesCode() {\n const codeString = super._dumpPropertiesCode() + `${this._codeVariableName}.evaluateContext = ${this.evaluateContext ? \"true\" : \"false\"};\\n`;\n return codeString;\n }\n /**\n * Serializes this block in a JSON representation\n * @returns the serialized block object\n */\n serialize() {\n const serializationObject = super.serialize();\n serializationObject.evaluateContext = this.evaluateContext;\n return serializationObject;\n }\n _deserialize(serializationObject) {\n super._deserialize(serializationObject);\n this.evaluateContext = serializationObject.evaluateContext;\n }\n}\n__decorate([editableInPropertyPage(\"Evaluate context\", 0 /* PropertyTypeForEdition.Boolean */, \"ADVANCED\", {\n embedded: true,\n notifiers: {\n rebuild: true\n }\n})], BoxBlock.prototype, \"evaluateContext\", void 0);\nRegisterClass(\"BABYLON.BoxBlock\", BoxBlock);","map":{"version":3,"names":["__decorate","NodeGeometryBlockConnectionPointTypes","NodeGeometryBlock","GeometryInputBlock","RegisterClass","CreateSegmentedBoxVertexData","editableInPropertyPage","BoxBlock","constructor","name","evaluateContext","registerInput","Float","Int","registerOutput","Geometry","getClassName","size","_inputs","width","height","depth","subdivisions","subdivisionsX","subdivisionsY","subdivisionsZ","geometry","_outputs","autoConfigure","isConnected","sizeInput","value","output","connectTo","widthInput","heightInput","depthInput","_buildBlock","state","options","func","getConnectedValue","segments","widthSegments","heightSegments","depthSegments","_storedFunction","_executionCount","clone","_dumpPropertiesCode","codeString","_codeVariableName","serialize","serializationObject","_deserialize","embedded","notifiers","rebuild","prototype"],"sources":["F:/workspace/202226701027/huinongbao-app/node_modules/@babylonjs/core/Meshes/Node/Blocks/Sources/boxBlock.js"],"sourcesContent":["import { __decorate } from \"../../../../tslib.es6.js\";\nimport { NodeGeometryBlockConnectionPointTypes } from \"../../Enums/nodeGeometryConnectionPointTypes.js\";\nimport { NodeGeometryBlock } from \"../../nodeGeometryBlock.js\";\nimport { GeometryInputBlock } from \"../geometryInputBlock.js\";\nimport { RegisterClass } from \"../../../../Misc/typeStore.js\";\nimport { CreateSegmentedBoxVertexData } from \"../../../Builders/boxBuilder.js\";\nimport { editableInPropertyPage } from \"../../../../Decorators/nodeDecorator.js\";\n/**\n * Defines a block used to generate box geometry data\n */\nexport class BoxBlock extends NodeGeometryBlock {\n /**\n * Create a new BoxBlock\n * @param name defines the block name\n */\n constructor(name) {\n super(name);\n /**\n * Gets or sets a boolean indicating that this block can evaluate context\n * Build performance is improved when this value is set to false as the system will cache values instead of reevaluating everything per context change\n */\n this.evaluateContext = false;\n this.registerInput(\"size\", NodeGeometryBlockConnectionPointTypes.Float, true, 1);\n this.registerInput(\"width\", NodeGeometryBlockConnectionPointTypes.Float, true, 0);\n this.registerInput(\"height\", NodeGeometryBlockConnectionPointTypes.Float, true, 0);\n this.registerInput(\"depth\", NodeGeometryBlockConnectionPointTypes.Float, true, 0);\n this.registerInput(\"subdivisions\", NodeGeometryBlockConnectionPointTypes.Int, true, 1);\n this.registerInput(\"subdivisionsX\", NodeGeometryBlockConnectionPointTypes.Int, true, 0);\n this.registerInput(\"subdivisionsY\", NodeGeometryBlockConnectionPointTypes.Int, true, 0);\n this.registerInput(\"subdivisionsZ\", NodeGeometryBlockConnectionPointTypes.Int, true, 0);\n this.registerOutput(\"geometry\", NodeGeometryBlockConnectionPointTypes.Geometry);\n }\n /**\n * Gets the current class name\n * @returns the class name\n */\n getClassName() {\n return \"BoxBlock\";\n }\n /**\n * Gets the size input component\n */\n get size() {\n return this._inputs[0];\n }\n /**\n * Gets the width input component\n */\n get width() {\n return this._inputs[1];\n }\n /**\n * Gets the height input component\n */\n get height() {\n return this._inputs[2];\n }\n /**\n * Gets the depth input component\n */\n get depth() {\n return this._inputs[3];\n }\n /**\n * Gets the subdivisions input component\n */\n get subdivisions() {\n return this._inputs[4];\n }\n /**\n * Gets the subdivisionsX input component\n */\n get subdivisionsX() {\n return this._inputs[5];\n }\n /**\n * Gets the subdivisionsY input component\n */\n get subdivisionsY() {\n return this._inputs[6];\n }\n /**\n * Gets the subdivisionsZ input component\n */\n get subdivisionsZ() {\n return this._inputs[7];\n }\n /**\n * Gets the geometry output component\n */\n get geometry() {\n return this._outputs[0];\n }\n autoConfigure() {\n if (this.size.isConnected) {\n return;\n }\n if (!this.width.isConnected && !this.height.isConnected && !this.depth.isConnected) {\n const sizeInput = new GeometryInputBlock(\"Size\");\n sizeInput.value = 1;\n sizeInput.output.connectTo(this.size);\n return;\n }\n if (!this.width.isConnected) {\n const widthInput = new GeometryInputBlock(\"Width\");\n widthInput.value = 1;\n widthInput.output.connectTo(this.width);\n }\n if (!this.height.isConnected) {\n const heightInput = new GeometryInputBlock(\"Height\");\n heightInput.value = 1;\n heightInput.output.connectTo(this.height);\n }\n if (!this.depth.isConnected) {\n const depthInput = new GeometryInputBlock(\"Depth\");\n depthInput.value = 1;\n depthInput.output.connectTo(this.depth);\n }\n }\n _buildBlock(state) {\n const options = {};\n const func = (state) => {\n options.size = this.size.getConnectedValue(state);\n options.width = this.width.getConnectedValue(state);\n options.height = this.height.getConnectedValue(state);\n options.depth = this.depth.getConnectedValue(state);\n const subdivisions = this.subdivisions.getConnectedValue(state);\n const subdivisionsX = this.subdivisionsX.getConnectedValue(state);\n const subdivisionsY = this.subdivisionsY.getConnectedValue(state);\n const subdivisionsZ = this.subdivisionsZ.getConnectedValue(state);\n if (subdivisions) {\n options.segments = subdivisions;\n }\n if (subdivisionsX) {\n options.widthSegments = subdivisionsX;\n }\n if (subdivisionsY) {\n options.heightSegments = subdivisionsY;\n }\n if (subdivisionsZ) {\n options.depthSegments = subdivisionsZ;\n }\n // Append vertex data from the plane builder\n return CreateSegmentedBoxVertexData(options);\n };\n if (this.evaluateContext) {\n this.geometry._storedFunction = func;\n }\n else {\n const value = func(state);\n this.geometry._storedFunction = () => {\n this.geometry._executionCount = 1;\n return value.clone();\n };\n }\n }\n _dumpPropertiesCode() {\n const codeString = super._dumpPropertiesCode() + `${this._codeVariableName}.evaluateContext = ${this.evaluateContext ? \"true\" : \"false\"};\\n`;\n return codeString;\n }\n /**\n * Serializes this block in a JSON representation\n * @returns the serialized block object\n */\n serialize() {\n const serializationObject = super.serialize();\n serializationObject.evaluateContext = this.evaluateContext;\n return serializationObject;\n }\n _deserialize(serializationObject) {\n super._deserialize(serializationObject);\n this.evaluateContext = serializationObject.evaluateContext;\n }\n}\n__decorate([\n editableInPropertyPage(\"Evaluate context\", 0 /* PropertyTypeForEdition.Boolean */, \"ADVANCED\", { embedded: true, notifiers: { rebuild: true } })\n], BoxBlock.prototype, \"evaluateContext\", void 0);\nRegisterClass(\"BABYLON.BoxBlock\", BoxBlock);\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}