2013-08-23 00:26:16 +02:00
|
|
|
// Copyright (c) 2013- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#include "TransformPipeline.h"
|
|
|
|
#include "Core/MemMap.h"
|
2013-09-21 23:37:14 +02:00
|
|
|
#include "GPU/Math3D.h"
|
|
|
|
|
|
|
|
// PSP compatible format so we can use the end of the pipeline
|
|
|
|
struct SimpleVertex {
|
|
|
|
float uv[2];
|
|
|
|
u8 color[4];
|
|
|
|
float nrm[3];
|
|
|
|
float pos[3];
|
|
|
|
};
|
|
|
|
|
|
|
|
// This normalizes a set of vertices in any format to SimpleVertex format, by processing away morphing AND skinning.
|
|
|
|
// The rest of the transform pipeline like lighting will go as normal, either hardware or software.
|
|
|
|
// The implementation is initially a bit inefficient but shouldn't be a big deal.
|
|
|
|
// An intermediate buffer of not-easy-to-predict size is stored at bufPtr.
|
|
|
|
u32 TransformDrawEngine::NormalizeVertices(u8 *outPtr, u8 *bufPtr, const u8 *inPtr, int lowerBound, int upperBound, u32 vertType) {
|
|
|
|
// First, decode the vertices into a GPU compatible format. This step can be eliminated but will need a separate
|
|
|
|
// implementation of the vertex decoder.
|
|
|
|
VertexDecoder *dec = GetVertexDecoder(vertType);
|
|
|
|
dec->DecodeVerts(bufPtr, inPtr, lowerBound, upperBound);
|
|
|
|
|
|
|
|
// OK, morphing eliminated but bones still remain to be taken care of.
|
|
|
|
// Let's do a partial software transform where we only do skinning.
|
|
|
|
|
|
|
|
VertexReader reader(bufPtr, dec->GetDecVtxFmt(), vertType);
|
|
|
|
|
|
|
|
SimpleVertex *sverts = (SimpleVertex *)outPtr;
|
|
|
|
|
|
|
|
const u8 defaultColor[4] = {
|
|
|
|
gstate.getMaterialAmbientR(),
|
|
|
|
gstate.getMaterialAmbientG(),
|
|
|
|
gstate.getMaterialAmbientB(),
|
|
|
|
gstate.getMaterialAmbientA(),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Let's have two separate loops, one for non skinning and one for skinning.
|
|
|
|
if ((vertType & GE_VTYPE_WEIGHT_MASK) != GE_VTYPE_WEIGHT_NONE) {
|
|
|
|
int numBoneWeights = vertTypeGetNumBoneWeights(vertType);
|
|
|
|
for (int i = lowerBound; i <= upperBound; i++) {
|
|
|
|
reader.Goto(i);
|
|
|
|
SimpleVertex &sv = sverts[i];
|
|
|
|
if (vertType & GE_VTYPE_TC_MASK) {
|
|
|
|
reader.ReadUV(sv.uv);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vertType & GE_VTYPE_COL_MASK) {
|
|
|
|
reader.ReadColor0_8888(sv.color);
|
|
|
|
} else {
|
|
|
|
memcpy(sv.color, defaultColor, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
float nrm[3], pos[3];
|
|
|
|
float bnrm[3], bpos[3];
|
|
|
|
|
|
|
|
if (vertType & GE_VTYPE_NRM_MASK) {
|
|
|
|
// Normals are generated during tesselation anyway, not sure if any need to supply
|
|
|
|
reader.ReadNrm(nrm);
|
|
|
|
} else {
|
|
|
|
nrm[0] = 0;
|
|
|
|
nrm[1] = 0;
|
|
|
|
nrm[2] = 1.0f;
|
|
|
|
}
|
|
|
|
reader.ReadPos(pos);
|
|
|
|
|
|
|
|
// Apply skinning transform directly
|
|
|
|
float weights[8];
|
|
|
|
reader.ReadWeights(weights);
|
|
|
|
// Skinning
|
|
|
|
Vec3f psum(0,0,0);
|
|
|
|
Vec3f nsum(0,0,0);
|
|
|
|
for (int i = 0; i < numBoneWeights; i++) {
|
|
|
|
if (weights[i] != 0.0f) {
|
|
|
|
Vec3ByMatrix43(bpos, pos, gstate.boneMatrix+i*12);
|
|
|
|
Vec3f tpos(bpos);
|
|
|
|
psum += tpos * weights[i];
|
|
|
|
|
|
|
|
Norm3ByMatrix43(bnrm, nrm, gstate.boneMatrix+i*12);
|
|
|
|
Vec3f tnorm(bnrm);
|
|
|
|
nsum += tnorm * weights[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
memcpy(sv.pos, &psum[0], 12);
|
|
|
|
memcpy(sv.nrm, &nsum[0], 12);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (int i = lowerBound; i <= upperBound; i++) {
|
|
|
|
reader.Goto(i);
|
|
|
|
SimpleVertex &sv = sverts[i];
|
|
|
|
if (vertType & GE_VTYPE_TC_MASK) {
|
|
|
|
reader.ReadUV(sv.uv);
|
|
|
|
} else {
|
|
|
|
sv.uv[0] = 0; // This will get filled in during tesselation
|
|
|
|
sv.uv[1] = 0;
|
|
|
|
}
|
|
|
|
if (vertType & GE_VTYPE_COL_MASK) {
|
|
|
|
reader.ReadColor0_8888(sv.color);
|
|
|
|
} else {
|
|
|
|
memcpy(sv.color, defaultColor, 4);
|
|
|
|
}
|
|
|
|
if (vertType & GE_VTYPE_NRM_MASK) {
|
|
|
|
// Normals are generated during tesselation anyway, not sure if any need to supply
|
|
|
|
reader.ReadNrm(sv.nrm);
|
|
|
|
} else {
|
|
|
|
sv.nrm[0] = 0;
|
|
|
|
sv.nrm[1] = 0;
|
|
|
|
sv.nrm[2] = 1.0f;
|
|
|
|
}
|
|
|
|
reader.ReadPos(sv.pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Okay, there we are! Return the new type (but keep the index bits)
|
|
|
|
return GE_VTYPE_TC_FLOAT | GE_VTYPE_COL_8888 | GE_VTYPE_NRM_FLOAT | GE_VTYPE_POS_FLOAT | (vertType & GE_VTYPE_IDX_MASK);
|
|
|
|
}
|
|
|
|
|
2013-08-23 00:26:16 +02:00
|
|
|
|
|
|
|
// Just to get something on the screen, we'll just not subdivide correctly.
|
|
|
|
void TransformDrawEngine::DrawBezier(int ucount, int vcount) {
|
2013-09-01 09:07:34 +08:00
|
|
|
if ((ucount - 1) % 3 != 0 || (vcount - 1) % 3 != 0)
|
2013-09-07 22:02:55 +02:00
|
|
|
ERROR_LOG_REPORT(G3D, "Unsupported bezier parameters ucount=%i, vcount=%i", ucount, vcount);
|
2013-09-01 09:07:34 +08:00
|
|
|
|
|
|
|
u16 *indices = new u16[ucount * vcount * 6];
|
2013-08-23 00:26:16 +02:00
|
|
|
|
|
|
|
static bool reported = false;
|
|
|
|
if (!reported) {
|
|
|
|
Reporting::ReportMessage("Unsupported bezier curve");
|
|
|
|
reported = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if (gstate.patchprimitive)
|
|
|
|
// Generate indices for a rectangular mesh.
|
|
|
|
int c = 0;
|
2013-09-01 09:07:34 +08:00
|
|
|
for (int y = 0; y < ucount; y++) {
|
|
|
|
for (int x = 0; x < vcount - 1; x++) {
|
|
|
|
indices[c++] = y * (vcount - 1)+ x;
|
|
|
|
indices[c++] = y * (vcount - 1) + x + 1;
|
|
|
|
indices[c++] = (y + 1) * (vcount - 1) + x + 1;
|
|
|
|
indices[c++] = (y + 1) * (vcount - 1) + x + 1;
|
|
|
|
indices[c++] = (y + 1) * (vcount - 1) + x;
|
|
|
|
indices[c++] = y * (vcount - 1) + x;
|
2013-08-23 00:26:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We are free to use the "decoded" buffer here.
|
|
|
|
// Let's split it into two to get a second buffer, there's enough space.
|
|
|
|
u8 *decoded2 = decoded + 65536 * 24;
|
|
|
|
|
|
|
|
// Alright, now for the vertex data.
|
|
|
|
// For now, we will simply inject UVs.
|
|
|
|
|
|
|
|
float customUV[4 * 4 * 2];
|
|
|
|
for (int y = 0; y < 4; y++) {
|
|
|
|
for (int x = 0; x < 4; x++) {
|
|
|
|
customUV[(y * 4 + x) * 2 + 0] = (float)x/3.0f;
|
|
|
|
customUV[(y * 4 + x) * 2 + 1] = (float)y/3.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-21 23:44:11 +02:00
|
|
|
if (!vertTypeGetTexCoordMask(gstate.vertType)) {
|
2013-08-23 00:26:16 +02:00
|
|
|
VertexDecoder *dec = GetVertexDecoder(gstate.vertType);
|
|
|
|
dec->SetVertexType(gstate.vertType);
|
|
|
|
u32 newVertType = dec->InjectUVs(decoded2, Memory::GetPointer(gstate_c.vertexAddr), customUV, 16);
|
|
|
|
SubmitPrim(decoded2, &indices[0], GE_PRIM_TRIANGLES, c, newVertType, GE_VTYPE_IDX_16BIT, 0);
|
|
|
|
} else {
|
|
|
|
SubmitPrim(Memory::GetPointer(gstate_c.vertexAddr), &indices[0], GE_PRIM_TRIANGLES, c, gstate.vertType, GE_VTYPE_IDX_16BIT, 0);
|
|
|
|
}
|
|
|
|
Flush(); // as our vertex storage here is temporary, it will only survive one draw.
|
2013-09-01 09:07:34 +08:00
|
|
|
|
|
|
|
delete [] indices;
|
2013-08-23 00:26:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Spline implementation copied and modified from neobrain's softgpu (orphis code?)
|
|
|
|
|
|
|
|
#define START_OPEN_U 1
|
|
|
|
#define END_OPEN_U 2
|
|
|
|
#define START_OPEN_V 4
|
|
|
|
#define END_OPEN_V 8
|
|
|
|
|
|
|
|
// We decode all vertices into a common format for easy interpolation and stuff.
|
2013-08-30 10:25:01 +02:00
|
|
|
// Not fast but can be optimized later.
|
2013-08-23 00:26:16 +02:00
|
|
|
struct HWSplinePatch {
|
2013-09-21 23:37:14 +02:00
|
|
|
SimpleVertex *points[16];
|
2013-08-23 00:26:16 +02:00
|
|
|
int type;
|
2013-08-30 10:25:01 +02:00
|
|
|
|
|
|
|
// We need to generate both UVs and normals later...
|
|
|
|
// float u0, v0, u1, v1;
|
2013-08-23 00:26:16 +02:00
|
|
|
};
|
|
|
|
|
2013-09-21 23:37:14 +02:00
|
|
|
static void CopyTriangle(u8 *&dest, SimpleVertex *v1, SimpleVertex *v2, SimpleVertex* v3) {
|
|
|
|
int vertexSize = sizeof(SimpleVertex);
|
2013-08-23 00:26:16 +02:00
|
|
|
memcpy(dest, v1, vertexSize);
|
|
|
|
dest += vertexSize;
|
|
|
|
memcpy(dest, v2, vertexSize);
|
|
|
|
dest += vertexSize;
|
|
|
|
memcpy(dest, v3, vertexSize);
|
|
|
|
dest += vertexSize;
|
|
|
|
}
|
|
|
|
|
2013-09-21 23:37:14 +02:00
|
|
|
|
2013-08-30 10:25:01 +02:00
|
|
|
void TransformDrawEngine::SubmitSpline(void* control_points, void* indices, int count_u, int count_v, int type_u, int type_v, GEPatchPrimType prim_type, u32 vertex_type) {
|
2013-08-23 00:26:16 +02:00
|
|
|
Flush();
|
|
|
|
|
|
|
|
if (prim_type != GE_PATCHPRIM_TRIANGLES) {
|
|
|
|
// Only triangles supported!
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 index_lower_bound = 0;
|
|
|
|
u16 index_upper_bound = count_u * count_v - 1;
|
|
|
|
bool indices_16bit = (vertex_type & GE_VTYPE_IDX_MASK) == GE_VTYPE_IDX_16BIT;
|
|
|
|
u8* indices8 = (u8*)indices;
|
|
|
|
u16* indices16 = (u16*)indices;
|
|
|
|
if (indices)
|
|
|
|
GetIndexBounds(indices, count_u*count_v, vertex_type, &index_lower_bound, &index_upper_bound);
|
|
|
|
|
2013-09-21 23:37:14 +02:00
|
|
|
// Simplify away bones and morph before proceeding
|
|
|
|
SimpleVertex *simplified_control_points = (SimpleVertex *)(decoded + 65536 * 12);
|
|
|
|
u8 *temp_buffer = decoded + 65536 * 24;
|
|
|
|
|
|
|
|
vertex_type = NormalizeVertices((u8 *)simplified_control_points, temp_buffer, (u8 *)control_points, index_lower_bound, index_upper_bound, vertex_type);
|
|
|
|
|
|
|
|
VertexDecoder *vdecoder = GetVertexDecoder(vertex_type);
|
|
|
|
|
|
|
|
int vertexSize = vdecoder->VertexSize();
|
|
|
|
if (vertexSize != sizeof(SimpleVertex)) {
|
|
|
|
ERROR_LOG(G3D, "Something went really wrong, vertex size: %i vs %i", vertexSize, sizeof(SimpleVertex));
|
|
|
|
}
|
|
|
|
const DecVtxFormat& vtxfmt = vdecoder->GetDecVtxFmt();
|
|
|
|
|
2013-08-23 00:26:16 +02:00
|
|
|
int num_patches_u = count_u - 3;
|
|
|
|
int num_patches_v = count_v - 3;
|
|
|
|
|
|
|
|
// TODO: Do something less idiotic to manage this buffer
|
|
|
|
HWSplinePatch* patches = new HWSplinePatch[num_patches_u * num_patches_v];
|
|
|
|
for (int patch_u = 0; patch_u < num_patches_u; ++patch_u) {
|
|
|
|
for (int patch_v = 0; patch_v < num_patches_v; ++patch_v) {
|
|
|
|
HWSplinePatch& patch = patches[patch_u + patch_v * num_patches_u];
|
|
|
|
|
|
|
|
for (int point = 0; point < 16; ++point) {
|
|
|
|
int idx = (patch_u + point%4) + (patch_v + point/4) * count_u;
|
|
|
|
if (indices)
|
2013-09-21 23:37:14 +02:00
|
|
|
patch.points[point] = simplified_control_points + (indices_16bit ? indices16[idx] : indices8[idx]);
|
2013-08-23 00:26:16 +02:00
|
|
|
else
|
2013-09-21 23:37:14 +02:00
|
|
|
patch.points[point] = simplified_control_points + idx;
|
2013-08-23 00:26:16 +02:00
|
|
|
}
|
2013-08-30 10:25:01 +02:00
|
|
|
patch.type = (type_u | (type_v << 2));
|
2013-08-23 00:26:16 +02:00
|
|
|
if (patch_u != 0) patch.type &= ~START_OPEN_U;
|
|
|
|
if (patch_v != 0) patch.type &= ~START_OPEN_V;
|
|
|
|
if (patch_u != num_patches_u-1) patch.type &= ~END_OPEN_U;
|
|
|
|
if (patch_v != num_patches_v-1) patch.type &= ~END_OPEN_V;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-21 23:37:14 +02:00
|
|
|
u8 *decoded2 = decoded + 65536 * 36;
|
2013-08-23 00:26:16 +02:00
|
|
|
|
|
|
|
int count = 0;
|
|
|
|
u8 *dest = decoded2;
|
|
|
|
|
|
|
|
for (int patch_idx = 0; patch_idx < num_patches_u*num_patches_v; ++patch_idx) {
|
|
|
|
HWSplinePatch& patch = patches[patch_idx];
|
|
|
|
|
|
|
|
// TODO: Should do actual patch subdivision instead of just drawing the control points!
|
|
|
|
const int tile_min_u = (patch.type & START_OPEN_U) ? 0 : 1;
|
|
|
|
const int tile_min_v = (patch.type & START_OPEN_V) ? 0 : 1;
|
|
|
|
const int tile_max_u = (patch.type & END_OPEN_U) ? 3 : 2;
|
|
|
|
const int tile_max_v = (patch.type & END_OPEN_V) ? 3 : 2;
|
|
|
|
for (int tile_u = tile_min_u; tile_u < tile_max_u; ++tile_u) {
|
|
|
|
for (int tile_v = tile_min_v; tile_v < tile_max_v; ++tile_v) {
|
|
|
|
int point_index = tile_u + tile_v*4;
|
|
|
|
|
2013-09-21 23:37:14 +02:00
|
|
|
SimpleVertex *v0 = patch.points[point_index];
|
|
|
|
SimpleVertex *v1 = patch.points[point_index+1];
|
|
|
|
SimpleVertex *v2 = patch.points[point_index+4];
|
|
|
|
SimpleVertex *v3 = patch.points[point_index+5];
|
2013-08-23 00:26:16 +02:00
|
|
|
|
2013-09-21 23:37:14 +02:00
|
|
|
CopyTriangle(dest, v0, v2, v1);
|
|
|
|
CopyTriangle(dest, v1, v2, v3);
|
2013-08-30 10:25:01 +02:00
|
|
|
count += 6;
|
2013-08-23 00:26:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete[] patches;
|
|
|
|
|
|
|
|
u32 vertTypeWithoutIndex = vertex_type & ~GE_VTYPE_IDX_MASK;
|
|
|
|
|
|
|
|
SubmitPrim(decoded2, 0, GE_PRIM_TRIANGLES, count, vertTypeWithoutIndex, GE_VTYPE_IDX_NONE, 0);
|
|
|
|
Flush();
|
2013-08-29 23:19:38 +08:00
|
|
|
}
|
2013-08-30 10:25:01 +02:00
|
|
|
|
|
|
|
// TODO
|
|
|
|
void TransformDrawEngine::SubmitBezier(void* control_points, void* indices, int count_u, int count_v, GEPatchPrimType prim_type, u32 vertex_type) {
|
|
|
|
if (prim_type != GE_PATCHPRIM_TRIANGLES) {
|
|
|
|
// Only triangles supported!
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We're not actually going to decode, only reshuffle.
|
|
|
|
VertexDecoder vdecoder;
|
|
|
|
vdecoder.SetVertexType(vertex_type);
|
|
|
|
|
|
|
|
Flush();
|
|
|
|
}
|