2020-05-01 10:51:44 +02:00
|
|
|
#include "THISDUST.H"
|
|
|
|
|
|
|
|
#include "LIBGTE.H"
|
|
|
|
#include "LIBGPU.H"
|
|
|
|
#include "INLINE_C.H"
|
|
|
|
#include "GTEREG.H"
|
|
|
|
|
|
|
|
#include "GAME/ASM/ASMTEST.H"
|
|
|
|
#include "GAME/C/CONVERT.H"
|
|
|
|
#include "GAME/C/CAMERA.H"
|
|
|
|
#include "GAME/C/DRAW.H"
|
|
|
|
#include "GAME/C/SYSTEM.H"
|
2020-05-06 13:22:54 +02:00
|
|
|
#include "GAME/C/PRES.H"
|
|
|
|
#include "GAME/C/SPOOL.H"
|
2020-05-01 10:51:44 +02:00
|
|
|
|
2020-05-06 13:22:54 +02:00
|
|
|
int gDisplayDrawStats = 0;
|
2020-05-01 10:51:44 +02:00
|
|
|
|
|
|
|
struct LineDef_t
|
|
|
|
{
|
|
|
|
VECTOR posA, posB;
|
|
|
|
CVECTOR color;
|
|
|
|
};
|
|
|
|
|
|
|
|
LineDef_t gDebug_Lines[512];
|
|
|
|
int gDebug_numLines = 0;
|
|
|
|
|
|
|
|
void DrawDebugOverlays()
|
|
|
|
{
|
|
|
|
VECTOR _zerov = { 0 };
|
|
|
|
|
|
|
|
while(gDebug_numLines > 0)
|
|
|
|
{
|
|
|
|
LineDef_t& ld = gDebug_Lines[gDebug_numLines-1];
|
|
|
|
|
|
|
|
gte_SetTransVector(&_zerov);
|
|
|
|
gte_SetRotMatrix(&inv_camera_matrix);
|
|
|
|
|
|
|
|
SVECTOR a, b;
|
|
|
|
a.vx = ld.posA.vx - camera_position.vx;
|
|
|
|
a.vy = ld.posA.vy - camera_position.vy;
|
|
|
|
a.vz = ld.posA.vz - camera_position.vz;
|
|
|
|
|
|
|
|
b.vx = ld.posB.vx - camera_position.vx;
|
|
|
|
b.vy = ld.posB.vy - camera_position.vy;
|
|
|
|
b.vz = ld.posB.vz - camera_position.vz;
|
|
|
|
|
2020-05-23 20:17:30 +02:00
|
|
|
gte_ldv3(&a, &b, &b);
|
2020-05-01 10:51:44 +02:00
|
|
|
|
2020-05-23 20:17:30 +02:00
|
|
|
gte_rtpt();
|
|
|
|
gte_avsz4();
|
|
|
|
|
|
|
|
int z;
|
|
|
|
gte_stopz(&z);
|
2020-05-01 10:51:44 +02:00
|
|
|
|
2020-05-23 20:17:30 +02:00
|
|
|
if (z > 0)
|
2020-05-10 11:30:24 +02:00
|
|
|
{
|
|
|
|
LINE_F2* line = (LINE_F2*)current->primptr;
|
|
|
|
setLineF2(line);
|
|
|
|
setSemiTrans(line, 1);
|
2020-05-22 10:51:20 +02:00
|
|
|
|
|
|
|
gte_stsxy0(&line->x0)
|
|
|
|
gte_stsxy1(&line->x1);
|
|
|
|
|
2020-05-10 11:30:24 +02:00
|
|
|
line->r0 = ld.color.r;
|
|
|
|
line->g0 = ld.color.g;
|
|
|
|
line->b0 = ld.color.b;
|
|
|
|
|
|
|
|
addPrim(current->ot + 2, line);
|
|
|
|
|
|
|
|
current->primptr += sizeof(LINE_F2);
|
|
|
|
}
|
2020-05-01 10:51:44 +02:00
|
|
|
gDebug_numLines--;
|
|
|
|
}
|
|
|
|
gDebug_numLines = 0;
|
2020-05-06 13:22:54 +02:00
|
|
|
|
2020-05-10 11:30:24 +02:00
|
|
|
DR_TPAGE* tp = (DR_TPAGE*)current->primptr;
|
|
|
|
setDrawTPage(tp, 0, 0, 0);
|
|
|
|
addPrim(current->ot + 2, tp);
|
|
|
|
current->primptr += sizeof(DR_TPAGE);
|
|
|
|
|
2020-05-06 13:22:54 +02:00
|
|
|
char tempBuf[128];
|
|
|
|
|
|
|
|
int primTabLeft = current->primptr - current->primtab;
|
|
|
|
|
|
|
|
if (gDisplayDrawStats)
|
|
|
|
{
|
|
|
|
sprintf(tempBuf, "Primtab: %d of %d", primTabLeft, 0x1a180);
|
|
|
|
PrintString(tempBuf, 10, 80);
|
|
|
|
|
|
|
|
extern volatile int spoolactive;
|
|
|
|
sprintf(tempBuf, "Spooling: %d spec: %d, active: %d", doSpooling, allowSpecSpooling, spoolactive);
|
|
|
|
PrintString(tempBuf, 10, 90);
|
|
|
|
}
|
2020-05-01 10:51:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Debug_AddLine(VECTOR& pointA, VECTOR& pointB, CVECTOR& color)
|
|
|
|
{
|
2020-05-06 12:12:06 +02:00
|
|
|
if (gDebug_numLines + 1 > 512)
|
|
|
|
return;
|
|
|
|
|
2020-05-01 10:51:44 +02:00
|
|
|
LineDef_t& ld = gDebug_Lines[gDebug_numLines++];
|
|
|
|
ld.posA = pointA;
|
|
|
|
ld.posB = pointB;
|
|
|
|
ld.color = color;
|
2020-05-02 05:11:44 +02:00
|
|
|
|
|
|
|
ld.posA.vy *= -1;
|
|
|
|
ld.posB.vy *= -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Debug_AddLineOfs(VECTOR& pointA, VECTOR& pointB, VECTOR& ofs, CVECTOR& color)
|
|
|
|
{
|
2020-05-06 12:12:06 +02:00
|
|
|
if (gDebug_numLines + 1 > 512)
|
|
|
|
return;
|
|
|
|
|
2020-05-02 05:11:44 +02:00
|
|
|
LineDef_t& ld = gDebug_Lines[gDebug_numLines++];
|
|
|
|
ld.posA = pointA;
|
|
|
|
ld.posB = pointB;
|
|
|
|
ld.color = color;
|
|
|
|
|
|
|
|
ld.posA.vx += ofs.vx;
|
|
|
|
ld.posA.vy += ofs.vy;
|
|
|
|
ld.posA.vz += ofs.vz;
|
|
|
|
|
|
|
|
ld.posB.vx += ofs.vx;
|
|
|
|
ld.posB.vy += ofs.vy;
|
|
|
|
ld.posB.vz += ofs.vz;
|
|
|
|
|
|
|
|
ld.posA.vy *= -1;
|
|
|
|
ld.posB.vy *= -1;
|
2020-05-01 10:51:44 +02:00
|
|
|
}
|