2014-03-15 16:59:03 +00:00
|
|
|
// SONIC ROBO BLAST 2
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
2020-02-19 22:08:45 +00:00
|
|
|
// Copyright (C) 1999-2020 by Sonic Team Junior.
|
2014-03-15 16:59:03 +00:00
|
|
|
//
|
|
|
|
// This program is free software distributed under the
|
|
|
|
// terms of the GNU General Public License, version 2.
|
|
|
|
// See the 'LICENSE' file for more details.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
/// \file r_splats.c
|
2020-10-12 03:13:22 +00:00
|
|
|
/// \brief Floor splats
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
#include "r_draw.h"
|
|
|
|
#include "r_main.h"
|
|
|
|
#include "r_splats.h"
|
2020-10-12 03:13:22 +00:00
|
|
|
#include "r_bsp.h"
|
2020-10-19 20:38:02 +00:00
|
|
|
#include "p_local.h"
|
2020-10-14 01:42:07 +00:00
|
|
|
#include "p_slopes.h"
|
2014-03-15 16:59:03 +00:00
|
|
|
#include "w_wad.h"
|
|
|
|
#include "z_zone.h"
|
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
struct rastery_s *prastertab; // for ASM code
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
static struct rastery_s rastertab[MAXVIDHEIGHT];
|
|
|
|
static void prepare_rastertab(void);
|
|
|
|
|
|
|
|
// ==========================================================================
|
2020-10-12 03:13:22 +00:00
|
|
|
// FLOOR SPLATS
|
2014-03-15 16:59:03 +00:00
|
|
|
// ==========================================================================
|
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
#ifdef USEASM
|
|
|
|
void ASMCALL rasterize_segment_tex_asm(INT32 x1, INT32 y1, INT32 x2, INT32 y2, INT32 tv1, INT32 tv2, INT32 tc, INT32 dir);
|
|
|
|
#endif
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
// Lactozilla
|
|
|
|
static void rasterize_segment_tex(INT32 x1, INT32 y1, INT32 x2, INT32 y2, INT32 tv1, INT32 tv2, INT32 tc, INT32 dir)
|
2014-03-15 16:59:03 +00:00
|
|
|
{
|
2020-10-12 03:13:22 +00:00
|
|
|
#ifdef USEASM
|
|
|
|
if (R_ASM)
|
|
|
|
{
|
|
|
|
rasterize_segment_tex_asm(x1, y1, x2, y2, tv1, tv2, tc, dir);
|
2014-03-15 16:59:03 +00:00
|
|
|
return;
|
2020-10-12 03:13:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2014-03-15 16:59:03 +00:00
|
|
|
{
|
2020-10-12 03:13:22 +00:00
|
|
|
fixed_t xs, xe, count;
|
|
|
|
fixed_t dx0, dx1;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
if (y1 == y2)
|
|
|
|
return;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
if (y2 > y1)
|
|
|
|
{
|
|
|
|
count = (y2-y1)+1;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
dx0 = FixedDiv((x2-x1)<<FRACBITS, count<<FRACBITS);
|
|
|
|
dx1 = FixedDiv((tv2-tv1)<<FRACBITS, count<<FRACBITS);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
xs = x1 << FRACBITS;
|
|
|
|
xe = tv1 << FRACBITS;
|
|
|
|
tc <<= FRACBITS;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
if (dir == 0)
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
rastertab[y1].maxx = xs;
|
|
|
|
rastertab[y1].tx2 = xe;
|
|
|
|
rastertab[y1].ty2 = tc;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
xs += dx0;
|
|
|
|
xe += dx1;
|
|
|
|
y1++;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
if (count-- < 1) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
rastertab[y1].maxx = xs;
|
|
|
|
rastertab[y1].tx2 = tc;
|
|
|
|
rastertab[y1].ty2 = xe;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
xs += dx0;
|
|
|
|
xe += dx1;
|
|
|
|
y1++;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
if (count-- < 1) break;
|
|
|
|
}
|
2014-03-15 16:59:03 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-12 03:13:22 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
count = (y1-y2)+1;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
dx0 = FixedDiv((x1-x2)<<FRACBITS, count<<FRACBITS);
|
|
|
|
dx1 = FixedDiv((tv1-tv2)<<FRACBITS, count<<FRACBITS);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
xs = x2 << FRACBITS;
|
|
|
|
xe = tv2 << FRACBITS;
|
|
|
|
tc <<= FRACBITS;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
if (dir == 0)
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
rastertab[y2].minx = xs;
|
|
|
|
rastertab[y2].tx1 = xe;
|
|
|
|
rastertab[y2].ty1 = tc;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
xs += dx0;
|
|
|
|
xe += dx1;
|
|
|
|
y2++;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
if (count-- < 1) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
rastertab[y2].minx = xs;
|
|
|
|
rastertab[y2].tx1 = tc;
|
|
|
|
rastertab[y2].ty1 = xe;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
xs += dx0;
|
|
|
|
xe += dx1;
|
|
|
|
y2++;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
if (count-- < 1) break;
|
|
|
|
}
|
|
|
|
}
|
2014-03-15 16:59:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-05 00:43:16 +00:00
|
|
|
void R_DrawFloorSprite(vissprite_t *spr)
|
2020-10-19 20:35:49 +00:00
|
|
|
{
|
|
|
|
floorsplat_t splat;
|
|
|
|
mobj_t *mobj = spr->mobj;
|
|
|
|
fixed_t tr_x, tr_y, rot_x, rot_y, rot_z;
|
|
|
|
|
|
|
|
vector3_t *v3d;
|
|
|
|
vector2_t v2d[4];
|
|
|
|
vector2_t rotated[4];
|
|
|
|
|
|
|
|
fixed_t x, y;
|
|
|
|
fixed_t w, h;
|
|
|
|
angle_t angle, splatangle;
|
|
|
|
fixed_t ca, sa;
|
|
|
|
fixed_t xscale, yscale;
|
|
|
|
fixed_t xoffset, yoffset;
|
|
|
|
fixed_t leftoffset, topoffset;
|
|
|
|
pslope_t *slope = NULL;
|
|
|
|
INT32 i;
|
|
|
|
|
|
|
|
boolean hflip = (spr->xiscale < 0);
|
|
|
|
boolean vflip = (spr->cut & SC_VFLIP);
|
|
|
|
UINT8 flipflags = 0;
|
|
|
|
|
|
|
|
renderflags_t renderflags = spr->renderflags;
|
|
|
|
|
|
|
|
if (hflip)
|
|
|
|
flipflags |= PICFLAGS_XFLIP;
|
|
|
|
if (vflip)
|
|
|
|
flipflags |= PICFLAGS_YFLIP;
|
|
|
|
|
|
|
|
if (!mobj || P_MobjWasRemoved(mobj))
|
|
|
|
return;
|
|
|
|
|
|
|
|
Patch_GenerateFlat(spr->patch, flipflags);
|
|
|
|
splat.pic = spr->patch->flats[flipflags];
|
|
|
|
if (splat.pic == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
splat.mobj = mobj;
|
|
|
|
splat.width = spr->patch->width;
|
|
|
|
splat.height = spr->patch->height;
|
|
|
|
splat.scale = mobj->scale;
|
|
|
|
|
|
|
|
if (mobj->skin && ((skin_t *)mobj->skin)->flags & SF_HIRES)
|
|
|
|
splat.scale = FixedMul(splat.scale, ((skin_t *)mobj->skin)->highresscale);
|
|
|
|
|
|
|
|
if (spr->rotateflags & SRF_3D || renderflags & RF_NOSPLATBILLBOARD)
|
|
|
|
splatangle = mobj->angle;
|
|
|
|
else
|
|
|
|
splatangle = viewangle;
|
|
|
|
|
|
|
|
if (!(spr->cut & SC_ISROTATED))
|
|
|
|
splatangle += mobj->rollangle;
|
|
|
|
|
|
|
|
splat.angle = -splatangle;
|
|
|
|
splat.angle += ANGLE_90;
|
|
|
|
|
|
|
|
topoffset = spr->spriteyoffset;
|
|
|
|
leftoffset = spr->spritexoffset;
|
|
|
|
if (hflip)
|
|
|
|
leftoffset = ((splat.width * FRACUNIT) - leftoffset);
|
|
|
|
|
|
|
|
xscale = spr->spritexscale;
|
|
|
|
yscale = spr->spriteyscale;
|
|
|
|
|
|
|
|
splat.xscale = FixedMul(splat.scale, xscale);
|
|
|
|
splat.yscale = FixedMul(splat.scale, yscale);
|
|
|
|
|
|
|
|
xoffset = FixedMul(leftoffset, splat.xscale);
|
|
|
|
yoffset = FixedMul(topoffset, splat.yscale);
|
|
|
|
|
|
|
|
x = mobj->x;
|
|
|
|
y = mobj->y;
|
|
|
|
w = (splat.width * splat.xscale);
|
|
|
|
h = (splat.height * splat.yscale);
|
|
|
|
|
|
|
|
splat.x = x;
|
|
|
|
splat.y = y;
|
|
|
|
splat.z = mobj->z;
|
|
|
|
splat.tilted = false;
|
|
|
|
|
|
|
|
// Set positions
|
|
|
|
|
|
|
|
// 3--2
|
|
|
|
// | |
|
|
|
|
// 0--1
|
|
|
|
|
|
|
|
splat.verts[0].x = w - xoffset;
|
|
|
|
splat.verts[0].y = yoffset;
|
|
|
|
|
|
|
|
splat.verts[1].x = -xoffset;
|
|
|
|
splat.verts[1].y = yoffset;
|
|
|
|
|
|
|
|
splat.verts[2].x = -xoffset;
|
|
|
|
splat.verts[2].y = -h + yoffset;
|
|
|
|
|
|
|
|
splat.verts[3].x = w - xoffset;
|
|
|
|
splat.verts[3].y = -h + yoffset;
|
|
|
|
|
|
|
|
angle = -splat.angle;
|
|
|
|
ca = FINECOSINE(angle>>ANGLETOFINESHIFT);
|
|
|
|
sa = FINESINE(angle>>ANGLETOFINESHIFT);
|
|
|
|
|
|
|
|
// Rotate
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
rotated[i].x = FixedMul(splat.verts[i].x, ca) - FixedMul(splat.verts[i].y, sa);
|
|
|
|
rotated[i].y = FixedMul(splat.verts[i].x, sa) + FixedMul(splat.verts[i].y, ca);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (renderflags & (RF_SLOPESPLAT | RF_OBJECTSLOPESPLAT))
|
|
|
|
{
|
|
|
|
pslope_t *standingslope = mobj->standingslope; // The slope that the object is standing on.
|
|
|
|
|
|
|
|
// The slope that was defined for the sprite.
|
|
|
|
if (renderflags & RF_SLOPESPLAT)
|
|
|
|
slope = mobj->floorspriteslope;
|
|
|
|
|
|
|
|
if (standingslope && (renderflags & RF_OBJECTSLOPESPLAT))
|
|
|
|
slope = standingslope;
|
|
|
|
|
|
|
|
// Set splat as tilted
|
|
|
|
splat.tilted = (slope != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (splat.tilted)
|
|
|
|
{
|
|
|
|
// Lactozilla: Just copy the entire slope LMFAOOOO
|
|
|
|
pslope_t *s = &splat.slope;
|
|
|
|
|
|
|
|
s->o.x = slope->o.x;
|
|
|
|
s->o.y = slope->o.y;
|
|
|
|
s->o.z = slope->o.z;
|
|
|
|
|
|
|
|
s->d.x = slope->d.x;
|
|
|
|
s->d.y = slope->d.y;
|
|
|
|
|
|
|
|
s->normal.x = slope->normal.x;
|
|
|
|
s->normal.y = slope->normal.y;
|
|
|
|
s->normal.z = slope->normal.z;
|
|
|
|
|
|
|
|
s->zdelta = slope->zdelta;
|
|
|
|
s->zangle = slope->zangle;
|
|
|
|
s->xydirection = slope->xydirection;
|
|
|
|
|
|
|
|
s->next = NULL;
|
|
|
|
s->flags = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Translate
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
tr_x = rotated[i].x + x;
|
|
|
|
tr_y = rotated[i].y + y;
|
|
|
|
|
|
|
|
if (slope)
|
|
|
|
{
|
|
|
|
rot_z = P_GetSlopeZAt(slope, tr_x, tr_y);
|
|
|
|
splat.verts[i].z = rot_z;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
splat.verts[i].z = splat.z;
|
|
|
|
|
|
|
|
splat.verts[i].x = tr_x;
|
|
|
|
splat.verts[i].y = tr_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
v3d = &splat.verts[i];
|
|
|
|
|
|
|
|
// transform the origin point
|
|
|
|
tr_x = v3d->x - viewx;
|
|
|
|
tr_y = v3d->y - viewy;
|
|
|
|
|
|
|
|
// rotation around vertical y axis
|
|
|
|
rot_x = FixedMul(tr_x, viewsin) - FixedMul(tr_y, viewcos);
|
|
|
|
rot_y = FixedMul(tr_x, viewcos) + FixedMul(tr_y, viewsin);
|
|
|
|
rot_z = v3d->z - viewz;
|
|
|
|
|
|
|
|
if (rot_y < FRACUNIT)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// note: y from view above of map, is distance far away
|
|
|
|
xscale = FixedDiv(projection, rot_y);
|
|
|
|
yscale = -FixedDiv(projectiony, rot_y);
|
|
|
|
|
|
|
|
// projection
|
|
|
|
v2d[i].x = (centerxfrac + FixedMul(rot_x, xscale))>>FRACBITS;
|
|
|
|
v2d[i].y = (centeryfrac + FixedMul(rot_z, yscale))>>FRACBITS;
|
|
|
|
}
|
|
|
|
|
|
|
|
R_RenderFloorSplat(&splat, v2d, spr);
|
|
|
|
}
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// Rasterize the four edges of a floor splat polygon,
|
|
|
|
// fill the polygon with linear interpolation, call span drawer for each
|
|
|
|
// scan line
|
|
|
|
// --------------------------------------------------------------------------
|
2020-10-14 01:42:07 +00:00
|
|
|
void R_RenderFloorSplat(floorsplat_t *pSplat, vector2_t *verts, vissprite_t *vis)
|
2014-03-15 16:59:03 +00:00
|
|
|
{
|
|
|
|
// rasterizing
|
2020-10-15 00:20:37 +00:00
|
|
|
INT32 miny = viewheight + 1, maxy = 0;
|
|
|
|
INT32 y, x1, ry1, x2, y2, i;
|
2020-10-12 03:13:22 +00:00
|
|
|
fixed_t offsetx = 0, offsety = 0;
|
2020-11-05 02:46:34 +00:00
|
|
|
fixed_t planeheight = 0;
|
2020-10-12 03:13:22 +00:00
|
|
|
fixed_t step;
|
|
|
|
|
|
|
|
int spanfunctype = SPANDRAWFUNC_SPRITE;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
prepare_rastertab();
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
#define RASTERPARAMS(vnum1, vnum2, tv1, tv2, tc, dir) \
|
|
|
|
x1 = verts[vnum1].x; \
|
|
|
|
ry1 = verts[vnum1].y; \
|
|
|
|
x2 = verts[vnum2].x; \
|
|
|
|
y2 = verts[vnum2].y; \
|
|
|
|
if (y2 > ry1) \
|
|
|
|
step = FixedDiv(x2-x1, y2-ry1+1); \
|
|
|
|
else if (y2 == ry1) \
|
|
|
|
step = 0; \
|
|
|
|
else \
|
|
|
|
step = FixedDiv(x2-x1, ry1-y2+1); \
|
|
|
|
if (ry1 < 0) { \
|
|
|
|
if (step) { \
|
|
|
|
x1 <<= FRACBITS; \
|
|
|
|
x1 += (-ry1)*step; \
|
|
|
|
x1 >>= FRACBITS; \
|
|
|
|
} \
|
|
|
|
ry1 = 0; \
|
|
|
|
} \
|
|
|
|
if (ry1 >= vid.height) { \
|
|
|
|
if (step) { \
|
|
|
|
x1 <<= FRACBITS; \
|
|
|
|
x1 -= (vid.height-1-ry1)*step; \
|
|
|
|
x1 >>= FRACBITS; \
|
|
|
|
} \
|
|
|
|
ry1 = vid.height - 1; \
|
|
|
|
} \
|
|
|
|
if (y2 < 0) { \
|
|
|
|
if (step) { \
|
|
|
|
x2 <<= FRACBITS; \
|
|
|
|
x2 -= (-y2)*step; \
|
|
|
|
x2 >>= FRACBITS; \
|
|
|
|
} \
|
|
|
|
y2 = 0; \
|
|
|
|
} \
|
|
|
|
if (y2 >= vid.height) { \
|
|
|
|
if (step) { \
|
|
|
|
x2 <<= FRACBITS; \
|
|
|
|
x2 += (vid.height-1-y2)*step; \
|
|
|
|
x2 >>= FRACBITS; \
|
|
|
|
} \
|
|
|
|
y2 = vid.height - 1; \
|
|
|
|
} \
|
|
|
|
rasterize_segment_tex(x1, ry1, x2, y2, tv1, tv2, tc, dir); \
|
|
|
|
if (ry1 < miny) \
|
|
|
|
miny = ry1; \
|
|
|
|
if (ry1 > maxy) \
|
|
|
|
maxy = ry1;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-12 03:13:22 +00:00
|
|
|
// do segment a -> top of texture
|
|
|
|
RASTERPARAMS(3,2,0,pSplat->width-1,0,0);
|
|
|
|
// do segment b -> right side of texture
|
|
|
|
RASTERPARAMS(2,1,0,pSplat->width-1,pSplat->height-1,0);
|
2014-03-15 16:59:03 +00:00
|
|
|
// do segment c -> bottom of texture
|
2020-10-12 03:13:22 +00:00
|
|
|
RASTERPARAMS(1,0,pSplat->width-1,0,pSplat->height-1,0);
|
2014-03-15 16:59:03 +00:00
|
|
|
// do segment d -> left side of texture
|
2020-10-12 03:13:22 +00:00
|
|
|
RASTERPARAMS(0,3,pSplat->width-1,0,0,1);
|
|
|
|
|
2020-10-14 01:42:07 +00:00
|
|
|
ds_source = (UINT8 *)pSplat->pic;
|
2020-10-12 03:13:22 +00:00
|
|
|
ds_flatwidth = pSplat->width;
|
|
|
|
ds_flatheight = pSplat->height;
|
|
|
|
|
|
|
|
if (R_CheckPowersOfTwo())
|
|
|
|
R_CheckFlatLength(ds_flatwidth * ds_flatheight);
|
|
|
|
|
2020-10-14 01:42:07 +00:00
|
|
|
// Lactozilla: I don't know what I'm doing
|
|
|
|
if (pSplat->tilted)
|
|
|
|
{
|
2020-10-14 17:08:25 +00:00
|
|
|
ds_sup = &ds_su[0];
|
|
|
|
ds_svp = &ds_sv[0];
|
|
|
|
ds_szp = &ds_sz[0];
|
2020-10-14 01:42:07 +00:00
|
|
|
R_CalculateSlopeVectors(&pSplat->slope, viewx, viewy, viewz, pSplat->xscale, pSplat->yscale, -pSplat->verts[0].x, pSplat->verts[0].y, viewangle, pSplat->angle, 1.0f);
|
|
|
|
spanfunctype = SPANDRAWFUNC_TILTEDSPRITE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-11-05 02:46:34 +00:00
|
|
|
planeheight = abs(pSplat->z - viewz);
|
|
|
|
|
2020-10-14 01:42:07 +00:00
|
|
|
if (pSplat->angle)
|
|
|
|
{
|
|
|
|
// Add the view offset, rotated by the plane angle.
|
|
|
|
fixed_t a = -pSplat->verts[0].x + viewx;
|
|
|
|
fixed_t b = -pSplat->verts[0].y + viewy;
|
2020-11-05 02:46:34 +00:00
|
|
|
angle_t angle = (pSplat->angle >> ANGLETOFINESHIFT);
|
2020-10-14 01:42:07 +00:00
|
|
|
offsetx = FixedMul(a, FINECOSINE(angle)) - FixedMul(b,FINESINE(angle));
|
|
|
|
offsety = -FixedMul(a, FINESINE(angle)) - FixedMul(b,FINECOSINE(angle));
|
2020-11-05 02:46:34 +00:00
|
|
|
memset(cachedheight, 0, sizeof(cachedheight));
|
2020-10-14 01:42:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
offsetx = viewx - pSplat->verts[0].x;
|
|
|
|
offsety = pSplat->verts[0].y - viewy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-15 17:12:19 +00:00
|
|
|
ds_colormap = vis->colormap;
|
|
|
|
ds_translation = R_GetSpriteTranslation(vis);
|
|
|
|
if (ds_translation == NULL)
|
|
|
|
ds_translation = colormaps;
|
|
|
|
|
|
|
|
if (vis->extra_colormap)
|
|
|
|
{
|
|
|
|
if (!ds_colormap)
|
|
|
|
ds_colormap = vis->extra_colormap->colormap;
|
|
|
|
else
|
|
|
|
ds_colormap = &vis->extra_colormap->colormap[ds_colormap - colormaps];
|
|
|
|
}
|
2020-10-12 03:13:22 +00:00
|
|
|
|
|
|
|
if (vis->transmap)
|
|
|
|
{
|
|
|
|
ds_transmap = vis->transmap;
|
2020-10-14 01:42:07 +00:00
|
|
|
|
|
|
|
if (pSplat->tilted)
|
|
|
|
spanfunctype = SPANDRAWFUNC_TILTEDTRANSSPRITE;
|
|
|
|
else
|
|
|
|
spanfunctype = SPANDRAWFUNC_TRANSSPRITE;
|
2020-10-12 03:13:22 +00:00
|
|
|
}
|
2020-10-15 17:12:19 +00:00
|
|
|
else
|
|
|
|
ds_transmap = NULL;
|
2020-10-12 03:13:22 +00:00
|
|
|
|
|
|
|
if (ds_powersoftwo)
|
|
|
|
spanfunc = spanfuncs[spanfunctype];
|
|
|
|
else
|
|
|
|
spanfunc = spanfuncs_npo2[spanfunctype];
|
|
|
|
|
|
|
|
if (maxy >= vid.height)
|
|
|
|
maxy = vid.height-1;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
for (y = miny; y <= maxy; y++)
|
|
|
|
{
|
2020-10-15 00:20:37 +00:00
|
|
|
boolean cliptab[MAXVIDWIDTH+1];
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
x1 = rastertab[y].minx>>FRACBITS;
|
|
|
|
x2 = rastertab[y].maxx>>FRACBITS;
|
|
|
|
|
2020-10-13 01:07:11 +00:00
|
|
|
if (x1 > x2)
|
|
|
|
{
|
|
|
|
INT32 swap = x1;
|
|
|
|
x1 = x2;
|
|
|
|
x2 = swap;
|
|
|
|
}
|
|
|
|
|
2020-10-13 20:03:50 +00:00
|
|
|
if (x1 == INT16_MIN || x2 == INT16_MAX)
|
|
|
|
continue;
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
if (x1 < 0)
|
|
|
|
x1 = 0;
|
2020-10-15 00:20:37 +00:00
|
|
|
if (x2 >= viewwidth)
|
|
|
|
x2 = viewwidth - 1;
|
|
|
|
|
|
|
|
if (x1 >= viewwidth || x2 < 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (i = x1; i <= x2; i++)
|
|
|
|
cliptab[i] = (y >= mfloorclip[i]);
|
|
|
|
|
|
|
|
// clip left
|
|
|
|
while (cliptab[x1])
|
|
|
|
{
|
|
|
|
x1++;
|
|
|
|
if (x1 >= viewwidth)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// clip right
|
|
|
|
i = x2;
|
|
|
|
|
|
|
|
while (i > x1)
|
|
|
|
{
|
|
|
|
if (cliptab[i])
|
|
|
|
x2 = i-1;
|
|
|
|
i--;
|
|
|
|
if (i < 0)
|
|
|
|
break;
|
|
|
|
}
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-11-05 02:46:34 +00:00
|
|
|
if (x2 < x1)
|
|
|
|
continue;
|
|
|
|
|
2020-10-14 01:42:07 +00:00
|
|
|
if (!pSplat->tilted)
|
2020-10-12 03:13:22 +00:00
|
|
|
{
|
2020-11-05 02:46:34 +00:00
|
|
|
fixed_t xstep, ystep;
|
|
|
|
fixed_t distance, span;
|
|
|
|
|
|
|
|
angle_t angle = (viewangle + pSplat->angle)>>ANGLETOFINESHIFT;
|
|
|
|
angle_t planecos = FINECOSINE(angle);
|
|
|
|
angle_t planesin = FINESINE(angle);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-10-14 01:42:07 +00:00
|
|
|
if (planeheight != cachedheight[y])
|
2020-10-12 03:13:22 +00:00
|
|
|
{
|
2020-10-14 01:42:07 +00:00
|
|
|
cachedheight[y] = planeheight;
|
|
|
|
distance = cacheddistance[y] = FixedMul(planeheight, yslope[y]);
|
2020-11-05 02:46:34 +00:00
|
|
|
span = abs(centery - y);
|
2020-10-14 01:42:07 +00:00
|
|
|
|
2020-11-05 02:46:34 +00:00
|
|
|
if (span) // don't divide by zero
|
|
|
|
{
|
|
|
|
xstep = FixedMul(planesin, planeheight) / span;
|
|
|
|
ystep = FixedMul(planecos, planeheight) / span;
|
|
|
|
}
|
|
|
|
else
|
2020-10-12 03:13:22 +00:00
|
|
|
{
|
2020-11-05 02:46:34 +00:00
|
|
|
// ah
|
|
|
|
xstep = FRACUNIT;
|
|
|
|
ystep = FRACUNIT;
|
2020-10-12 03:13:22 +00:00
|
|
|
}
|
2020-11-05 02:46:34 +00:00
|
|
|
|
|
|
|
cachedxstep[y] = xstep;
|
|
|
|
cachedystep[y] = ystep;
|
2020-10-12 03:13:22 +00:00
|
|
|
}
|
2020-10-14 01:42:07 +00:00
|
|
|
else
|
2014-03-15 16:59:03 +00:00
|
|
|
{
|
2020-10-14 01:42:07 +00:00
|
|
|
distance = cacheddistance[y];
|
|
|
|
xstep = cachedxstep[y];
|
|
|
|
ystep = cachedystep[y];
|
2014-03-15 16:59:03 +00:00
|
|
|
}
|
|
|
|
|
2020-10-14 01:42:07 +00:00
|
|
|
ds_xstep = FixedDiv(xstep, pSplat->xscale);
|
|
|
|
ds_ystep = FixedDiv(ystep, pSplat->yscale);
|
|
|
|
|
|
|
|
ds_xfrac = FixedDiv(offsetx + FixedMul(planecos, distance) + (x1 - centerx) * xstep, pSplat->xscale);
|
|
|
|
ds_yfrac = FixedDiv(offsety - FixedMul(planesin, distance) + (x1 - centerx) * ystep, pSplat->yscale);
|
|
|
|
}
|
2020-10-12 03:13:22 +00:00
|
|
|
|
2020-11-05 02:46:34 +00:00
|
|
|
ds_y = y;
|
|
|
|
ds_x1 = x1;
|
|
|
|
ds_x2 = x2;
|
|
|
|
spanfunc();
|
2020-10-12 03:13:22 +00:00
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
rastertab[y].minx = INT32_MAX;
|
|
|
|
rastertab[y].maxx = INT32_MIN;
|
|
|
|
}
|
|
|
|
|
2020-10-14 01:42:07 +00:00
|
|
|
if (pSplat->angle && !pSplat->tilted)
|
2020-10-12 03:13:22 +00:00
|
|
|
memset(cachedheight, 0, sizeof(cachedheight));
|
2014-03-15 16:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void prepare_rastertab(void)
|
|
|
|
{
|
2020-10-12 03:13:22 +00:00
|
|
|
INT32 i;
|
|
|
|
prastertab = rastertab;
|
|
|
|
for (i = 0; i < vid.height; i++)
|
2014-03-15 16:59:03 +00:00
|
|
|
{
|
2020-10-12 03:13:22 +00:00
|
|
|
rastertab[i].minx = INT32_MAX;
|
|
|
|
rastertab[i].maxx = INT32_MIN;
|
2014-03-15 16:59:03 +00:00
|
|
|
}
|
|
|
|
}
|