@divinevoxel/vlox 0.0.74 → 0.0.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cache/Cache.types.d.ts +1 -1
- package/Contexts/Base/Remote/InitDataSync.js +3 -3
- package/Contexts/Base/Remote/InitWorldDataSync.d.ts +2 -1
- package/Contexts/Base/Remote/InitWorldDataSync.js +13 -2
- package/Contexts/Generator/DivineVoxelEngineGenerator.d.ts +9 -0
- package/Contexts/Generator/DivineVoxelEngineGenerator.js +14 -0
- package/Contexts/{Constructor/ConstrcutorTheads.d.ts → Generator/GeneratorThreads.d.ts} +2 -2
- package/Contexts/{Constructor/ConstrcutorTheads.js → Generator/GeneratorThreads.js} +2 -2
- package/Contexts/Generator/index.d.ts +1 -0
- package/Contexts/Generator/index.js +1 -0
- package/Contexts/Mesher/DivineVoxelEngineMesher.d.ts +9 -0
- package/Contexts/Mesher/DivineVoxelEngineMesher.js +14 -0
- package/Contexts/Mesher/MesherTheads.d.ts +7 -0
- package/Contexts/Mesher/MesherTheads.js +14 -0
- package/Contexts/Mesher/index.d.ts +1 -0
- package/Contexts/Mesher/index.js +1 -0
- package/Contexts/Nexus/NexusTheads.js +1 -1
- package/Contexts/Render/DVERenderThreads.d.ts +2 -1
- package/Contexts/Render/DVERenderThreads.js +4 -2
- package/Contexts/Render/DivineVoxelEngineRender.d.ts +11 -1
- package/Contexts/Render/DivineVoxelEngineRender.js +9 -4
- package/Contexts/World/DivineVoxelEngineWorld.d.ts +9 -0
- package/Contexts/World/WorldThreads.d.ts +2 -1
- package/Contexts/World/WorldThreads.js +4 -2
- package/Init/StartGenerator.d.ts +2 -0
- package/Init/StartGenerator.js +45 -0
- package/Init/StartMesher.d.ts +2 -0
- package/Init/StartMesher.js +41 -0
- package/Init/StartNexus.js +4 -2
- package/Init/StartRenderer.d.ts +4 -1
- package/Init/StartRenderer.js +59 -14
- package/Init/StartWorld.js +2 -1
- package/LICENSE.md +2 -1
- package/Math/CardinalNeighbors.d.ts +43 -3
- package/Math/CardinalNeighbors.js +54 -8
- package/Math/Indexing.d.ts +1 -0
- package/Math/Location.d.ts +10 -0
- package/Math/UtilFunctions.d.ts +4 -0
- package/Math/UtilFunctions.js +52 -0
- package/Math/index.d.ts +1 -10
- package/Math/index.js +1 -0
- package/Mesher/Functions/Base/MeshSectionBase.d.ts +5 -0
- package/Mesher/Functions/Base/MeshSectionBase.js +105 -0
- package/Mesher/Functions/CompactVoxelSectionMesh.js +4 -10
- package/Mesher/Functions/MeshSection.js +3 -107
- package/Mesher/Functions/MeshSectionSnapShot.d.ts +3 -0
- package/Mesher/Functions/MeshSectionSnapShot.js +14 -0
- package/Mesher/Functions/MeshTexture.js +8 -4
- package/Mesher/Functions/MeshVoxel.js +10 -4
- package/Mesher/Geomtry/CompactedSectionVoxelMesh.d.ts +5 -2
- package/Mesher/Geomtry/CompactedSectionVoxelMesh.js +12 -7
- package/Mesher/Geomtry/Functions/GetBounds.d.ts +2 -0
- package/Mesher/{Models/Common/BoundsFunctions.js → Geomtry/Functions/GetBounds.js} +13 -13
- package/Mesher/Geomtry/Geometry.types.d.ts +14 -0
- package/Mesher/Geomtry/Geometry.types.js +11 -0
- package/Mesher/Geomtry/Primitives/Quad.d.ts +7 -15
- package/Mesher/Geomtry/Primitives/Quad.js +36 -91
- package/Mesher/Geomtry/Primitives/QuadVertexData.d.ts +4 -14
- package/Mesher/Geomtry/Primitives/QuadVertexData.js +17 -57
- package/Mesher/Geomtry/Primitives/Triangle.d.ts +65 -0
- package/Mesher/Geomtry/Primitives/Triangle.js +148 -0
- package/Mesher/Geomtry/Primitives/TriangleVertexData.d.ts +58 -0
- package/Mesher/Geomtry/Primitives/TriangleVertexData.js +263 -0
- package/Mesher/Geomtry/Primitives/index.d.ts +2 -0
- package/Mesher/Geomtry/Primitives/index.js +2 -0
- package/Mesher/Geomtry/Shapes/Box.d.ts +20 -0
- package/Mesher/Geomtry/Shapes/Box.js +69 -0
- package/Mesher/Geomtry/Transform/TransformBox.d.ts +3 -0
- package/{Models/Shared/Transform.js → Mesher/Geomtry/Transform/TransformBox.js} +9 -124
- package/Mesher/Geomtry/Transform/TransformQuad.d.ts +3 -0
- package/Mesher/Geomtry/Transform/TransformQuad.js +113 -0
- package/Mesher/Geomtry/Transform/TransformTriangle.d.ts +3 -0
- package/Mesher/Geomtry/Transform/TransformTriangle.js +112 -0
- package/Mesher/Geomtry/VoxelGeometryBuilder.d.ts +3 -4
- package/Mesher/Geomtry/VoxelGeometryBuilder.js +128 -112
- package/Mesher/Geomtry/VoxelMeshBVHBuilder.d.ts +1 -1
- package/Mesher/Geomtry/VoxelMeshBVHBuilder.js +1 -1
- package/Mesher/Geomtry/VoxelMeshVertexStructCursor.d.ts +9 -3
- package/Mesher/Geomtry/VoxelMeshVertexStructCursor.js +26 -3
- package/Mesher/Geomtry/VoxelShaderData.d.ts +4 -1
- package/Mesher/Geomtry/VoxelShaderData.js +25 -10
- package/Mesher/InitMesher.d.ts +1 -1
- package/Mesher/InitMesher.js +6 -0
- package/Mesher/InitTask.js +17 -6
- package/Mesher/Models/Common/Calc/CalcConstants.d.ts +1 -5
- package/Mesher/Models/Common/Calc/CalcConstants.js +2 -76
- package/Mesher/Models/Common/Faces/CullRulledFace.d.ts +2 -0
- package/Mesher/Models/Common/Faces/CullRulledFace.js +60 -0
- package/Mesher/Models/Common/Faces/ShadeRulelessFace.d.ts +4 -0
- package/Mesher/Models/Common/Faces/ShadeRulelessFace.js +12 -0
- package/Mesher/Models/Common/Faces/ShadeRulledFace.d.ts +4 -0
- package/Mesher/Models/Common/Faces/ShadeRulledFace.js +58 -0
- package/Mesher/Models/Common/GetTexture.d.ts +6 -0
- package/Mesher/Models/Common/GetTexture.js +12 -0
- package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.js +1 -1
- package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.d.ts +2 -3
- package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.js +124 -48
- package/Mesher/Models/Nodes/Default/QuadVoxelGeometryNode.d.ts +13 -0
- package/Mesher/Models/Nodes/Default/QuadVoxelGeometryNode.js +55 -0
- package/Mesher/Models/Nodes/Default/TriangleVoxelGeometryNode.d.ts +13 -0
- package/Mesher/Models/Nodes/Default/TriangleVoxelGeometryNode.js +52 -0
- package/Mesher/Models/Nodes/GeometryNode.d.ts +2 -8
- package/Mesher/Models/Nodes/GeometryNode.js +1 -7
- package/Mesher/Models/Nodes/Types/GeomtryNode.types.d.ts +7 -0
- package/Mesher/Models/Nodes/Types/QuadVoxelGometryNodeTypes.d.ts +29 -0
- package/{Models/Input/QuadVoxelGometryInputs.js → Mesher/Models/Nodes/Types/QuadVoxelGometryNodeTypes.js} +4 -8
- package/Mesher/Models/Nodes/Types/TriangleVoxelGometryNodeTypes.d.ts +28 -0
- package/Mesher/Models/Nodes/Types/TriangleVoxelGometryNodeTypes.js +24 -0
- package/Mesher/Models/Nodes/VoxelGeometryConstructor.d.ts +4 -8
- package/Mesher/Models/Nodes/VoxelGeometryConstructor.js +16 -52
- package/Mesher/Models/Procedures/Default/ConsistentRotationTextureProcedure.d.ts +25 -0
- package/Mesher/Models/Procedures/Default/ConsistentRotationTextureProcedure.js +44 -0
- package/Mesher/Models/Procedures/Default/OutlinedTextureProcedure.d.ts +28 -0
- package/Mesher/Models/Procedures/Default/OutlinedTextureProcedure.js +162 -0
- package/Mesher/Models/Procedures/TextureProcedure.d.ts +16 -0
- package/Mesher/Models/Procedures/TextureProcedure.js +2 -0
- package/Mesher/Models/Procedures/TextureProcedureRegister.d.ts +6 -0
- package/Mesher/Models/Procedures/TextureProcedureRegister.js +16 -0
- package/Mesher/Models/VoxelConstructor.d.ts +1 -5
- package/Mesher/Models/VoxelConstructor.js +1 -11
- package/Mesher/Models/VoxelGeometryBuilderCacheSpace.js +2 -2
- package/Mesher/Models/VoxelModelBuilder.d.ts +0 -1
- package/Mesher/Models/VoxelModelBuilder.js +1 -2
- package/Mesher/Models/VoxelModelConstructorRegister.d.ts +8 -2
- package/Mesher/Models/VoxelModelConstructorRegister.js +6 -8
- package/Renderer/Classes/SectionMesh.d.ts +2 -3
- package/Renderer/Classes/SectionMesh.js +13 -10
- package/Renderer/Classes/SectorMesh.d.ts +5 -5
- package/Renderer/Classes/SectorMesh.js +17 -6
- package/Renderer/InitTasks.d.ts +1 -2
- package/Renderer/InitTasks.js +4 -10
- package/Renderer/MeshManager.d.ts +6 -1
- package/Renderer/MeshManager.js +11 -14
- package/Renderer/MeshRegister.d.ts +6 -4
- package/Renderer/MeshRegister.js +34 -43
- package/Settings/EngineSettings.js +3 -0
- package/Settings/EngineSettings.types.d.ts +7 -1
- package/Settings/EngineSettings.types.js +5 -1
- package/Stats/EngineStats.d.ts +19 -0
- package/Stats/EngineStats.js +27 -0
- package/Tasks/Paint/Common.d.ts +7 -0
- package/Tasks/Paint/Common.js +200 -0
- package/Tasks/Paint/Erase/EraseVoxel.d.ts +3 -0
- package/Tasks/Paint/Erase/EraseVoxel.js +31 -0
- package/Tasks/Paint/Erase/EraseVoxelPath.d.ts +4 -0
- package/Tasks/Paint/Erase/EraseVoxelPath.js +80 -0
- package/Tasks/Paint/Erase/EraseVoxelTemplate.d.ts +4 -0
- package/Tasks/Paint/Erase/EraseVoxelTemplate.js +34 -0
- package/Tasks/Paint/InitTasks.js +16 -0
- package/Tasks/Paint/Paint/PaintVoxel.d.ts +4 -0
- package/Tasks/Paint/Paint/PaintVoxel.js +29 -0
- package/Tasks/Paint/Paint/PaintVoxelPath.d.ts +4 -0
- package/Tasks/Paint/Paint/PaintVoxelPath.js +78 -0
- package/Tasks/Paint/Paint/PaintVoxelTemplate.d.ts +4 -0
- package/Tasks/Paint/Paint/PaintVoxelTemplate.js +36 -0
- package/Tasks/Propagation/Flow/FlowUpdate.js +1 -1
- package/Tasks/Propagation/Flow/WorldFlow.js +2 -2
- package/Tasks/Propagation/Illumanation/CommonFunctions.d.ts +6 -6
- package/Tasks/Propagation/Illumanation/CommonFunctions.js +6 -7
- package/Tasks/Propagation/Illumanation/RGBUpdate.js +9 -9
- package/Tasks/Propagation/Illumanation/SunUpdate.js +8 -7
- package/Tasks/Propagation/Illumanation/WorldSun.js +11 -9
- package/Tasks/Propagation/InitTasks.js +16 -28
- package/Tasks/Propagation/Power/PowerUpdate.js +10 -10
- package/Tasks/Tasks.types.d.ts +25 -9
- package/Tasks/TasksIds.d.ts +13 -20
- package/Tasks/TasksIds.js +13 -20
- package/Tasks/VoxelUpdateTask.d.ts +6 -5
- package/Tasks/VoxelUpdateTask.js +53 -37
- package/Tasks/WorldGeneration/InitTasks.d.ts +4 -1
- package/Tasks/WorldGeneration/InitTasks.js +6 -3
- package/Tasks/WorldGeneration/WorldGen.types.d.ts +2 -3
- package/Tasks/WorldGeneration/WorldGenBrush.js +6 -7
- package/Tasks/WorldGeneration/WorldGenRegister.d.ts +3 -1
- package/Tasks/WorldGeneration/WorldGenRegister.js +13 -3
- package/Tasks/WorldGeneration/WorldGeneration.d.ts +2 -2
- package/Tasks/WorldGeneration/WorldGeneration.js +22 -3
- package/Templates/Archive/ArchivedVoxelTemplate.d.ts +37 -0
- package/Templates/Archive/ArchivedVoxelTemplate.js +124 -0
- package/Templates/Archive/ArchivedVoxelTemplate.types.d.ts +45 -0
- package/Templates/Archive/ArchivedVoxelTemplate.types.js +1 -0
- package/Templates/Archive/Functions/CreateArchivedTemplate.d.ts +11 -0
- package/Templates/Archive/Functions/CreateArchivedTemplate.js +184 -0
- package/Templates/Archive/Functions/ExportArchiedTemplateJSON.d.ts +2 -0
- package/Templates/Archive/Functions/ExportArchiedTemplateJSON.js +44 -0
- package/Templates/Archive/Functions/ImportArchivedTemplateJSON.d.ts +2 -0
- package/Templates/Archive/Functions/ImportArchivedTemplateJSON.js +37 -0
- package/Templates/Cursor/TemplateCursor.d.ts +5 -3
- package/Templates/Cursor/TemplateCursor.js +8 -4
- package/Templates/Cursor/TemplateProxy.d.ts +10 -0
- package/Templates/Cursor/TemplateProxy.js +22 -0
- package/Templates/Cursor/TemplateVoxelCursor.d.ts +5 -7
- package/Templates/Cursor/TemplateVoxelCursor.js +7 -13
- package/Templates/Full/FullVoxelTemplate.d.ts +27 -0
- package/Templates/Full/FullVoxelTemplate.js +108 -0
- package/Templates/Full/FullVoxelTemplate.types.d.ts +5 -0
- package/Templates/Full/FullVoxelTemplate.types.js +1 -0
- package/Templates/Full/Functions/CreateFullTemplate.d.ts +3 -0
- package/Templates/Full/Functions/CreateFullTemplate.js +27 -0
- package/Templates/Functions/FlipTemplate.d.ts +2 -2
- package/Templates/Functions/FlipTemplate.js +1 -9
- package/Templates/Functions/RotateTemplate.d.ts +2 -2
- package/Templates/Functions/RotateTemplate.js +2 -10
- package/Templates/Functions/index.d.ts +1 -1
- package/Templates/Functions/index.js +1 -1
- package/Templates/Path/VoxelPath.d.ts +34 -0
- package/Templates/Path/VoxelPath.js +127 -0
- package/Templates/Path/VoxelPath.types.d.ts +10 -0
- package/Templates/Path/VoxelPath.types.js +1 -0
- package/Templates/Selection/VoxelBFSSelection.d.ts +20 -0
- package/Templates/Selection/VoxelBFSSelection.js +130 -0
- package/Templates/Selection/VoxelBoxSelection.d.ts +14 -0
- package/Templates/Selection/VoxelBoxSelection.js +105 -0
- package/Templates/Selection/VoxelSelecton.d.ts +6 -0
- package/Templates/Selection/VoxelSelecton.js +1 -0
- package/Templates/Selection/VoxelSurfaceSelection.d.ts +27 -0
- package/Templates/Selection/VoxelSurfaceSelection.js +206 -0
- package/Templates/Selection/VoxelTemplateSelection.d.ts +10 -0
- package/Templates/Selection/VoxelTemplateSelection.js +26 -0
- package/Templates/Shapes/BasicVoxelShapeTemplate.d.ts +35 -0
- package/Templates/Shapes/BasicVoxelShapeTemplate.js +126 -0
- package/Templates/Shapes/BoxVoxelTemplate.d.ts +22 -0
- package/Templates/Shapes/BoxVoxelTemplate.js +75 -0
- package/Templates/Shapes/ConeVoxelTemplate.d.ts +22 -0
- package/Templates/Shapes/ConeVoxelTemplate.js +69 -0
- package/Templates/Shapes/CylinderVoxelTemplate.d.ts +22 -0
- package/Templates/Shapes/CylinderVoxelTemplate.js +69 -0
- package/Templates/Shapes/OctahedronVoxelTemplate.d.ts +22 -0
- package/Templates/Shapes/OctahedronVoxelTemplate.js +69 -0
- package/Templates/Shapes/PyramidVoxelTemplate.d.ts +30 -0
- package/Templates/Shapes/PyramidVoxelTemplate.js +140 -0
- package/Templates/Shapes/SphereVoxelTemplate.d.ts +24 -0
- package/Templates/Shapes/SphereVoxelTemplate.js +97 -0
- package/Templates/Shapes/TorusVoxelTemplate.d.ts +22 -0
- package/Templates/Shapes/TorusVoxelTemplate.js +69 -0
- package/Templates/Shapes/VoxelShapeTemplate.types.d.ts +25 -0
- package/Templates/Shapes/VoxelShapeTemplate.types.js +1 -0
- package/Templates/VoxelTempateRegister.d.ts +6 -0
- package/Templates/VoxelTempateRegister.js +30 -0
- package/Templates/VoxelTemplates.types.d.ts +23 -26
- package/Templates/index.d.ts +1 -1
- package/Templates/index.js +1 -1
- package/Textures/Classes/CompiledTexture.d.ts +3 -0
- package/Textures/Classes/CompiledTexture.js +3 -0
- package/Textures/Classes/CompiledTextureAnimation.d.ts +1 -1
- package/Textures/Classes/CompiledTextureAnimation.js +8 -2
- package/Textures/Functions/BuildTextureData.d.ts +2 -1
- package/Textures/Functions/BuildTextureData.js +86 -17
- package/Textures/Texture.types.d.ts +5 -1
- package/Textures/TextureManager.d.ts +2 -1
- package/Textures/TextureManager.js +5 -2
- package/Tools/Brush/AdvancedBrushTool.d.ts +1 -5
- package/Tools/Brush/AdvancedBrushTool.js +2 -30
- package/Tools/Brush/Brush.d.ts +8 -2
- package/Tools/Brush/Brush.js +61 -36
- package/Tools/Tasks/TasksTool.d.ts +49 -20
- package/Tools/Tasks/TasksTool.js +87 -23
- package/Util/Binary/BinaryArrays.d.ts +2 -0
- package/Util/Binary/BinaryArrays.js +15 -0
- package/Util/Binary/BinaryFunctions.d.ts +3 -0
- package/Util/Binary/BinaryFunctions.js +18 -0
- package/Util/BinaryBuffer/BinaryBuffer.d.ts +30 -0
- package/Util/BinaryBuffer/BinaryBuffer.js +78 -0
- package/Util/BinaryBuffer/BinaryBuffer.types.d.ts +37 -0
- package/Util/BinaryBuffer/BinaryBuffer.types.js +28 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferConvert.d.ts +5 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferConvert.js +60 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferJSON.d.ts +3 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferJSON.js +64 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferRead.d.ts +3 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferRead.js +26 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferToTypedArray.d.ts +2 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferToTypedArray.js +43 -0
- package/Util/BinaryBuffer/index.d.ts +2 -0
- package/Util/BinaryBuffer/index.js +2 -0
- package/Util/LocationData.d.ts +3 -0
- package/Util/LocationData.js +16 -0
- package/Util/PriorityQueue.d.ts +18 -0
- package/Util/PriorityQueue.js +62 -0
- package/Util/TickInterval.d.ts +16 -0
- package/Util/TickInterval.js +49 -0
- package/Util/TypedEventTarget.d.ts +1 -0
- package/Util/TypedEventTarget.js +3 -0
- package/Util/Util.types.d.ts +4 -0
- package/Util/WorkItemProgress.d.ts +23 -0
- package/Util/WorkItemProgress.js +52 -0
- package/Voxels/Archive/VoxelArchive.types.d.ts +43 -0
- package/Voxels/Archive/VoxelArchive.types.js +6 -0
- package/Voxels/Archive/VoxelPaletteArchiveReader.d.ts +11 -0
- package/Voxels/Archive/VoxelPaletteArchiveReader.js +73 -0
- package/Voxels/Archive/VoxelPaletteArechive.d.ts +15 -0
- package/Voxels/Archive/VoxelPaletteArechive.js +81 -0
- package/Voxels/Cursor/DataCursor.interface.d.ts +1 -0
- package/Voxels/Cursor/VoxelCursor.d.ts +6 -7
- package/Voxels/Cursor/VoxelCursor.interface.d.ts +23 -24
- package/Voxels/Cursor/VoxelCursor.interface.js +91 -96
- package/Voxels/Cursor/VoxelCursor.js +22 -12
- package/Voxels/Cursor/VoxelLightData.d.ts +2 -0
- package/Voxels/Cursor/VoxelLightData.js +2 -0
- package/Voxels/Data/VoxelPalettesRegister.d.ts +11 -1
- package/Voxels/Data/VoxelPalettesRegister.js +17 -1
- package/Voxels/Data/VoxelPropertiesRegister.d.ts +4 -0
- package/Voxels/Data/VoxelPropertiesRegister.js +3 -0
- package/Voxels/Data/VoxelTag.types.d.ts +7 -1
- package/Voxels/Data/VoxelTag.types.js +3 -0
- package/Voxels/Data/VoxelTagsRegister.js +4 -1
- package/Voxels/Functions/BuildPaletteData.d.ts +6 -0
- package/Voxels/Functions/BuildPaletteData.js +87 -0
- package/Voxels/Functions/BuildStateData.d.ts +4 -6
- package/Voxels/Functions/BuildStateData.js +26 -80
- package/Voxels/Functions/{BuildTagAndPaletteData.d.ts → BuildTagData.d.ts} +2 -2
- package/Voxels/Functions/{BuildTagAndPaletteData.js → BuildTagData.js} +23 -2
- package/Voxels/Indexes/VoxelIndex.d.ts +1 -1
- package/Voxels/Indexes/VoxelIndex.js +5 -4
- package/Voxels/InitVoxelData.d.ts +1 -1
- package/Voxels/InitVoxelData.js +39 -41
- package/Voxels/Interaction/Functions/PickVoxel.d.ts +9 -0
- package/Voxels/Interaction/Functions/PickVoxel.js +95 -0
- package/Voxels/Interaction/Functions/PickVoxelWorld.d.ts +8 -0
- package/Voxels/Interaction/Functions/PickVoxelWorld.js +66 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategy.d.ts +9 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategy.js +58 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategy.types.d.ts +15 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategy.types.js +1 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategyRegister.d.ts +7 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategyRegister.js +13 -0
- package/Voxels/Interaction/VoxelPickResult.d.ts +50 -0
- package/Voxels/Interaction/VoxelPickResult.js +55 -0
- package/Voxels/Logic/Classes/Types/VoxelLogicPoweredType.d.ts +8 -0
- package/Voxels/Logic/Classes/Types/VoxelLogicPoweredType.js +13 -0
- package/Voxels/Logic/Classes/Types/VoxelLogicStateType.d.ts +9 -0
- package/Voxels/Logic/Classes/Types/VoxelLogicStateType.js +23 -0
- package/Voxels/Logic/Classes/VoxelLogic.d.ts +7 -4
- package/Voxels/Logic/Classes/VoxelLogic.js +25 -27
- package/Voxels/Logic/Classes/VoxelLogicType.d.ts +11 -1
- package/Voxels/Logic/Classes/VoxelLogicType.js +6 -0
- package/Voxels/Logic/VoxelLogic.types.d.ts +5 -3
- package/Voxels/Logic/VoxelLogicRegister.d.ts +4 -3
- package/Voxels/Logic/VoxelLogicRegister.js +12 -4
- package/Voxels/Models/CompiledVoxelModel.types.d.ts +46 -0
- package/Voxels/Models/CompiledVoxelModel.types.js +1 -0
- package/{Models → Voxels/Models}/Defaults/CubeVoxelGeometry.js +0 -30
- package/{Models → Voxels/Models}/Defaults/CubeVoxelModels.d.ts +2 -0
- package/{Models → Voxels/Models}/Defaults/CubeVoxelModels.js +187 -71
- package/{Models → Voxels/Models/Defaults}/Examples.d.ts +1 -1
- package/{Models → Voxels/Models/Defaults}/Examples.js +50 -147
- package/Voxels/Models/Defaults/FarmVoxelModels.d.ts +3 -0
- package/Voxels/Models/Defaults/FarmVoxelModels.js +349 -0
- package/{Models → Voxels/Models}/Defaults/LiquidVoxelModel.js +3 -1
- package/{Models → Voxels/Models}/Defaults/PanelVoxelGeometry.js +2 -92
- package/{Models → Voxels/Models}/Defaults/PanelVoxelModels.d.ts +1 -0
- package/{Models → Voxels/Models}/Defaults/PanelVoxelModels.js +52 -180
- package/{Models → Voxels/Models}/Defaults/StairVoxelModel.js +59 -149
- package/Voxels/Models/Indexing/AOOcclusionFaceIndex.d.ts +12 -0
- package/Voxels/Models/Indexing/AOOcclusionFaceIndex.js +28 -0
- package/Voxels/Models/Indexing/CulledOcclusionFaceIndex.d.ts +12 -0
- package/Voxels/Models/Indexing/CulledOcclusionFaceIndex.js +27 -0
- package/Voxels/Models/Rules/Classes/GeomtryInput.d.ts +13 -0
- package/Voxels/Models/Rules/Classes/GeomtryInput.js +64 -0
- package/Voxels/Models/Rules/Classes/OcclusionFace.d.ts +10 -0
- package/Voxels/Models/Rules/Classes/OcclusionFace.js +5 -0
- package/Voxels/Models/Rules/Classes/OcclusionFaceRegister.d.ts +18 -0
- package/Voxels/Models/Rules/Classes/OcclusionFaceRegister.js +33 -0
- package/Voxels/Models/Rules/Classes/OcclusionQuadFace.d.ts +14 -0
- package/Voxels/Models/Rules/Classes/OcclusionQuadFace.js +118 -0
- package/Voxels/Models/Rules/Classes/OcclusionTriangleFace.d.ts +14 -0
- package/Voxels/Models/Rules/Classes/OcclusionTriangleFace.js +114 -0
- package/Voxels/Models/Rules/Classes/VoxelRulesGeometry.d.ts +22 -0
- package/Voxels/Models/Rules/Classes/VoxelRulesGeometry.js +15 -0
- package/{Models → Voxels/Models}/Rules/Classes/VoxelRulesModel.d.ts +3 -2
- package/{Models → Voxels/Models}/Rules/Functions/BuildFinalInputs.d.ts +0 -2
- package/Voxels/Models/Rules/Functions/BuildFinalInputs.js +72 -0
- package/Voxels/Models/Rules/Functions/BuildRules.d.ts +7 -0
- package/Voxels/Models/Rules/Functions/BuildRules.js +217 -0
- package/Voxels/Models/Rules/Functions/Compile/CompileGeomtryNodes.d.ts +4 -0
- package/Voxels/Models/Rules/Functions/Compile/CompileGeomtryNodes.js +39 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CalcFunctions.d.ts +8 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CalcFunctions.js +106 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileBoxGeometryNode.d.ts +5 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileBoxGeometryNode.js +14 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileQuadGeometryNode.d.ts +6 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileQuadGeometryNode.js +92 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileTriangleGeometryNode.d.ts +6 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileTriangleGeometryNode.js +115 -0
- package/{Models → Voxels/Models}/Rules/VoxelModelRuleBuilderRegister.d.ts +1 -1
- package/{Models → Voxels/Models}/Rules/VoxelModelRuleBuilderRegister.js +27 -3
- package/{Models → Voxels/Models}/VoxelModel.types.d.ts +56 -45
- package/Voxels/Models/VoxelModel.types.js +1 -0
- package/Voxels/State/Schema/BinarySchema.d.ts +5 -3
- package/Voxels/State/Schema/BinarySchema.js +23 -8
- package/Voxels/State/Schema/BinarySchemaNode.d.ts +3 -3
- package/Voxels/State/Schema/BinarySchemaNode.js +6 -6
- package/Voxels/State/Schema/ShapeStateRelationsNode.d.ts +3 -3
- package/Voxels/State/Schema/ShapeStateRelationsNode.js +2 -2
- package/Voxels/State/Schema/StateSchema.d.ts +2 -2
- package/Voxels/State/Schema/StateSchema.js +5 -7
- package/Voxels/State/SchemaRegister.d.ts +8 -6
- package/Voxels/State/SchemaRegister.js +33 -21
- package/Voxels/State/State.types.d.ts +19 -23
- package/Voxels/Types/PaintVoxelData.d.ts +17 -0
- package/Voxels/Types/PaintVoxelData.js +73 -0
- package/Voxels/Types/Voxel.types.d.ts +12 -25
- package/Voxels/Types/Voxel.types.js +1 -23
- package/Voxels/Types/VoxelModelCompiledData.types.d.ts +6 -74
- package/Voxels/index.d.ts +1 -0
- package/Voxels/index.js +1 -0
- package/World/Archive/Classes/ArchiveClasses.d.ts +7 -30
- package/World/Archive/Classes/ArchiveClasses.js +8 -33
- package/World/Archive/Classes/ImportedSection.d.ts +4 -13
- package/World/Archive/Classes/ImportedSection.js +78 -216
- package/World/Archive/Classes/ImportedSector.d.ts +7 -9
- package/World/Archive/Classes/ImportedSector.js +18 -65
- package/World/Archive/Functions/Area/ArchiveArea.d.ts +8 -0
- package/World/Archive/Functions/Area/ArchiveArea.js +65 -0
- package/World/Archive/Functions/{ArchiveArea.d.ts → Area/ImportArea.d.ts} +1 -8
- package/World/Archive/Functions/Area/ImportArea.js +59 -0
- package/World/Archive/Functions/JSON/ExportArchivedAreaJSON.d.ts +2 -0
- package/World/Archive/Functions/JSON/ExportArchivedAreaJSON.js +100 -0
- package/World/Archive/Functions/JSON/ImportArchivedAreaJSON.d.ts +2 -0
- package/World/Archive/Functions/JSON/ImportArchivedAreaJSON.js +100 -0
- package/World/Archive/Functions/Sector/ArchiveSector.d.ts +7 -0
- package/World/Archive/Functions/Sector/ArchiveSector.js +209 -0
- package/World/Archive/Functions/Sector/CreateArchivedSection.d.ts +3 -0
- package/World/Archive/Functions/Sector/CreateArchivedSection.js +147 -0
- package/World/Archive/Functions/{ImportSector.d.ts → Sector/ImportSector.d.ts} +2 -2
- package/World/Archive/Functions/Sector/ImportSector.js +32 -0
- package/World/Archive/Functions/Sector/RemoveDuplicateSections.d.ts +2 -0
- package/World/Archive/Functions/Sector/RemoveDuplicateSections.js +137 -0
- package/World/Archive/Functions/Shared/BaseData.d.ts +2 -0
- package/World/Archive/Functions/Shared/BaseData.js +14 -0
- package/World/Archive/Functions/Shared/IntToString.d.ts +1 -0
- package/World/Archive/Functions/Shared/IntToString.js +13 -0
- package/World/Archive/Functions/{Shared.d.ts → Shared/LightSegments.d.ts} +1 -2
- package/World/Archive/Functions/{Shared.js → Shared/LightSegments.js} +2 -15
- package/World/Archive/Functions/Shared/index.d.ts +3 -0
- package/World/Archive/Functions/Shared/index.js +3 -0
- package/World/Archive/Functions/index.d.ts +3 -3
- package/World/Archive/Functions/index.js +3 -3
- package/World/Archive/InitTasks.js +21 -30
- package/World/Archive/Types/Archive.types.d.ts +45 -0
- package/World/Archive/Types/Archive.types.js +1 -0
- package/World/Archive/Types/ArchiveArea.types.d.ts +38 -0
- package/World/Archive/Types/ArchiveArea.types.js +1 -0
- package/World/Archive/Types/ArchiveJSON.types.d.ts +52 -0
- package/World/Archive/Types/ArchiveJSON.types.js +1 -0
- package/World/Archive/Types/ArchivedSector.types.d.ts +43 -0
- package/World/Archive/Types/ArchivedSector.types.js +1 -0
- package/World/Archive/Types/index.d.ts +4 -0
- package/World/Archive/Types/index.js +4 -0
- package/World/Archive/index.d.ts +1 -1
- package/World/Archive/index.js +1 -1
- package/World/Cursor/SectionCursor.d.ts +4 -3
- package/World/Cursor/SectionCursor.js +13 -11
- package/World/Cursor/SectorCursor.d.ts +4 -2
- package/World/Cursor/SectorCursor.js +11 -1
- package/World/Cursor/WorldCursor.d.ts +1 -0
- package/World/Cursor/WorldCursor.js +8 -5
- package/World/Cursor/WorldVoxelCursor.d.ts +1 -3
- package/World/Cursor/WorldVoxelCursor.js +6 -26
- package/World/InitTasks.js +52 -40
- package/World/Lock/Function/LockSectors.d.ts +2 -0
- package/World/Lock/Function/LockSectors.js +28 -0
- package/World/Lock/Function/UnLockSectors.d.ts +2 -0
- package/World/Lock/Function/UnLockSectors.js +28 -0
- package/World/Lock/WorldLock.d.ts +1 -2
- package/World/Lock/WorldLock.js +3 -1
- package/World/Section/Section.d.ts +16 -21
- package/World/Section/Section.js +67 -143
- package/World/Section/SectionState.d.ts +6 -2
- package/World/Section/SectionState.js +9 -4
- package/World/Sector/Sector.d.ts +22 -8
- package/World/Sector/Sector.js +86 -67
- package/World/Sector/SectorHeightMap.d.ts +1 -1
- package/World/Sector/SectorHeightMap.js +6 -6
- package/World/Sector/SectorState.d.ts +2 -1
- package/World/Sector/SectorState.js +1 -0
- package/World/SnapShot/SectionSnapShot.d.ts +19 -0
- package/World/SnapShot/SectionSnapShot.js +72 -0
- package/World/SnapShot/SectionSnapShotCursor.d.ts +23 -0
- package/World/SnapShot/SectionSnapShotCursor.js +107 -0
- package/World/SnapShot/SnapShots.d.ts +11 -0
- package/World/SnapShot/SnapShots.js +24 -0
- package/World/Types/WorldDataSyncIds.d.ts +2 -0
- package/World/Types/WorldDataSyncIds.js +2 -0
- package/World/WorldRegister.d.ts +19 -7
- package/World/WorldRegister.js +47 -23
- package/World/WorldSpaces.d.ts +20 -0
- package/World/WorldSpaces.js +33 -0
- package/WorldSimulation/Dimensions/DimensionSegment.d.ts +38 -0
- package/WorldSimulation/Dimensions/DimensionSegment.js +120 -0
- package/WorldSimulation/Dimensions/DimensionSimulation.d.ts +26 -0
- package/WorldSimulation/Dimensions/DimensionSimulation.js +95 -0
- package/WorldSimulation/{Internal/Classes → Dimensions}/Generator.d.ts +5 -9
- package/WorldSimulation/{Internal/Classes → Dimensions}/Generator.js +10 -21
- package/WorldSimulation/{Internal/Classes → Dimensions}/SectorState.d.ts +4 -0
- package/WorldSimulation/Dimensions/SectorState.js +56 -0
- package/WorldSimulation/Dimensions/SimulationSector.d.ts +30 -0
- package/WorldSimulation/Dimensions/SimulationSector.js +214 -0
- package/WorldSimulation/Internal/WorldSimulationDimensions.d.ts +1 -1
- package/WorldSimulation/Internal/WorldSimulationDimensions.js +4 -3
- package/WorldSimulation/Internal/WorldSimulationTasks.d.ts +14 -9
- package/WorldSimulation/Internal/WorldSimulationTasks.js +132 -61
- package/WorldSimulation/Internal/runActiveSectorUpdate.d.ts +1 -0
- package/WorldSimulation/Internal/runActiveSectorUpdate.js +106 -0
- package/WorldSimulation/Procedures/InitalLoad.d.ts +1 -1
- package/WorldSimulation/Procedures/InitalLoad.js +6 -4
- package/WorldSimulation/Tasks/SimulationTaskBase.d.ts +19 -0
- package/WorldSimulation/Tasks/SimulationTaskBase.js +50 -0
- package/WorldSimulation/Tasks/TaskRegister.d.ts +7 -0
- package/WorldSimulation/{Internal → Tasks}/TaskRegister.js +3 -3
- package/WorldSimulation/Tasks/TaskSegment.d.ts +20 -0
- package/WorldSimulation/Tasks/TaskSegment.js +83 -0
- package/WorldSimulation/Tick/TickQueue.d.ts +9 -0
- package/WorldSimulation/Tick/TickQueue.js +31 -0
- package/WorldSimulation/Tools/SimulationBrush.d.ts +25 -0
- package/WorldSimulation/Tools/SimulationBrush.js +203 -0
- package/WorldSimulation/Voxels/Behaviors/Types/CropVoxelBehavior.d.ts +1 -0
- package/WorldSimulation/Voxels/Behaviors/Types/CropVoxelBehavior.js +23 -0
- package/WorldSimulation/Voxels/Behaviors/Types/DefaultVoxelBehavior.d.ts +1 -0
- package/WorldSimulation/Voxels/Behaviors/Types/DefaultVoxelBehavior.js +10 -0
- package/WorldSimulation/Voxels/Behaviors/Types/FarmlandVoxelBehavior.d.ts +1 -0
- package/WorldSimulation/Voxels/Behaviors/Types/FarmlandVoxelBehavior.js +73 -0
- package/WorldSimulation/Voxels/Behaviors/Types/LiquidVoxelBehavior.d.ts +1 -0
- package/WorldSimulation/Voxels/Behaviors/Types/LiquidVoxelBehavior.js +21 -0
- package/WorldSimulation/Voxels/Behaviors/Types/index.d.ts +4 -0
- package/WorldSimulation/Voxels/Behaviors/Types/index.js +4 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelBehaviors.d.ts +18 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelBehaviors.js +30 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelBehaviorsRegister.d.ts +6 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelBehaviorsRegister.js +25 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelUpdate.d.ts +10 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelUpdate.js +1 -0
- package/WorldSimulation/Voxels/Behaviors/index.d.ts +4 -0
- package/WorldSimulation/Voxels/Behaviors/index.js +4 -0
- package/WorldSimulation/Voxels/Ticks/Types/LiquidVoxelUpdate.d.ts +1 -0
- package/WorldSimulation/Voxels/Ticks/Types/LiquidVoxelUpdate.js +163 -0
- package/WorldSimulation/Voxels/Ticks/Types/index.d.ts +1 -0
- package/WorldSimulation/Voxels/Ticks/Types/index.js +1 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdate.d.ts +8 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdate.js +14 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdateRegister.d.ts +6 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdateRegister.js +13 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdateType.d.ts +12 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdateType.js +10 -0
- package/WorldSimulation/Voxels/Ticks/index.d.ts +4 -0
- package/WorldSimulation/Voxels/Ticks/index.js +4 -0
- package/WorldSimulation/WorldSimulation.d.ts +5 -4
- package/WorldSimulation/WorldSimulation.js +31 -35
- package/package.json +2 -2
- package/Contexts/Constructor/DivineVoxelEngineConstructor.d.ts +0 -10
- package/Contexts/Constructor/DivineVoxelEngineConstructor.js +0 -14
- package/Contexts/Constructor/index.d.ts +0 -1
- package/Contexts/Constructor/index.js +0 -1
- package/Init/StartConstructor.d.ts +0 -2
- package/Init/StartConstructor.js +0 -59
- package/Mesher/Models/Common/BoundsFunctions.d.ts +0 -2
- package/Mesher/Models/Common/BoxGeometryNode.d.ts +0 -10
- package/Mesher/Models/Common/BoxGeometryNode.js +0 -80
- package/Mesher/Models/Common/QuadGeometryNode.d.ts +0 -11
- package/Mesher/Models/Common/QuadGeometryNode.js +0 -51
- package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.d.ts +0 -24
- package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.js +0 -173
- package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.d.ts +0 -19
- package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.js +0 -157
- package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.d.ts +0 -22
- package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.js +0 -75
- package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.d.ts +0 -18
- package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.js +0 -77
- package/Mesher/Models/Protocols/OutlinedVoxelTool.d.ts +0 -6
- package/Mesher/Models/Protocols/OutlinedVoxelTool.js +0 -233
- package/Models/Indexing/VoxelAOResultsIndex.d.ts +0 -12
- package/Models/Indexing/VoxelAOResultsIndex.js +0 -26
- package/Models/Indexing/VoxelFaceCullResultsIndex.d.ts +0 -12
- package/Models/Indexing/VoxelFaceCullResultsIndex.js +0 -26
- package/Models/Indexing/VoxelFaceTransparentResultsIndex.d.ts +0 -11
- package/Models/Indexing/VoxelFaceTransparentResultsIndex.js +0 -15
- package/Models/Input/BoxVoxelGometryInputs.d.ts +0 -25
- package/Models/Input/BoxVoxelGometryInputs.js +0 -36
- package/Models/Input/QuadVoxelGometryInputs.d.ts +0 -24
- package/Models/Rules/Classes/OcclusionFace.d.ts +0 -65
- package/Models/Rules/Classes/OcclusionFace.js +0 -492
- package/Models/Rules/Classes/VoxelRulesGeometry.d.ts +0 -15
- package/Models/Rules/Classes/VoxelRulesGeometry.js +0 -29
- package/Models/Rules/Functions/BuildFinalInputs.js +0 -93
- package/Models/Rules/Functions/BuildGeomtryInputs.d.ts +0 -6
- package/Models/Rules/Functions/BuildGeomtryInputs.js +0 -251
- package/Models/Rules/Functions/BuildRules.d.ts +0 -8
- package/Models/Rules/Functions/BuildRules.js +0 -187
- package/Models/Rules/Functions/GetOcclusionFaces.d.ts +0 -4
- package/Models/Rules/Functions/GetOcclusionFaces.js +0 -112
- package/Models/Shared/Transform.d.ts +0 -4
- package/Tasks/Logic/InitTasks.js +0 -10
- package/Tasks/Logic/VoxelLogicUpdate.d.ts +0 -3
- package/Tasks/Logic/VoxelLogicUpdate.js +0 -71
- package/Tasks/Propagation/Explosion/ExplosionManager.d.ts +0 -4
- package/Tasks/Propagation/Explosion/ExplosionManager.js +0 -116
- package/Tasks/Update/Common.d.ts +0 -3
- package/Tasks/Update/Common.js +0 -41
- package/Tasks/Update/EreaseUpdate.d.ts +0 -3
- package/Tasks/Update/EreaseUpdate.js +0 -66
- package/Tasks/Update/InitTasks.d.ts +0 -5
- package/Tasks/Update/InitTasks.js +0 -25
- package/Tasks/Update/PaintUpdate.d.ts +0 -3
- package/Tasks/Update/PaintUpdate.js +0 -89
- package/Tasks/Update/VoxelUpdate.d.ts +0 -3
- package/Tasks/Update/VoxelUpdate.js +0 -35
- package/Templates/FullVoxelTemplate.d.ts +0 -14
- package/Templates/FullVoxelTemplate.js +0 -61
- package/Templates/Functions/CreateTemplate.d.ts +0 -3
- package/Templates/Functions/CreateTemplate.js +0 -134
- package/Templates/VoxelTemplate.d.ts +0 -34
- package/Templates/VoxelTemplate.js +0 -135
- package/Util/Binary/BinaryBuffer.d.ts +0 -35
- package/Util/Binary/BinaryBuffer.js +0 -136
- package/Util/Binary/Palettes.d.ts +0 -5
- package/Util/Binary/Palettes.js +0 -46
- package/Util/LocationVisitedMap.d.ts +0 -9
- package/Util/LocationVisitedMap.js +0 -18
- package/Util/VisistedMap.d.ts +0 -10
- package/Util/VisistedMap.js +0 -29
- package/Voxels/Data/VoxelTagStates.d.ts +0 -22
- package/Voxels/Data/VoxelTagStates.js +0 -47
- package/Voxels/Logic/Classes/Default/Types/VoxelPoweredLogicType.d.ts +0 -5
- package/Voxels/Logic/Classes/Default/Types/VoxelPoweredLogicType.js +0 -6
- package/World/Archive/Archive.types.d.ts +0 -182
- package/World/Archive/Functions/ArchiveArea.js +0 -341
- package/World/Archive/Functions/ArchiveSector.d.ts +0 -7
- package/World/Archive/Functions/ArchiveSector.js +0 -431
- package/World/Archive/Functions/CreateArchivedSection.d.ts +0 -3
- package/World/Archive/Functions/CreateArchivedSection.js +0 -207
- package/World/Archive/Functions/ImportSector.js +0 -57
- package/World/Archive/Functions/RemoveDuplicates.d.ts +0 -3
- package/World/Archive/Functions/RemoveDuplicates.js +0 -92
- package/WorldSimulation/Internal/Classes/DimensionSegment.d.ts +0 -37
- package/WorldSimulation/Internal/Classes/DimensionSegment.js +0 -67
- package/WorldSimulation/Internal/Classes/Queues/BuildQueue.d.ts +0 -5
- package/WorldSimulation/Internal/Classes/Queues/BuildQueue.js +0 -6
- package/WorldSimulation/Internal/Classes/Queues/LogiccQueue.d.ts +0 -5
- package/WorldSimulation/Internal/Classes/Queues/LogiccQueue.js +0 -6
- package/WorldSimulation/Internal/Classes/SectorState.js +0 -20
- package/WorldSimulation/Internal/Classes/SectorVisistedMap.d.ts +0 -9
- package/WorldSimulation/Internal/Classes/SectorVisistedMap.js +0 -24
- package/WorldSimulation/Internal/Classes/TickQueue.d.ts +0 -12
- package/WorldSimulation/Internal/Classes/TickQueue.js +0 -58
- package/WorldSimulation/Internal/Classes/WorldSimulationTaskBase.d.ts +0 -15
- package/WorldSimulation/Internal/Classes/WorldSimulationTaskBase.js +0 -62
- package/WorldSimulation/Internal/Functions/cullSectors.d.ts +0 -2
- package/WorldSimulation/Internal/Functions/cullSectors.js +0 -111
- package/WorldSimulation/Internal/Functions/getSectorState.d.ts +0 -4
- package/WorldSimulation/Internal/Functions/getSectorState.js +0 -39
- package/WorldSimulation/Internal/Functions/runTickUpdate.d.ts +0 -2
- package/WorldSimulation/Internal/Functions/runTickUpdate.js +0 -80
- package/WorldSimulation/Internal/Functions/runWorldUpdate.d.ts +0 -2
- package/WorldSimulation/Internal/Functions/runWorldUpdate.js +0 -69
- package/WorldSimulation/Internal/TaskRegister.d.ts +0 -7
- /package/{Models/VoxelModel.types.js → Math/Location.js} +0 -0
- /package/{World/Archive/Archive.types.js → Mesher/Models/Nodes/Types/GeomtryNode.types.js} +0 -0
- /package/Tasks/{Logic → Paint}/InitTasks.d.ts +0 -0
- /package/Util/{Binary/BinaryTree.d.ts → FlatBinaryTreeIndex.d.ts} +0 -0
- /package/Util/{Binary/BinaryTree.js → FlatBinaryTreeIndex.js} +0 -0
- /package/{Models → Voxels/Models}/Defaults/CubeVoxelGeometry.d.ts +0 -0
- /package/{Models → Voxels/Models}/Defaults/LiquidVoxelModel.d.ts +0 -0
- /package/{Models → Voxels/Models}/Defaults/PanelVoxelGeometry.d.ts +0 -0
- /package/{Models → Voxels/Models}/Defaults/StairVoxelModel.d.ts +0 -0
- /package/{Models → Voxels/Models}/Indexing/VoxelRelativeCubeIndex.d.ts +0 -0
- /package/{Models → Voxels/Models}/Indexing/VoxelRelativeCubeIndex.js +0 -0
- /package/{Models → Voxels/Models}/Rules/Classes/VoxelRulesModel.js +0 -0
|
@@ -1,251 +0,0 @@
|
|
|
1
|
-
import { BoxVoxelGometryInputs } from "../../Input/BoxVoxelGometryInputs";
|
|
2
|
-
import { VoxelFaceNameArray } from "../../../Math";
|
|
3
|
-
import { TextureManager } from "../../../Textures/TextureManager";
|
|
4
|
-
import { Matrix2x2Like, AMath } from "@amodx/math";
|
|
5
|
-
import { QuadVoxelGometryInputs } from "../../Input/QuadVoxelGometryInputs";
|
|
6
|
-
const isArgString = (data) => {
|
|
7
|
-
if (typeof data !== "string")
|
|
8
|
-
return false;
|
|
9
|
-
return data[0] == "@";
|
|
10
|
-
};
|
|
11
|
-
const rotationMatrix = new Map();
|
|
12
|
-
const mapQuadUvs = (uvs, rotation = 0, transform) => {
|
|
13
|
-
if (transform.lockUVs == true) {
|
|
14
|
-
let rotM = rotationMatrix.get(rotation);
|
|
15
|
-
if (!rotM) {
|
|
16
|
-
rotM = Matrix2x2Like.Rotation(AMath.DegreesToRadians(rotation));
|
|
17
|
-
rotationMatrix.set(rotation, rotM);
|
|
18
|
-
}
|
|
19
|
-
return [
|
|
20
|
-
Matrix2x2Like.ApplyMatrixArray(rotM, [uvs[2], uvs[3]]),
|
|
21
|
-
Matrix2x2Like.ApplyMatrixArray(rotM, [uvs[0], uvs[3]]),
|
|
22
|
-
Matrix2x2Like.ApplyMatrixArray(rotM, [uvs[0], uvs[1]]),
|
|
23
|
-
Matrix2x2Like.ApplyMatrixArray(rotM, [uvs[2], uvs[1]]),
|
|
24
|
-
];
|
|
25
|
-
}
|
|
26
|
-
let u0 = uvs[0];
|
|
27
|
-
let v0 = uvs[1];
|
|
28
|
-
let u1 = uvs[2];
|
|
29
|
-
let v1 = uvs[3];
|
|
30
|
-
if (transform.flip) {
|
|
31
|
-
if (transform.flip[0] === 1) {
|
|
32
|
-
[u0, u1] = [u1, u0];
|
|
33
|
-
}
|
|
34
|
-
if (transform.flip[1] === 1) {
|
|
35
|
-
[v0, v1] = [v1, v0];
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
let quadUVs = [
|
|
39
|
-
[u1, v1],
|
|
40
|
-
[u0, v1],
|
|
41
|
-
[u0, v0],
|
|
42
|
-
[u1, v0],
|
|
43
|
-
];
|
|
44
|
-
if (rotation !== 0) {
|
|
45
|
-
let rotM = rotationMatrix.get(rotation);
|
|
46
|
-
if (!rotM) {
|
|
47
|
-
rotM = Matrix2x2Like.Rotation(AMath.DegreesToRadians(rotation));
|
|
48
|
-
rotationMatrix.set(rotation, rotM);
|
|
49
|
-
}
|
|
50
|
-
const centerU = (u0 + u1) / 2;
|
|
51
|
-
const centerV = (v0 + v1) / 2;
|
|
52
|
-
quadUVs = quadUVs.map(([u, v]) => {
|
|
53
|
-
let x = u - centerU;
|
|
54
|
-
let y = v - centerV;
|
|
55
|
-
[x, y] = Matrix2x2Like.ApplyMatrixArray(rotM, [x, y]);
|
|
56
|
-
x += centerU;
|
|
57
|
-
y += centerV;
|
|
58
|
-
return [x, y];
|
|
59
|
-
});
|
|
60
|
-
}
|
|
61
|
-
return quadUVs;
|
|
62
|
-
};
|
|
63
|
-
export function BuildGeomtryInputs(geomtry) {
|
|
64
|
-
const inputObservers = new Map();
|
|
65
|
-
const onInput = (id, subscribe) => {
|
|
66
|
-
id = id.replace("@", "");
|
|
67
|
-
let obs = inputObservers.get(id);
|
|
68
|
-
if (!obs) {
|
|
69
|
-
obs = [];
|
|
70
|
-
inputObservers.set(id, obs);
|
|
71
|
-
}
|
|
72
|
-
return obs.push(subscribe);
|
|
73
|
-
};
|
|
74
|
-
let faceTransparentIndex = [];
|
|
75
|
-
let faceCount = 0;
|
|
76
|
-
let args = [];
|
|
77
|
-
for (const prcoessedNode of geomtry.data.nodes) {
|
|
78
|
-
const { node, tranform } = prcoessedNode;
|
|
79
|
-
if (node.type == "custom") {
|
|
80
|
-
const newArgs = {};
|
|
81
|
-
args.push(newArgs);
|
|
82
|
-
const argsIndex = args.length - 1;
|
|
83
|
-
for (const input in node.inputs) {
|
|
84
|
-
const value = node.inputs[input];
|
|
85
|
-
if (isArgString(value)) {
|
|
86
|
-
args[argsIndex][input] = null;
|
|
87
|
-
onInput(value, (value) => {
|
|
88
|
-
args[argsIndex][input] = value;
|
|
89
|
-
});
|
|
90
|
-
}
|
|
91
|
-
else {
|
|
92
|
-
args[argsIndex][input] = value;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
if (node.type == "box") {
|
|
97
|
-
args.push(BoxVoxelGometryInputs.CreateArgs());
|
|
98
|
-
const argsIndex = args.length - 1;
|
|
99
|
-
for (let face = 0; face < 6; face++) {
|
|
100
|
-
const relativeFaceCount = faceCount;
|
|
101
|
-
const faceName = VoxelFaceNameArray[face];
|
|
102
|
-
const faceData = node.faces[faceName];
|
|
103
|
-
let defaultUvs = [0, 0, 1, 1];
|
|
104
|
-
if (isArgString(faceData.enabled)) {
|
|
105
|
-
onInput(String(faceData.enabled), (value) => (args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.Enabled] =
|
|
106
|
-
value));
|
|
107
|
-
}
|
|
108
|
-
if (isArgString(faceData.flip)) {
|
|
109
|
-
onInput(String(faceData.flip), (value) => (args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.Fliped] =
|
|
110
|
-
value));
|
|
111
|
-
}
|
|
112
|
-
if (isArgString(faceData.transparent)) {
|
|
113
|
-
faceTransparentIndex[relativeFaceCount + face] = false;
|
|
114
|
-
onInput(String(faceData.transparent), (value) => {
|
|
115
|
-
args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.Transparent] = value;
|
|
116
|
-
faceTransparentIndex[relativeFaceCount + face] = Boolean(value);
|
|
117
|
-
});
|
|
118
|
-
}
|
|
119
|
-
else {
|
|
120
|
-
args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.Transparent] =
|
|
121
|
-
Boolean(faceData.transparent);
|
|
122
|
-
faceTransparentIndex[relativeFaceCount + face] = Boolean(faceData.transparent);
|
|
123
|
-
}
|
|
124
|
-
if (isArgString(faceData.rotation)) {
|
|
125
|
-
onInput(String(faceData.rotation), (value) => {
|
|
126
|
-
args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.Rotation] =
|
|
127
|
-
value;
|
|
128
|
-
args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.UVs] =
|
|
129
|
-
mapQuadUvs(defaultUvs, value, tranform);
|
|
130
|
-
});
|
|
131
|
-
}
|
|
132
|
-
else {
|
|
133
|
-
faceData.rotation &&
|
|
134
|
-
(args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.Rotation] =
|
|
135
|
-
faceData.rotation);
|
|
136
|
-
}
|
|
137
|
-
if (isArgString(faceData.uv)) {
|
|
138
|
-
const defaultInput = geomtry.data.ogData.arguments[faceData.uv.substring(1)];
|
|
139
|
-
if (defaultInput.type == "box-uv" && defaultInput.default) {
|
|
140
|
-
args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.UVs] =
|
|
141
|
-
mapQuadUvs(defaultInput.default, args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.Rotation], tranform);
|
|
142
|
-
defaultUvs = defaultInput.default;
|
|
143
|
-
}
|
|
144
|
-
onInput(String(faceData.uv), (value) => {
|
|
145
|
-
args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.UVs] =
|
|
146
|
-
mapQuadUvs(value, args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.Rotation], tranform);
|
|
147
|
-
});
|
|
148
|
-
}
|
|
149
|
-
else {
|
|
150
|
-
args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.UVs] =
|
|
151
|
-
mapQuadUvs(faceData.uv, args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.Rotation], tranform);
|
|
152
|
-
defaultUvs = faceData.uv;
|
|
153
|
-
}
|
|
154
|
-
if (isArgString(faceData.texture)) {
|
|
155
|
-
onInput(String(faceData.texture), (value) => (args[argsIndex][face][BoxVoxelGometryInputs.ArgIndexes.Texture] =
|
|
156
|
-
value));
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
faceCount += 6;
|
|
160
|
-
}
|
|
161
|
-
if (node.type == "quad") {
|
|
162
|
-
args.push(QuadVoxelGometryInputs.CreateArgs());
|
|
163
|
-
const argsIndex = args.length - 1;
|
|
164
|
-
const relativeFaceCount = faceCount;
|
|
165
|
-
let defaultUvs = [0, 0, 1, 1];
|
|
166
|
-
if (isArgString(node.transparent)) {
|
|
167
|
-
onInput(String(node.transparent), (value) => {
|
|
168
|
-
args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.Transparent] =
|
|
169
|
-
value;
|
|
170
|
-
faceTransparentIndex[relativeFaceCount] = Boolean(value);
|
|
171
|
-
});
|
|
172
|
-
}
|
|
173
|
-
else {
|
|
174
|
-
args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.Transparent] =
|
|
175
|
-
Boolean(node.transparent);
|
|
176
|
-
faceTransparentIndex[relativeFaceCount] = Boolean(node.transparent);
|
|
177
|
-
}
|
|
178
|
-
if (isArgString(node.doubleSided)) {
|
|
179
|
-
onInput(String(node.doubleSided), (value) => {
|
|
180
|
-
args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.DoubleSided] =
|
|
181
|
-
value;
|
|
182
|
-
});
|
|
183
|
-
}
|
|
184
|
-
else {
|
|
185
|
-
args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.DoubleSided] =
|
|
186
|
-
Boolean(node.doubleSided);
|
|
187
|
-
}
|
|
188
|
-
if (isArgString(node.textureRotation)) {
|
|
189
|
-
onInput(String(node.textureRotation), (value) => {
|
|
190
|
-
args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.Rotation] = value;
|
|
191
|
-
args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.UVs] = mapQuadUvs(defaultUvs, value, tranform);
|
|
192
|
-
});
|
|
193
|
-
}
|
|
194
|
-
else {
|
|
195
|
-
node.textureRotation &&
|
|
196
|
-
(args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.Rotation] =
|
|
197
|
-
node.textureRotation);
|
|
198
|
-
}
|
|
199
|
-
if (isArgString(node.uv)) {
|
|
200
|
-
const defaultInput = geomtry.data.ogData.arguments[node.uv.substring(1)];
|
|
201
|
-
if (defaultInput.type == "box-uv" && defaultInput.default) {
|
|
202
|
-
args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.UVs] = mapQuadUvs(defaultInput.default, args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.Rotation], tranform);
|
|
203
|
-
defaultUvs = defaultInput.default;
|
|
204
|
-
}
|
|
205
|
-
onInput(String(node.uv), (value) => {
|
|
206
|
-
args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.UVs] = mapQuadUvs(value, args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.Rotation], tranform);
|
|
207
|
-
});
|
|
208
|
-
}
|
|
209
|
-
else {
|
|
210
|
-
args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.UVs] = mapQuadUvs(node.uv, args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.Rotation], tranform);
|
|
211
|
-
defaultUvs = node.uv;
|
|
212
|
-
}
|
|
213
|
-
if (isArgString(node.texture)) {
|
|
214
|
-
onInput(String(node.texture), (value) => (args[argsIndex][QuadVoxelGometryInputs.ArgIndexes.Texture] = value));
|
|
215
|
-
}
|
|
216
|
-
faceCount++;
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
const originalTransparentIndex = structuredClone(faceTransparentIndex);
|
|
220
|
-
const orginalArgs = structuredClone(args);
|
|
221
|
-
const finalGeoInputs = {
|
|
222
|
-
faceTransparentIndex,
|
|
223
|
-
cloneArgs() {
|
|
224
|
-
return structuredClone(args);
|
|
225
|
-
},
|
|
226
|
-
resetDefaults() {
|
|
227
|
-
args = structuredClone(orginalArgs);
|
|
228
|
-
faceTransparentIndex = structuredClone(originalTransparentIndex);
|
|
229
|
-
this.faceTransparentIndex = faceTransparentIndex;
|
|
230
|
-
},
|
|
231
|
-
};
|
|
232
|
-
for (const arg in geomtry.data.ogData.arguments) {
|
|
233
|
-
if (!inputObservers.has(arg))
|
|
234
|
-
continue;
|
|
235
|
-
const obs = inputObservers.get(arg);
|
|
236
|
-
const data = geomtry.data.ogData.arguments[arg];
|
|
237
|
-
Object.defineProperty(finalGeoInputs, arg, {
|
|
238
|
-
set(value) {
|
|
239
|
-
if (data.type == "texture") {
|
|
240
|
-
const textureId = value;
|
|
241
|
-
value =
|
|
242
|
-
TextureManager.getTexture("dve_voxel")?.getTextureIndex(textureId);
|
|
243
|
-
}
|
|
244
|
-
for (const func of obs) {
|
|
245
|
-
func(value);
|
|
246
|
-
}
|
|
247
|
-
},
|
|
248
|
-
});
|
|
249
|
-
}
|
|
250
|
-
return finalGeoInputs;
|
|
251
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { VoxelRuleGeometry } from "../Classes/VoxelRulesGeometry";
|
|
2
|
-
import { StringPalette } from "../../../Util/StringPalette";
|
|
3
|
-
export declare function BuildRules(main: VoxelRuleGeometry, geoPalette: StringPalette): {
|
|
4
|
-
aoIndex: import("../../Indexing/VoxelAOResultsIndex").VoxelAOResultsIndexData;
|
|
5
|
-
cullIndex: import("../../Indexing/VoxelFaceCullResultsIndex").VoxelFaceCullResultsIndexData;
|
|
6
|
-
faceCullMap: number[][];
|
|
7
|
-
vertexHitMap: number[][];
|
|
8
|
-
};
|
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
import { VoxelRelativeCubeIndex } from "../../Indexing/VoxelRelativeCubeIndex";
|
|
2
|
-
import { Vector3Like } from "@amodx/math";
|
|
3
|
-
import { VoxelAOResultsIndex } from "../../Indexing/VoxelAOResultsIndex";
|
|
4
|
-
import { VoxelModelRuleBuilderRegister } from "../VoxelModelRuleBuilderRegister";
|
|
5
|
-
import { VoxelFaceCullResultsIndex } from "../../Indexing/VoxelFaceCullResultsIndex";
|
|
6
|
-
class OcculsionBox {
|
|
7
|
-
p1;
|
|
8
|
-
p2;
|
|
9
|
-
p3;
|
|
10
|
-
p4;
|
|
11
|
-
constructor(p1 = [0, 0, 0], p2 = [0, 0, 0], p3 = [0, 0, 0], p4 = [0, 0, 0]) {
|
|
12
|
-
this.p1 = p1;
|
|
13
|
-
this.p2 = p2;
|
|
14
|
-
this.p3 = p3;
|
|
15
|
-
this.p4 = p4;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
const mainBox = new OcculsionBox();
|
|
19
|
-
const size = 0.01;
|
|
20
|
-
// Calculate half the size of the box
|
|
21
|
-
const halfSize = size / 2;
|
|
22
|
-
// Create a small offset to move the box forward
|
|
23
|
-
const offset = 0.01;
|
|
24
|
-
const boxNormals = [
|
|
25
|
-
[1, 0, 0],
|
|
26
|
-
[0, 1, 0],
|
|
27
|
-
[0, 0, 1],
|
|
28
|
-
];
|
|
29
|
-
const boxPoints = [mainBox.p1, mainBox.p2, mainBox.p3, mainBox.p4];
|
|
30
|
-
const offsetPoint = [0, 0, 0];
|
|
31
|
-
const tangent = [0, 0, 0];
|
|
32
|
-
const bitangent = [0, 0, 0];
|
|
33
|
-
function updateOcculsionBox(point, normal) {
|
|
34
|
-
offsetPoint[0] = point[0] + normal[0] * offset;
|
|
35
|
-
offsetPoint[1] = point[1] + normal[1] * offset;
|
|
36
|
-
offsetPoint[2] = point[2] + normal[2] * offset;
|
|
37
|
-
if (Math.abs(normal[0]) > Math.abs(normal[2])) {
|
|
38
|
-
tangent[0] = -normal[1];
|
|
39
|
-
tangent[1] = normal[0];
|
|
40
|
-
tangent[2] = 0;
|
|
41
|
-
}
|
|
42
|
-
else {
|
|
43
|
-
tangent[0] = 0;
|
|
44
|
-
tangent[1] = -normal[2];
|
|
45
|
-
tangent[2] = normal[1];
|
|
46
|
-
}
|
|
47
|
-
const tangentLength = Math.sqrt(tangent[0] ** 2 + tangent[1] ** 2 + tangent[2] ** 2);
|
|
48
|
-
tangent[0] = tangent[0] / tangentLength;
|
|
49
|
-
tangent[1] = tangent[1] / tangentLength;
|
|
50
|
-
tangent[2] = tangent[2] / tangentLength;
|
|
51
|
-
bitangent[0] = normal[1] * tangent[2] - normal[2] * tangent[1];
|
|
52
|
-
bitangent[1] = normal[2] * tangent[0] - normal[0] * tangent[2];
|
|
53
|
-
bitangent[2] = normal[0] * tangent[1] - normal[1] * tangent[0];
|
|
54
|
-
mainBox.p1[0] =
|
|
55
|
-
offsetPoint[0] - tangent[0] * halfSize - bitangent[0] * halfSize;
|
|
56
|
-
mainBox.p1[1] =
|
|
57
|
-
offsetPoint[1] - tangent[1] * halfSize - bitangent[1] * halfSize;
|
|
58
|
-
mainBox.p1[2] =
|
|
59
|
-
offsetPoint[2] - tangent[2] * halfSize - bitangent[2] * halfSize;
|
|
60
|
-
mainBox.p2[0] =
|
|
61
|
-
offsetPoint[0] + tangent[0] * halfSize - bitangent[0] * halfSize;
|
|
62
|
-
mainBox.p2[1] =
|
|
63
|
-
offsetPoint[1] + tangent[1] * halfSize - bitangent[1] * halfSize;
|
|
64
|
-
mainBox.p2[2] =
|
|
65
|
-
offsetPoint[2] + tangent[2] * halfSize - bitangent[2] * halfSize;
|
|
66
|
-
mainBox.p3[0] =
|
|
67
|
-
offsetPoint[0] + tangent[0] * halfSize + bitangent[0] * halfSize;
|
|
68
|
-
mainBox.p3[1] =
|
|
69
|
-
offsetPoint[1] + tangent[1] * halfSize + bitangent[1] * halfSize;
|
|
70
|
-
mainBox.p3[2] =
|
|
71
|
-
offsetPoint[2] + tangent[2] * halfSize + bitangent[2] * halfSize;
|
|
72
|
-
mainBox.p4[0] =
|
|
73
|
-
offsetPoint[0] - tangent[0] * halfSize + bitangent[0] * halfSize;
|
|
74
|
-
mainBox.p4[1] =
|
|
75
|
-
offsetPoint[1] - tangent[1] * halfSize + bitangent[1] * halfSize;
|
|
76
|
-
mainBox.p4[2] =
|
|
77
|
-
offsetPoint[2] - tangent[2] * halfSize + bitangent[2] * halfSize;
|
|
78
|
-
return mainBox;
|
|
79
|
-
}
|
|
80
|
-
function projectPointOntoAxis(point, axis) {
|
|
81
|
-
return point[0] * axis[0] + point[1] * axis[1] + point[2] * axis[2];
|
|
82
|
-
}
|
|
83
|
-
function projectionsOverlap(axis, shape1Points, shape2Points) {
|
|
84
|
-
let min1 = Infinity;
|
|
85
|
-
let max1 = -Infinity;
|
|
86
|
-
let min2 = Infinity;
|
|
87
|
-
let max2 = -Infinity;
|
|
88
|
-
for (const point of shape1Points) {
|
|
89
|
-
const projection = projectPointOntoAxis(point, axis);
|
|
90
|
-
min1 = Math.min(min1, projection);
|
|
91
|
-
max1 = Math.max(max1, projection);
|
|
92
|
-
}
|
|
93
|
-
for (const point of shape2Points) {
|
|
94
|
-
const projection = projectPointOntoAxis(point, axis);
|
|
95
|
-
min2 = Math.min(min2, projection);
|
|
96
|
-
max2 = Math.max(max2, projection);
|
|
97
|
-
}
|
|
98
|
-
return !(max1 < min2 || max2 < min1);
|
|
99
|
-
}
|
|
100
|
-
function doesBoxIntersectFace(quad) {
|
|
101
|
-
const quadPoints = quad.points;
|
|
102
|
-
const quadNormal = quad.normal;
|
|
103
|
-
if (!projectionsOverlap(quadNormal, quadPoints, boxPoints)) {
|
|
104
|
-
return false;
|
|
105
|
-
}
|
|
106
|
-
for (const boxNormal of boxNormals) {
|
|
107
|
-
if (!projectionsOverlap(boxNormal, quadPoints, boxPoints)) {
|
|
108
|
-
return false;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
return true;
|
|
112
|
-
}
|
|
113
|
-
export function BuildRules(main, geoPalette) {
|
|
114
|
-
main.occlusionPlane.setOffset(0, 0, 0);
|
|
115
|
-
const faceCullMap = [];
|
|
116
|
-
for (let i = 0; i < main.faceCount; i++) {
|
|
117
|
-
faceCullMap[i] = [];
|
|
118
|
-
}
|
|
119
|
-
const vertexHitMap = [];
|
|
120
|
-
for (let i = 0; i < main.vertexCount; i++) {
|
|
121
|
-
vertexHitMap[i] = [];
|
|
122
|
-
}
|
|
123
|
-
const maxIndex = VoxelRelativeCubeIndex.flatIndex.size;
|
|
124
|
-
const totalAOReusltsSize = main.vertexCount * maxIndex;
|
|
125
|
-
const aoRulesBuffer = new SharedArrayBuffer(totalAOReusltsSize * (geoPalette.size + 1));
|
|
126
|
-
const aoIndex = new VoxelAOResultsIndex({
|
|
127
|
-
buffer: aoRulesBuffer,
|
|
128
|
-
vertexByteCount: main.vertexCount,
|
|
129
|
-
});
|
|
130
|
-
const cullIndex = new VoxelFaceCullResultsIndex({
|
|
131
|
-
buffer: new SharedArrayBuffer(main.faceCount * 2 * maxIndex * (geoPalette.size + 1)),
|
|
132
|
-
faceByteCount: main.faceCount,
|
|
133
|
-
});
|
|
134
|
-
for (let otherNumberId = 0; otherNumberId < geoPalette.size; otherNumberId++) {
|
|
135
|
-
let other = VoxelModelRuleBuilderRegister.geometry.get(geoPalette._palette[otherNumberId]);
|
|
136
|
-
if (other.data.ogData.doNotBuildRules !== undefined)
|
|
137
|
-
continue;
|
|
138
|
-
if (other.id == main.id)
|
|
139
|
-
other = main.clone();
|
|
140
|
-
for (let y = -1; y < 2; y++) {
|
|
141
|
-
for (let nx = -1; nx < 2; nx++) {
|
|
142
|
-
for (let nz = -1; nz < 2; nz++) {
|
|
143
|
-
const directionIndex = VoxelRelativeCubeIndex.getIndex(nx, y, nz);
|
|
144
|
-
other.occlusionPlane.setOffset(nx, y, nz);
|
|
145
|
-
for (const currentPlane of main.occlusionPlane.faces) {
|
|
146
|
-
let occuledFaceIndex = -1;
|
|
147
|
-
const points = currentPlane.points;
|
|
148
|
-
const normal = currentPlane.normal;
|
|
149
|
-
for (const otherPlane of other.occlusionPlane.faces) {
|
|
150
|
-
if (otherPlane.parentId == currentPlane.parentId &&
|
|
151
|
-
currentPlane.nodeId == otherPlane.nodeId &&
|
|
152
|
-
nx == 0 &&
|
|
153
|
-
y == 0 &&
|
|
154
|
-
nz == 0)
|
|
155
|
-
continue;
|
|
156
|
-
if (otherPlane.doesCoverFace(currentPlane)) {
|
|
157
|
-
occuledFaceIndex = otherPlane.faceCount;
|
|
158
|
-
}
|
|
159
|
-
if (Vector3Like.EqualsArray(otherPlane.normal, currentPlane.normal))
|
|
160
|
-
continue;
|
|
161
|
-
for (let v = 0; v < points.length; v++) {
|
|
162
|
-
updateOcculsionBox(points[v], normal);
|
|
163
|
-
const trueVertexIndex = currentPlane.vertexCount + v;
|
|
164
|
-
if (doesBoxIntersectFace(otherPlane)) {
|
|
165
|
-
aoIndex.setValue(otherNumberId, directionIndex, trueVertexIndex, 1);
|
|
166
|
-
if (!vertexHitMap[trueVertexIndex].includes(directionIndex))
|
|
167
|
-
vertexHitMap[trueVertexIndex].push(directionIndex);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
cullIndex.setValue(otherNumberId, directionIndex, currentPlane.faceCount, occuledFaceIndex);
|
|
172
|
-
if (occuledFaceIndex > -1) {
|
|
173
|
-
if (!faceCullMap[currentPlane.faceCount].includes(directionIndex))
|
|
174
|
-
faceCullMap[currentPlane.faceCount].push(directionIndex);
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
return {
|
|
182
|
-
aoIndex: aoIndex.getData(),
|
|
183
|
-
cullIndex: cullIndex.getData(),
|
|
184
|
-
faceCullMap,
|
|
185
|
-
vertexHitMap,
|
|
186
|
-
};
|
|
187
|
-
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { OcclusionFaceContainer } from "../Classes/OcclusionFace";
|
|
2
|
-
import { VoxelRuleGeometry } from "../Classes/VoxelRulesGeometry";
|
|
3
|
-
import { CompiledVoxelGeometryNodes } from "../../../Voxels/Types/VoxelModelCompiledData.types";
|
|
4
|
-
export declare function GetOcclusionFaces(parentId: string, geometry: VoxelRuleGeometry, data: CompiledVoxelGeometryNodes[]): OcclusionFaceContainer;
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
import { Vector3Like } from "@amodx/math";
|
|
2
|
-
import { OcclusionFlatQuadFace, OcclusionFaceContainer, OcclusionQuadFace, } from "../Classes/OcclusionFace";
|
|
3
|
-
import { VoxelFaces } from "../../../Math";
|
|
4
|
-
import { TransformBox, TransformQuad } from "../../Shared/Transform";
|
|
5
|
-
import { Quad } from "../../../Mesher/Geomtry/Primitives/Quad";
|
|
6
|
-
export function GetOcclusionFaces(parentId, geometry, data) {
|
|
7
|
-
const faceContainer = new OcclusionFaceContainer();
|
|
8
|
-
let vertexCount = 0;
|
|
9
|
-
let faceCount = 0;
|
|
10
|
-
let nodeId = 0;
|
|
11
|
-
for (const prcoessedNode of data) {
|
|
12
|
-
if (prcoessedNode.node.type == "box") {
|
|
13
|
-
const keys = Object.keys(prcoessedNode.tranform);
|
|
14
|
-
if (!keys.length ||
|
|
15
|
-
(keys.length == 1 &&
|
|
16
|
-
keys[0] == "position" &&
|
|
17
|
-
prcoessedNode.tranform.position)) {
|
|
18
|
-
const [start, end] = prcoessedNode.node.points.map((_) => Vector3Like.Create(...Vector3Like.AddArray(_, prcoessedNode.tranform.position || [0, 0, 0])));
|
|
19
|
-
faceContainer.addFace(new OcclusionFlatQuadFace(parentId, nodeId, "up", vertexCount + VoxelFaces.Up * 4, VoxelFaces.Up + faceCount, [start.x, end.y, start.z], [end.x, end.y, end.z]));
|
|
20
|
-
faceContainer.addFace(new OcclusionFlatQuadFace(parentId, nodeId, "down", vertexCount + VoxelFaces.Down * 4, VoxelFaces.Down + faceCount, [start.x, start.y, start.z], [end.x, start.y, end.z]));
|
|
21
|
-
faceContainer.addFace(new OcclusionFlatQuadFace(parentId, nodeId, "north", vertexCount + VoxelFaces.North * 4, VoxelFaces.North + faceCount, [start.x, start.y, end.z], [end.x, end.y, end.z]));
|
|
22
|
-
faceContainer.addFace(new OcclusionFlatQuadFace(parentId, nodeId, "south", vertexCount + VoxelFaces.South * 4, VoxelFaces.South + faceCount, [start.x, start.y, start.z], [end.x, end.y, start.z]));
|
|
23
|
-
faceContainer.addFace(new OcclusionFlatQuadFace(parentId, nodeId, "east", vertexCount + VoxelFaces.East * 4, VoxelFaces.East + faceCount, [end.x, start.y, start.z], [end.x, end.y, end.z]));
|
|
24
|
-
faceContainer.addFace(new OcclusionFlatQuadFace(parentId, nodeId, "west", vertexCount + VoxelFaces.West * 4, VoxelFaces.West + faceCount, [start.x, start.y, start.z], [start.x, end.y, end.z]));
|
|
25
|
-
}
|
|
26
|
-
else {
|
|
27
|
-
const [start, end] = prcoessedNode.node.points.map((_) => Vector3Like.Create(..._));
|
|
28
|
-
const quadPoints = [
|
|
29
|
-
//top
|
|
30
|
-
[
|
|
31
|
-
[end.x, end.y, end.z],
|
|
32
|
-
[start.x, end.y, end.z],
|
|
33
|
-
[start.x, end.y, start.z],
|
|
34
|
-
[end.x, end.y, start.z],
|
|
35
|
-
],
|
|
36
|
-
//bottom
|
|
37
|
-
[
|
|
38
|
-
[start.x, start.y, end.z],
|
|
39
|
-
[end.x, start.y, end.z],
|
|
40
|
-
[end.x, start.y, start.z],
|
|
41
|
-
[start.x, start.y, start.z],
|
|
42
|
-
],
|
|
43
|
-
//north
|
|
44
|
-
[
|
|
45
|
-
[start.x, end.y, end.z],
|
|
46
|
-
[end.x, end.y, end.z],
|
|
47
|
-
[end.x, start.y, end.z],
|
|
48
|
-
[start.x, start.y, end.z],
|
|
49
|
-
],
|
|
50
|
-
//south
|
|
51
|
-
[
|
|
52
|
-
[end.x, end.y, start.z],
|
|
53
|
-
[start.x, end.y, start.z],
|
|
54
|
-
[start.x, start.y, start.z],
|
|
55
|
-
[end.x, start.y, start.z],
|
|
56
|
-
],
|
|
57
|
-
//east
|
|
58
|
-
[
|
|
59
|
-
[end.x, end.y, end.z],
|
|
60
|
-
[end.x, end.y, start.z],
|
|
61
|
-
[end.x, start.y, start.z],
|
|
62
|
-
[end.x, start.y, end.z],
|
|
63
|
-
],
|
|
64
|
-
//west
|
|
65
|
-
[
|
|
66
|
-
[start.x, end.y, start.z],
|
|
67
|
-
[start.x, end.y, end.z],
|
|
68
|
-
[start.x, start.y, end.z],
|
|
69
|
-
[start.x, start.y, start.z],
|
|
70
|
-
],
|
|
71
|
-
];
|
|
72
|
-
const tranformed = TransformBox(quadPoints.map((_) => Quad.Create(_)), prcoessedNode.tranform);
|
|
73
|
-
faceContainer.addFace(new OcclusionQuadFace(parentId, nodeId, vertexCount + VoxelFaces.Up * 4, faceCount + VoxelFaces.Up, tranformed[VoxelFaces.Up].positions
|
|
74
|
-
.getAsArray()
|
|
75
|
-
.map((_) => Vector3Like.ToArray(_))));
|
|
76
|
-
faceContainer.addFace(new OcclusionQuadFace(parentId, nodeId, vertexCount + VoxelFaces.Down * 4, faceCount + VoxelFaces.Down, tranformed[VoxelFaces.Down].positions
|
|
77
|
-
.getAsArray()
|
|
78
|
-
.map((_) => Vector3Like.ToArray(_))));
|
|
79
|
-
faceContainer.addFace(new OcclusionQuadFace(parentId, nodeId, vertexCount + VoxelFaces.North * 4, faceCount + VoxelFaces.North, tranformed[VoxelFaces.North].positions
|
|
80
|
-
.getAsArray()
|
|
81
|
-
.map((_) => Vector3Like.ToArray(_))));
|
|
82
|
-
faceContainer.addFace(new OcclusionQuadFace(parentId, nodeId, vertexCount + VoxelFaces.South * 4, faceCount + VoxelFaces.South, tranformed[VoxelFaces.South].positions
|
|
83
|
-
.getAsArray()
|
|
84
|
-
.map((_) => Vector3Like.ToArray(_))));
|
|
85
|
-
faceContainer.addFace(new OcclusionQuadFace(parentId, nodeId, vertexCount + VoxelFaces.East * 4, faceCount + VoxelFaces.East, tranformed[VoxelFaces.East].positions
|
|
86
|
-
.getAsArray()
|
|
87
|
-
.map((_) => Vector3Like.ToArray(_))));
|
|
88
|
-
faceContainer.addFace(new OcclusionQuadFace(parentId, nodeId, vertexCount + VoxelFaces.West * 4, faceCount + VoxelFaces.West, tranformed[VoxelFaces.West].positions
|
|
89
|
-
.getAsArray()
|
|
90
|
-
.map((_) => Vector3Like.ToArray(_))));
|
|
91
|
-
}
|
|
92
|
-
faceCount += 6;
|
|
93
|
-
vertexCount += 6 * 4;
|
|
94
|
-
}
|
|
95
|
-
if (prcoessedNode.node.type == "quad") {
|
|
96
|
-
const quad = TransformQuad(Quad.Create(prcoessedNode.node.points), prcoessedNode.tranform);
|
|
97
|
-
faceContainer.addFace(new OcclusionQuadFace(parentId, nodeId, vertexCount, faceCount, quad.positions.getAsArray().map((_) => Vector3Like.ToArray(_))));
|
|
98
|
-
faceCount++;
|
|
99
|
-
vertexCount += 4;
|
|
100
|
-
}
|
|
101
|
-
nodeId++;
|
|
102
|
-
/* if (node.type == "plane") {
|
|
103
|
-
if (node.rotation) continue;
|
|
104
|
-
const [start, end] = node.points;
|
|
105
|
-
|
|
106
|
-
planes.addPlane(new OcclusionQuad(node.direction, start, end));
|
|
107
|
-
} */
|
|
108
|
-
}
|
|
109
|
-
geometry.vertexCount = vertexCount;
|
|
110
|
-
geometry.faceCount = faceCount;
|
|
111
|
-
return faceContainer;
|
|
112
|
-
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { Quad } from "../../Mesher/Geomtry/Primitives/Quad";
|
|
2
|
-
import { VoxelGeometryTransform } from "../../Voxels/Types/VoxelModelCompiledData.types";
|
|
3
|
-
export declare function TransformQuad(quad: Quad, transform: VoxelGeometryTransform): Quad;
|
|
4
|
-
export declare function TransformBox(quads: [Quad, Quad, Quad, Quad, Quad, Quad], transform: VoxelGeometryTransform): [Quad, Quad, Quad, Quad, Quad, Quad];
|
package/Tasks/Logic/InitTasks.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Threads } from "@amodx/threads";
|
|
2
|
-
import { TasksIds } from "../TasksIds";
|
|
3
|
-
import { VoxelUpdateTask } from "../VoxelUpdateTask";
|
|
4
|
-
import { VoxelLogicUpdate } from "./VoxelLogicUpdate";
|
|
5
|
-
export default function () {
|
|
6
|
-
const tasks = new VoxelUpdateTask();
|
|
7
|
-
Threads.registerTask(TasksIds.LogicUpdate, async (data, origin) => {
|
|
8
|
-
VoxelLogicUpdate(tasks, data);
|
|
9
|
-
});
|
|
10
|
-
}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
import { WorldRegister } from "../../World/WorldRegister";
|
|
2
|
-
import { WorldSpaces } from "../../World/WorldSpaces";
|
|
3
|
-
import { SectionCursor } from "../../World/Cursor/SectionCursor";
|
|
4
|
-
import { VoxelLogicRegister } from "../../Voxels/Logic/VoxelLogicRegister";
|
|
5
|
-
import { VoxelTagIds } from "../../Voxels/Data/VoxelTag.types";
|
|
6
|
-
import { RGBRemove, RGBUpdate } from "../../Tasks/Propagation";
|
|
7
|
-
import { $3dCardinalNeighbors } from "../../Math/CardinalNeighbors";
|
|
8
|
-
const sectionCursor = new SectionCursor();
|
|
9
|
-
export function VoxelLogicUpdate(task, location) {
|
|
10
|
-
task.setOrigin(location);
|
|
11
|
-
const sector = WorldRegister.sectors.getAt(location);
|
|
12
|
-
if (!sector) {
|
|
13
|
-
console.warn(`Could not run logic update sector at ${location} does not exist`);
|
|
14
|
-
return false;
|
|
15
|
-
}
|
|
16
|
-
const section = sector.getSection(location[1], location[2], location[3]);
|
|
17
|
-
if (!section) {
|
|
18
|
-
console.warn(`Could not run logic update sector at ${location}. Section does not exist`);
|
|
19
|
-
return false;
|
|
20
|
-
}
|
|
21
|
-
const [minY, maxY] = section.getLogicMinMax();
|
|
22
|
-
const [cx, cy, cz] = section.position;
|
|
23
|
-
const slice = WorldSpaces.section.bounds.x * WorldSpaces.section.bounds.z;
|
|
24
|
-
const startY = minY * slice;
|
|
25
|
-
const endY = (maxY + 1) * slice;
|
|
26
|
-
sectionCursor.setSection(section);
|
|
27
|
-
for (let i = startY; i < endY; i++) {
|
|
28
|
-
if (!(i % slice)) {
|
|
29
|
-
const y = i / slice;
|
|
30
|
-
if (!section.isLogicSliceDirty(y)) {
|
|
31
|
-
i += slice - 1;
|
|
32
|
-
continue;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
if (!section.ids[i] || !section.getVoxelLogicDirty(i))
|
|
36
|
-
continue;
|
|
37
|
-
const voxel = sectionCursor.getVoxelAtIndex(i);
|
|
38
|
-
const x = cx + sectionCursor._voxelPosition.x;
|
|
39
|
-
const y = cy + sectionCursor._voxelPosition.y;
|
|
40
|
-
const z = cz + sectionCursor._voxelPosition.z;
|
|
41
|
-
const logic = VoxelLogicRegister.voxels[section.ids[i]];
|
|
42
|
-
if (!logic)
|
|
43
|
-
continue;
|
|
44
|
-
if (logic.hasTag(VoxelTagIds.isLightSource)) {
|
|
45
|
-
const lightSource = logic.getTagValue(VoxelTagIds.isLightSource, voxel);
|
|
46
|
-
if (lightSource) {
|
|
47
|
-
task.rgb.update.push(x, y, z);
|
|
48
|
-
}
|
|
49
|
-
else {
|
|
50
|
-
for (const n of $3dCardinalNeighbors) {
|
|
51
|
-
const nx = n[0] + x;
|
|
52
|
-
const ny = n[1] + y;
|
|
53
|
-
const nz = n[2] + z;
|
|
54
|
-
const nVoxel = task.nDataCursor.getVoxel(nx, ny, nz);
|
|
55
|
-
if (!nVoxel)
|
|
56
|
-
continue;
|
|
57
|
-
if (nVoxel.hasRGBLight()) {
|
|
58
|
-
task.rgb.remove.push(nx, ny, nz);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
RGBRemove(task);
|
|
65
|
-
RGBUpdate(task);
|
|
66
|
-
section.logicDirtyMap.fill(0);
|
|
67
|
-
section.logicDirty.fill(0);
|
|
68
|
-
section.setLogicDirty(false);
|
|
69
|
-
section.setLogicUpdateInProgress(false);
|
|
70
|
-
task.bounds.markSectionsAsDirty();
|
|
71
|
-
}
|