TurnBasedStrategyCourse/Library/PackageCache/com.unity.probuilder@5.1.0/Runtime/Core/Submesh.cs

220 lines
8.8 KiB
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using UnityEngine;
namespace UnityEngine.ProBuilder
{
/// <summary>
/// Defines a set of indices and material.
/// </summary>
[Serializable]
public sealed class Submesh
{
[SerializeField]
internal int[] m_Indexes;
[SerializeField]
internal MeshTopology m_Topology;
[SerializeField]
internal int m_SubmeshIndex;
/// <summary>
/// Gets or sets the indices making up this submesh. Use the <see cref="topology"/> property
/// to find out whether the submesh contains triangles or quads.
/// </summary>
public IEnumerable<int> indexes
{
get { return new ReadOnlyCollection<int>(m_Indexes); }
set { m_Indexes = value.ToArray(); }
}
/// <summary>
/// Gets or sets the topology (whether this submesh is made with triangles or quads).
/// </summary>
public MeshTopology topology
{
get { return m_Topology; }
set { m_Topology = value; }
}
/// <summary>
/// Gets or sets the index in the <see cref="Renderer.sharedMaterials">sharedMaterials</see> array that this submesh aligns with.
/// </summary>
public int submeshIndex
{
get { return m_SubmeshIndex; }
set { m_SubmeshIndex = value; }
}
/// <summary>
/// Creates a new Submesh from a submesh index for the material, the topology, and a set of indices.
/// </summary>
/// <param name="submeshIndex">The index of this submesh that corresponds to the <see cref="Renderer.sharedMaterials">sharedMaterials</see> property.</param>
/// <param name="topology">The topology of this submesh. ProBuilder only recognizes Triangles and Quads.</param>
/// <param name="indexes">The triangles or quads.</param>
public Submesh(int submeshIndex, MeshTopology topology, IEnumerable<int> indexes)
{
if (indexes == null)
throw new ArgumentNullException("indexes");
m_Indexes = indexes.ToArray();
m_Topology = topology;
m_SubmeshIndex = submeshIndex;
}
/// <summary>
/// Creates a new Submesh from a source mesh and a submesh index for the material.
/// </summary>
/// <param name="mesh">The source mesh.</param>
/// <param name="subMeshIndex">Which submesh to read from.</param>
public Submesh(Mesh mesh, int subMeshIndex)
{
if (mesh == null)
throw new ArgumentNullException("mesh");
m_Indexes = mesh.GetIndices(subMeshIndex);
m_Topology = mesh.GetTopology(subMeshIndex);
m_SubmeshIndex = subMeshIndex;
}
/// <summary>
/// Returns a string that represents this Submesh.
/// </summary>
/// <returns>A comma-delimited string (for example `"[subMeshIndex],[topology],[indices]"`).</returns>
public override string ToString()
{
return string.Format("{0}, {1}, {2}", m_SubmeshIndex, m_Topology.ToString(), m_Indexes != null ? m_Indexes.Length.ToString() : "0");
}
internal static int GetSubmeshCount(ProBuilderMesh mesh)
{
int count = 0;
foreach (var face in mesh.facesInternal)
count = Mathf.Max(count, face.submeshIndex);
return count + 1;
}
/// <summary>
/// Creates an array of submeshes from a set of faces. Currently only Quads and Triangles are supported.
/// </summary>
/// <param name="faces">The faces to be included in the list of submeshes. This method handles group submeshes by comparing the material property of each face.</param>
/// <param name="submeshCount">The number of submeshes to create. Usually you can set this value to the length of the <see cref="Renderer.sharedMaterials"/> array.</param>
/// <param name="preferredTopology">
/// By default, ProBuilder creates triangles, but you can set this value to false to construct quads.
/// However, ProBuilder falls back to creating triangles if it can't represent some faces in quad format.
/// </param>
/// <returns>An array of Submeshes.</returns>
/// <exception cref="NotImplementedException">Thrown in the event that a MeshTopology other than Quads or Triangles is passed.</exception>
public static Submesh[] GetSubmeshes(IEnumerable<Face> faces, int submeshCount, MeshTopology preferredTopology = MeshTopology.Triangles)
{
if (preferredTopology != MeshTopology.Triangles && preferredTopology != MeshTopology.Quads)
throw new System.NotImplementedException("Currently only Quads and Triangles are supported.");
if (faces == null)
throw new ArgumentNullException("faces");
bool wantsQuads = preferredTopology == MeshTopology.Quads;
List<int>[] quads = wantsQuads ? new List<int>[submeshCount] : null;
List<int>[] tris = new List<int>[submeshCount];
int maxSubmeshIndex = submeshCount - 1;
int maxSubmeshIndexUsed = -1;
for (int i = 0; i < submeshCount; i++)
{
if (wantsQuads)
quads[i] = new List<int>();
tris[i] = new List<int>();
}
foreach (var face in faces)
{
if (face.indexesInternal == null || face.indexesInternal.Length < 1)
continue;
int submeshIndex = Math.Clamp(face.submeshIndex, 0, maxSubmeshIndex);
maxSubmeshIndexUsed = UnityEngine.Mathf.Max(submeshIndex,maxSubmeshIndexUsed);
if (wantsQuads && face.IsQuad())
quads[submeshIndex].AddRange(face.ToQuad());
else
tris[submeshIndex].AddRange(face.indexesInternal);
}
submeshCount = maxSubmeshIndexUsed + 1;
var submeshes = new Submesh[submeshCount];
switch (preferredTopology)
{
case MeshTopology.Triangles:
{
for (int submeshIndex = 0; submeshIndex < submeshCount; submeshIndex++)
submeshes[submeshIndex] = new Submesh(submeshIndex, MeshTopology.Triangles, tris[submeshIndex]);
break;
}
case MeshTopology.Quads:
{
for (int submeshIndex = 0; submeshIndex < submeshCount; submeshIndex++)
{
// If a submesh is a mix of triangles and quads, fall back to triangles.
if (tris[submeshIndex].Count > 0)
{
var tri = tris[submeshIndex];
var quad = quads[submeshIndex];
int triCount = tri.Count;
int quadCount = quad.Count;
int[] triangles = new int[triCount + ((quadCount / 4) * 6)];
for (int i = 0; i < triCount; i++)
triangles[i] = tri[i];
for (int i = 0, n = triCount; i < quadCount; i += 4, n += 6)
{
triangles[n + 0] = quad[i + 0];
triangles[n + 1] = quad[i + 1];
triangles[n + 2] = quad[i + 2];
triangles[n + 3] = quad[i + 2];
triangles[n + 4] = quad[i + 3];
triangles[n + 5] = quad[i + 0];
}
submeshes[submeshIndex] = new Submesh(submeshIndex, MeshTopology.Triangles, triangles);
}
else
{
submeshes[submeshIndex] = new Submesh(submeshIndex, MeshTopology.Quads, quads[submeshIndex]);
}
}
break;
}
}
return submeshes;
}
internal static void MapFaceMaterialsToSubmeshIndex(ProBuilderMesh mesh)
{
var materials = mesh.renderer.sharedMaterials;
var submeshCount = materials.Length;
foreach (var face in mesh.facesInternal)
{
#pragma warning disable 618
if (face.material == null)
continue;
var index = Array.IndexOf(materials, face.material);
face.submeshIndex = Math.Clamp(index, 0, submeshCount - 1);
face.material = null;
#pragma warning restore 618
}
}
}
}