2021-03-02 02:13:17 +00:00
|
|
|
// Project64 - A Nintendo 64 emulator
|
|
|
|
// http://www.pj64-emu.com/
|
|
|
|
// Copyright(C) 2001-2021 Project64
|
|
|
|
// Copyright(C) 2003-2009 Sergey 'Gonetz' Lipski
|
|
|
|
// Copyright(C) 2002 Dave2001
|
|
|
|
// GNU/GPLv2 licensed: https://gnu.org/licenses/gpl-2.0.html
|
2017-05-16 07:41:05 +00:00
|
|
|
#include <Project64-video/rdp.h>
|
|
|
|
#include <Project64-video/Gfx_1.3.h>
|
|
|
|
#include <Project64-video/trace.h>
|
|
|
|
#include <Project64-video/ucode.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include "3dmath.h"
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2016-01-20 06:14:48 +00:00
|
|
|
uint32_t pd_col_addr = 0;
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2017-05-16 07:41:05 +00:00
|
|
|
void uc7_colorbase()
|
2013-04-04 21:22:19 +00:00
|
|
|
{
|
2016-02-11 09:58:42 +00:00
|
|
|
WriteTrace(TraceRDP, TraceDebug, "uc7_colorbase");
|
2016-01-25 11:14:01 +00:00
|
|
|
pd_col_addr = segoffset(rdp.cmd1);
|
2013-04-04 21:22:19 +00:00
|
|
|
}
|
|
|
|
|
2016-01-25 11:14:01 +00:00
|
|
|
typedef struct
|
2013-04-04 21:22:19 +00:00
|
|
|
{
|
2016-01-25 11:14:01 +00:00
|
|
|
short y;
|
|
|
|
short x;
|
|
|
|
uint16_t idx;
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2016-01-25 11:14:01 +00:00
|
|
|
short z;
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2016-01-25 11:14:01 +00:00
|
|
|
short t;
|
|
|
|
short s;
|
2013-04-04 21:22:19 +00:00
|
|
|
} vtx_uc7;
|
|
|
|
|
2017-05-16 07:41:05 +00:00
|
|
|
void uc7_vertex()
|
2013-04-04 21:22:19 +00:00
|
|
|
{
|
2016-01-25 11:14:01 +00:00
|
|
|
if (rdp.update & UPDATE_MULT_MAT)
|
|
|
|
{
|
|
|
|
rdp.update ^= UPDATE_MULT_MAT;
|
|
|
|
MulMatrices(rdp.model, rdp.proj, rdp.combined);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is special, not handled in update()
|
|
|
|
if (rdp.update & UPDATE_LIGHTS)
|
2013-04-04 21:22:19 +00:00
|
|
|
{
|
2016-01-25 11:14:01 +00:00
|
|
|
rdp.update ^= UPDATE_LIGHTS;
|
|
|
|
|
|
|
|
// Calculate light vectors
|
|
|
|
for (uint32_t l = 0; l < rdp.num_lights; l++)
|
|
|
|
{
|
|
|
|
InverseTransformVector(&rdp.light[l].dir_x, rdp.light_vector[l], rdp.model);
|
|
|
|
NormalizeVector(rdp.light_vector[l]);
|
|
|
|
}
|
2013-04-04 21:22:19 +00:00
|
|
|
}
|
|
|
|
|
2016-01-25 11:14:01 +00:00
|
|
|
uint32_t addr = segoffset(rdp.cmd1);
|
|
|
|
uint32_t v0, i, n;
|
|
|
|
float x, y, z;
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2016-01-25 11:14:01 +00:00
|
|
|
rdp.v0 = v0 = (rdp.cmd0 & 0x0F0000) >> 16;
|
|
|
|
rdp.vn = n = ((rdp.cmd0 & 0xF00000) >> 20) + 1;
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2016-02-11 09:58:42 +00:00
|
|
|
WriteTrace(TraceRDP, TraceDebug, "uc7:vertex n: %d, v0: %d, from: %08lx", n, v0, addr);
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2016-01-25 11:14:01 +00:00
|
|
|
vtx_uc7 *vertex = (vtx_uc7 *)&gfx.RDRAM[addr];
|
2013-04-04 21:22:19 +00:00
|
|
|
|
2016-01-25 11:14:01 +00:00
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
{
|
2017-08-16 22:18:19 +00:00
|
|
|
gfxVERTEX &v = rdp.vtx(v0 + i);
|
2016-01-25 11:14:01 +00:00
|
|
|
x = (float)vertex->x;
|
|
|
|
y = (float)vertex->y;
|
|
|
|
z = (float)vertex->z;
|
2017-05-19 20:03:52 +00:00
|
|
|
v.flags = 0;
|
|
|
|
v.ou = (float)vertex->s;
|
|
|
|
v.ov = (float)vertex->t;
|
|
|
|
v.uv_scaled = 0;
|
|
|
|
|
|
|
|
WriteTrace(TraceRDP, TraceVerbose, "before: v%d - x: %f, y: %f, z: %f, flags: %04lx, ou: %f, ov: %f", i >> 4, x, y, z, v.flags, v.ou, v.ov);
|
|
|
|
|
|
|
|
v.x = x*rdp.combined[0][0] + y*rdp.combined[1][0] + z*rdp.combined[2][0] + rdp.combined[3][0];
|
|
|
|
v.y = x*rdp.combined[0][1] + y*rdp.combined[1][1] + z*rdp.combined[2][1] + rdp.combined[3][1];
|
|
|
|
v.z = x*rdp.combined[0][2] + y*rdp.combined[1][2] + z*rdp.combined[2][2] + rdp.combined[3][2];
|
|
|
|
v.w = x*rdp.combined[0][3] + y*rdp.combined[1][3] + z*rdp.combined[2][3] + rdp.combined[3][3];
|
|
|
|
|
|
|
|
if (fabs(v.w) < 0.001) v.w = 0.001f;
|
|
|
|
v.oow = 1.0f / v.w;
|
|
|
|
v.x_w = v.x * v.oow;
|
|
|
|
v.y_w = v.y * v.oow;
|
|
|
|
v.z_w = v.z * v.oow;
|
|
|
|
|
|
|
|
v.uv_calculated = 0xFFFFFFFF;
|
|
|
|
v.screen_translated = 0;
|
|
|
|
|
|
|
|
v.scr_off = 0;
|
|
|
|
if (v.x < -v.w) v.scr_off |= 1;
|
|
|
|
if (v.x > v.w) v.scr_off |= 2;
|
|
|
|
if (v.y < -v.w) v.scr_off |= 4;
|
|
|
|
if (v.y > v.w) v.scr_off |= 8;
|
|
|
|
if (v.w < 0.1f) v.scr_off |= 16;
|
2016-01-25 11:14:01 +00:00
|
|
|
|
|
|
|
uint8_t *color = &gfx.RDRAM[pd_col_addr + (vertex->idx & 0xff)];
|
|
|
|
|
2017-05-19 20:03:52 +00:00
|
|
|
v.a = color[0];
|
2016-01-25 11:14:01 +00:00
|
|
|
CalculateFog(v);
|
|
|
|
|
|
|
|
if (rdp.geom_mode & 0x00020000)
|
|
|
|
{
|
2017-05-19 20:03:52 +00:00
|
|
|
v.vec[0] = (char)color[3];
|
|
|
|
v.vec[1] = (char)color[2];
|
|
|
|
v.vec[2] = (char)color[1];
|
2016-01-25 11:14:01 +00:00
|
|
|
|
|
|
|
if (rdp.geom_mode & 0x80000)
|
|
|
|
{
|
|
|
|
calc_linear(v);
|
2017-05-19 20:03:52 +00:00
|
|
|
WriteTrace(TraceRDP, TraceVerbose, "calc linear: v%d - u: %f, v: %f", i >> 4, v.ou, v.ov);
|
2016-01-25 11:14:01 +00:00
|
|
|
}
|
|
|
|
else if (rdp.geom_mode & 0x40000)
|
|
|
|
{
|
|
|
|
calc_sphere(v);
|
2017-05-19 20:03:52 +00:00
|
|
|
WriteTrace(TraceRDP, TraceVerbose, "calc sphere: v%d - u: %f, v: %f", i >> 4, v.ou, v.ov);
|
2016-01-25 11:14:01 +00:00
|
|
|
}
|
|
|
|
|
2017-05-19 20:03:52 +00:00
|
|
|
NormalizeVector(v.vec);
|
2016-01-25 11:14:01 +00:00
|
|
|
|
|
|
|
calc_light(v);
|
2016-02-11 09:58:42 +00:00
|
|
|
}
|
2016-01-25 11:14:01 +00:00
|
|
|
else
|
|
|
|
{
|
2017-05-19 20:03:52 +00:00
|
|
|
v.r = color[3];
|
|
|
|
v.g = color[2];
|
|
|
|
v.b = color[1];
|
2016-01-25 11:14:01 +00:00
|
|
|
}
|
2017-05-19 20:03:52 +00:00
|
|
|
WriteTrace(TraceRDP, TraceVerbose, "v%d - x: %f, y: %f, z: %f, w: %f, u: %f, v: %f", i >> 4, v.x, v.y, v.z, v.w, v.ou, v.ov);
|
2016-01-25 11:14:01 +00:00
|
|
|
vertex++;
|
|
|
|
}
|
2017-05-16 07:41:05 +00:00
|
|
|
}
|