rj-action-library/Runtime/Procedural/Parametric/Plane/Plane.cs

112 lines
2.5 KiB
C#
Raw Normal View History

2025-03-25 07:08:51 +00:00
using System.Collections;
using System.Collections.Generic;
using Godot;
using System;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class Plane:Node3D
2025-03-27 15:05:28 +00:00
{
[ExportToolButton( "Update Mesh")]
public Callable UpdateMeshButton => Callable.From( () => UpdateMesh() );
public readonly EventProperty<float> _width = new EventProperty<float>();
2025-03-25 07:08:51 +00:00
[Export]
2025-03-27 15:05:28 +00:00
public float width { get => _width.value; set => _width.value = value; }
2025-03-25 07:08:51 +00:00
2025-03-27 15:05:28 +00:00
public readonly EventProperty<float> _height = new EventProperty<float>();
[Export]
public float height { get => _height.value; set => _height.value = value; }
2025-03-25 07:08:51 +00:00
[Export]
2025-03-27 15:05:28 +00:00
public bool extendBoundingBox = true;
2025-03-25 07:08:51 +00:00
2025-03-27 15:05:28 +00:00
[Export]
public float boundingBoxMinY = 0;
[Export]
public float boundingBoxMaxY = 1;
2025-03-25 07:08:51 +00:00
2025-03-27 15:05:28 +00:00
public readonly EventProperty<__PlaneMeshType__> _type = new EventProperty<__PlaneMeshType__>();
2025-03-25 07:08:51 +00:00
[Export]
2025-03-27 15:05:28 +00:00
public __PlaneMeshType__ type { get => _type.value; set { _type.value = value; } }
2025-03-25 07:08:51 +00:00
[Export]
public Material material;
[Export]
2025-03-27 15:05:28 +00:00
public MeshInstance3D[] meshes;
2025-03-25 07:08:51 +00:00
2025-03-27 15:05:28 +00:00
[Export]
public bool snapXZ = true;
2025-03-25 07:08:51 +00:00
[Export]
2025-03-27 15:05:28 +00:00
public float snappingDistance = 100;
2025-03-25 07:08:51 +00:00
2025-03-27 15:05:28 +00:00
[Export]
public Vector3 snapOffset = Vector3.Zero;
[ExportGroup( "Debug Info")]
[Export]
public int numTriangles;
public override void _Process( double delta )
2025-03-25 07:08:51 +00:00
{
2025-03-27 15:05:28 +00:00
if ( ! snapXZ )
2025-03-25 07:08:51 +00:00
{
return;
}
2025-03-27 15:05:28 +00:00
GlobalPosition = Math3D.SnapRoundedXZ( GlobalPosition, snappingDistance, snappingDistance );
}
void UpdateMesh()
{
2025-03-25 07:08:51 +00:00
if ( _type == null )
{
return;
}
2025-03-27 15:05:28 +00:00
numTriangles = 0;
2025-03-25 07:08:51 +00:00
this.LogInfo( "Creating mesh" );
2025-03-27 15:05:28 +00:00
var mgs = _type.value.GetMeshGeometries( width, height );
2025-03-25 07:08:51 +00:00
2025-03-27 15:05:28 +00:00
meshes = new MeshInstance3D[ mgs.Count ];
2025-03-25 07:08:51 +00:00
2025-03-27 15:05:28 +00:00
Nodes.DestroyChildren( this );
2025-03-25 07:08:51 +00:00
2025-03-27 15:05:28 +00:00
for ( int i = 0; i < mgs.Count; i++ )
2025-03-25 07:08:51 +00:00
{
2025-03-27 15:05:28 +00:00
var mg = mgs[ i ];
var outputMesh = this.CreateChild<MeshInstance3D>( mg.name );
outputMesh.Mesh = mg.GenerateMesh();
if ( extendBoundingBox )
{
var extendedBounds = (Box3) outputMesh.Mesh.GetAabb();
extendedBounds.EnsureYBounds( boundingBoxMinY, boundingBoxMaxY );
outputMesh.CustomAabb = extendedBounds;
}
meshes[ i ] = outputMesh;
numTriangles += mg.numTriangles;
if ( material != null )
{
Materials.Set( outputMesh, material );
}
2025-03-25 07:08:51 +00:00
}
2025-03-27 15:05:28 +00:00
2025-03-25 07:08:51 +00:00
}
}
}