Added PSXMesh, deindexes tris, converts them into primitives for the PSX

This commit is contained in:
2025-03-13 12:37:23 +01:00
parent f26fb5e467
commit 1e480f6c15
2 changed files with 61 additions and 3 deletions

View File

@@ -1,16 +1,62 @@
using System.Collections.Generic;
using UnityEngine; using UnityEngine;
namespace PSXSplash.RuntimeCode namespace PSXSplash.RuntimeCode
{ {
public struct PSXVertex
{
public short vx, vy, vz;
public byte u, v;
}
public struct Tri
{
public PSXVertex v0;
public PSXVertex v1;
public PSXVertex v2;
}
[System.Serializable] [System.Serializable]
public class PSXMesh public class PSXMesh
{ {
public bool TriangulateMesh = true; public List<Tri> Triangles;
public void Export(GameObject gameObject) public static PSXMesh CreateFromUnityMesh(Mesh mesh, int textureWidth, int textureHeight)
{ {
Debug.Log($"Export: {this}"); PSXMesh psxMesh = new PSXMesh { Triangles = new List<Tri>() };
Vector3[] vertices = mesh.vertices;
Vector2[] uv = mesh.uv;
int[] indices = mesh.triangles;
for (int i = 0; i < indices.Length; i += 3)
{
int vid0 = indices[i];
int vid1 = indices[i + 1];
int vid2 = indices[i + 2];
PSXVertex v0 = ConvertToPSXVertex(vertices[vid0], uv[vid0], textureWidth, textureHeight);
PSXVertex v1 = ConvertToPSXVertex(vertices[vid1], uv[vid1], textureWidth, textureHeight);
PSXVertex v2 = ConvertToPSXVertex(vertices[vid2], uv[vid2], textureWidth, textureHeight);
psxMesh.Triangles.Add(new Tri { v0 = v0, v1 = v1, v2 = v2 });
}
return psxMesh;
}
private static PSXVertex ConvertToPSXVertex(Vector3 vertex, Vector2 uv, int textureWidth, int textureHeight)
{
PSXVertex psxVertex = new PSXVertex
{
vx = (short)(Mathf.Clamp(vertex.x, -4f, 3.999f) * 4096),
vy = (short)(Mathf.Clamp(vertex.y, -4f, 3.999f) * 4096),
vz = (short)(Mathf.Clamp(vertex.z, -4f, 3.999f) * 4096),
u = (byte)(Mathf.Clamp(uv.x * textureWidth, 0, 255)),
v = (byte)(Mathf.Clamp((1.0f - uv.y) * textureHeight, 0, 255))
};
return psxVertex;
} }
} }
} }

View File

@@ -9,6 +9,9 @@ namespace PSXSplash.RuntimeCode
[HideInInspector] [HideInInspector]
public PSXTexture2D Texture; public PSXTexture2D Texture;
[HideInInspector]
public PSXMesh Mesh;
public void CreatePSXTexture2D() public void CreatePSXTexture2D()
{ {
Renderer renderer = GetComponent<Renderer>(); Renderer renderer = GetComponent<Renderer>();
@@ -18,6 +21,15 @@ namespace PSXSplash.RuntimeCode
Texture.OriginalTexture = texture; Texture.OriginalTexture = texture;
} }
} }
public void CreatePSXMesh()
{
MeshFilter meshFilter = gameObject.GetComponent<MeshFilter>();
if (meshFilter != null)
{
Mesh = PSXMesh.CreateFromUnityMesh(meshFilter.mesh, Texture.Width, Texture.Height);
}
}
} }
} }