using System;
using System.Runtime.InteropServices;
namespace Raylib_cs;
///
/// Vertex data definning a mesh
/// NOTE: Data stored in CPU memory (and GPU)
///
[StructLayout(LayoutKind.Sequential)]
public unsafe partial struct Mesh
{
///
/// Creates a mesh ready for default vertex data allocation
///
public Mesh(int vertexCount, int triangleCount)
{
VertexCount = vertexCount;
TriangleCount = triangleCount;
}
///
/// Number of vertices stored in arrays
///
public int VertexCount;
///
/// Number of triangles stored (indexed or not)
///
public int TriangleCount;
#region Default vertex data
///
/// Vertex position (XYZ - 3 components per vertex) (shader-location = 0)
///
public float* Vertices = default;
///
/// Vertex texture coordinates (UV - 2 components per vertex) (shader-location = 1)
///
public float* TexCoords = default;
///
/// Vertex second texture coordinates (useful for lightmaps) (shader-location = 5)
///
public float* TexCoords2 = default;
///
/// Vertex normals (XYZ - 3 components per vertex) (shader-location = 2)
///
public float* Normals = default;
///
/// Vertex tangents (XYZW - 4 components per vertex) (shader-location = 4)
///
public float* Tangents = default;
///
/// Vertex colors (RGBA - 4 components per vertex) (shader-location = 3)
///
public byte* Colors = default;
///
/// Vertex indices (in case vertex data comes indexed)
///
public ushort* Indices = default;
///
/// Allocate
///
public void AllocVertices()
{
Vertices = Raylib.New(3 * (uint)VertexCount);
}
///
/// Allocate
///
public void AllocTexCoords()
{
TexCoords = Raylib.New(2 * (uint)VertexCount);
}
///
/// Allocate
///
public void AllocTexCoords2()
{
TexCoords2 = Raylib.New(2 * (uint)VertexCount);
}
///
/// Allocate
///
public void AllocNormals()
{
Normals = Raylib.New(3 * (uint)VertexCount);
}
///
/// Allocate
///
public void AllocTangents()
{
Tangents = Raylib.New(4 * (uint)VertexCount);
}
///
/// Allocate
///
public void AllocColors()
{
Colors = Raylib.New(4 * (uint)VertexCount);
}
///
/// Allocate
///
public void AllocIndices()
{
Indices = Raylib.New(3 * (uint)TriangleCount);
}
///
/// Access
///
public readonly Span VerticesAs() where T : unmanaged
{
return new(Vertices, 3 * VertexCount * sizeof(float) / sizeof(T));
}
///
/// Access
///
public readonly Span TexCoordsAs() where T : unmanaged
{
return new(TexCoords, 2 * VertexCount * sizeof(float) / sizeof(T));
}
///
/// Access
///
public readonly Span TexCoords2As() where T : unmanaged
{
return new(TexCoords2, 2 * VertexCount * sizeof(float) / sizeof(T));
}
///
/// Access
///
public readonly Span NormalsAs() where T : unmanaged
{
return new(Normals, 3 * VertexCount * sizeof(float) / sizeof(T));
}
///
/// Access
///
public readonly Span TangentsAs() where T : unmanaged
{
return new(Tangents, 4 * VertexCount * sizeof(float) / sizeof(T));
}
///
/// Access
///
public readonly Span ColorsAs() where T : unmanaged
{
return new(Colors, 4 * VertexCount * sizeof(byte) / sizeof(T));
}
///
/// Access
///
public readonly Span IndicesAs() where T : unmanaged
{
return new(Indices, 3 * TriangleCount * sizeof(ushort) / sizeof(T));
}
#endregion
#region Animation vertex data
///
/// Animated vertex positions (after bones transformations)
///
public float* AnimVertices = default;
///
/// Animated normals (after bones transformations)
///
public float* AnimNormals = default;
///
/// Vertex bone ids, up to 4 bones influence by vertex (skinning)
///
public byte* BoneIds = default;
///
/// Vertex bone weight, up to 4 bones influence by vertex (skinning)
///
public float* BoneWeights = default;
#endregion
#region OpenGL identifiers
///
/// OpenGL Vertex Array Object id
///
public uint VaoId = default;
///
/// OpenGL Vertex Buffer Objects id (default vertex data, uint[])
///
public uint* VboId = default;
///
/// Default index for
///
public const int VboIdIndexVertices = 0;
///
/// Default index for
///
public const int VboIdIndexTexCoords = 1;
///
/// Default index for
///
public const int VboIdIndexNormals = 2;
///
/// Default index for
///
public const int VboIdIndexColors = 3;
///
/// Default index for
///
public const int VboIdIndexTangents = 4;
///
/// Default index for
///
public const int VboIdIndexTexCoords2 = 5;
///
/// Default index for
///
public const int VboIdIndexIndices = 6;
#endregion
}