/******************************************************************************/ /* Project - MudBun Publisher - Long Bunny Labs http://LongBunnyLabs.com Author - Ming-Lun "Allen" Chou http://AllenChou.net */ /******************************************************************************/ using System.Collections.Generic; using Unity.Collections; using UnityEngine; #if MUDBUN_BURST using Unity.Burst; using Unity.Mathematics; using AOT; #endif namespace MudBun { #if MUDBUN_BURST [BurstCompile] #endif public class MudBox : MudSolid { [SerializeField] private float m_round = 0.0f; public float Round { get => m_round; set { m_round = value; MarkDirty(); } } [Range(-1.0f, 1.0f)] public float PivotShift = 0.0f; public Vector3 PivotShiftOffset => -0.5f * transform.up * PivotShift * transform.localScale.y; public override Aabb RawBoundsRs { get { Vector3 r = 0.5f * VectorUtil.Abs(transform.localScale); Vector3 posRs = PointRs(transform.position) + VectorRs(PivotShiftOffset); Aabb bounds = new Aabb(-r, r); bounds.Rotate(RotationRs(transform.rotation)); Vector3 round = m_round * Vector3.one; bounds.Min += posRs - round; bounds.Max += posRs + round; return bounds; } } public override void SanitizeParameters() { base.SanitizeParameters(); Validate.NonNegative(ref m_round); } public override int FillComputeData(NativeArray aBrush, int iStart, List aBone) { SdfBrush brush = SdfBrush.New(); brush.Type = (int) SdfBrush.TypeEnum.Box; brush.Radius = m_round; brush.Data0.x = PivotShift; if (aBone != null) { brush.BoneIndex = aBone.Count; aBone.Add(gameObject.transform); } aBrush[iStart] = brush; return 1; } #if MUDBUN_BURST [BurstCompile] [MonoPInvokeCallback(typeof(Sdf.SdfBrushEvalFunc))] [RegisterSdfBrushEvalFunc(SdfBrush.TypeEnum.Box)] public static unsafe float EvaluateSdf(float res, ref float3 p, in float3 pRel, SdfBrush* aBrush, int iBrush) { float3 pRelCopy = pRel; float3 h = math.abs(0.5f * aBrush[iBrush].Size); float pivotShift = aBrush[iBrush].Data0.x; pRelCopy.y += pivotShift * h.y; return Sdf.Box(pRelCopy, h, aBrush[iBrush].Radius); } #endif public override void DrawSelectionGizmosRs() { base.DrawSelectionGizmosRs(); GizmosUtil.DrawInvisibleBox(PointRs(transform.position) + VectorRs(PivotShiftOffset), transform.localScale + 2.0f * Round * Vector3.one, RotationRs(transform.rotation)); } public override void DrawOutlineGizmosRs() { base.DrawOutlineGizmosRs(); GizmosUtil.DrawWireBox(PointRs(transform.position) + VectorRs(PivotShiftOffset), transform.localScale + 2.0f * Round * Vector3.one, RotationRs(transform.rotation)); } } }