gzdoom-gles/src/swrenderer/scene/r_bsp.cpp

864 lines
26 KiB
C++
Raw Normal View History

2016-03-01 15:47:10 +00:00
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id:$
//
// Copyright (C) 1993-1996 by id Software, Inc.
//
// This source is available for distribution and/or modification
// only under the terms of the DOOM Source Code License as
// published by id Software. All rights reserved.
//
// The source is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
// for more details.
//
// DESCRIPTION:
// BSP traversal, handling of LineSegs for rendering.
//
//-----------------------------------------------------------------------------
#include <stdlib.h>
#include "templates.h"
#include "doomdef.h"
#include "m_bbox.h"
#include "i_system.h"
#include "p_lnspec.h"
#include "p_setup.h"
2016-12-27 05:31:55 +00:00
#include "swrenderer/r_main.h"
#include "swrenderer/drawers/r_draw.h"
#include "swrenderer/plane/r_visibleplane.h"
#include "swrenderer/things/r_sprite.h"
2016-12-31 11:45:07 +00:00
#include "swrenderer/things/r_particle.h"
#include "swrenderer/segments/r_clipsegment.h"
2017-01-01 09:28:35 +00:00
#include "swrenderer/line/r_wallsetup.h"
#include "r_3dfloors.h"
#include "r_portal.h"
2016-03-01 15:47:10 +00:00
#include "a_sharedglobal.h"
#include "g_level.h"
#include "p_effect.h"
2017-01-04 14:39:47 +00:00
#include "c_console.h"
2016-03-01 15:47:10 +00:00
// State.
#include "doomstat.h"
#include "r_state.h"
#include "r_bsp.h"
#include "v_palette.h"
#include "r_sky.h"
#include "po_man.h"
#include "r_data/colormaps.h"
#include "g_levellocals.h"
2016-03-01 15:47:10 +00:00
EXTERN_CVAR(Bool, r_fullbrightignoresectorcolor);
2016-12-22 04:20:53 +00:00
namespace swrenderer
{
2017-01-04 14:39:47 +00:00
RenderBSP *RenderBSP::Instance()
{
2017-01-04 14:39:47 +00:00
static RenderBSP bsp;
return &bsp;
}
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
sector_t *RenderBSP::FakeFlat(sector_t *sec, sector_t *tempsec, int *floorlightlevel, int *ceilinglightlevel, seg_t *backline, int backx1, int backx2, double frontcz1, double frontcz2)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
// If player's view height is underneath fake floor, lower the
// drawn ceiling to be just under the floor height, and replace
// the drawn floor and ceiling textures, and light level, with
// the control sector's.
//
// Similar for ceiling, only reflected.
// [RH] allow per-plane lighting
if (floorlightlevel != nullptr)
2017-01-04 14:39:47 +00:00
{
*floorlightlevel = sec->GetFloorLight();
}
2016-03-01 15:47:10 +00:00
if (ceilinglightlevel != nullptr)
2017-01-04 14:39:47 +00:00
{
*ceilinglightlevel = sec->GetCeilingLight();
}
2016-03-01 15:47:10 +00:00
2017-01-04 18:03:33 +00:00
FakeSide = WaterFakeSide::Center;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
const sector_t *s = sec->GetHeightSec();
if (s != nullptr)
2017-01-04 14:39:47 +00:00
{
sector_t *heightsec = viewsector->heightsec;
bool underwater = r_fakingunderwater ||
(heightsec && heightsec->floorplane.PointOnSide(ViewPos) <= 0);
bool doorunderwater = false;
int diffTex = (s->MoreFlags & SECF_CLIPFAKEPLANES);
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
// Replace sector being drawn with a copy to be hacked
*tempsec = *sec;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
// Replace floor and ceiling height with control sector's heights.
if (diffTex)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
if (s->floorplane.CopyPlaneIfValid(&tempsec->floorplane, &sec->ceilingplane))
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
tempsec->SetTexture(sector_t::floor, s->GetTexture(sector_t::floor), false);
}
else if (s->MoreFlags & SECF_FAKEFLOORONLY)
{
if (underwater)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
tempsec->ColorMap = s->ColorMap;
if (!(s->MoreFlags & SECF_NOFAKELIGHT))
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
tempsec->lightlevel = s->lightlevel;
2016-03-01 15:47:10 +00:00
if (floorlightlevel != nullptr)
2017-01-04 14:39:47 +00:00
{
*floorlightlevel = s->GetFloorLight();
}
if (ceilinglightlevel != nullptr)
2017-01-04 14:39:47 +00:00
{
*ceilinglightlevel = s->GetCeilingLight();
}
2016-03-01 15:47:10 +00:00
}
2017-01-04 18:03:33 +00:00
FakeSide = WaterFakeSide::BelowFloor;
2017-01-04 14:39:47 +00:00
return tempsec;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
return sec;
2016-03-01 15:47:10 +00:00
}
}
2017-01-04 14:39:47 +00:00
else
{
tempsec->floorplane = s->floorplane;
}
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
if (!(s->MoreFlags & SECF_FAKEFLOORONLY))
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
if (diffTex)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
if (s->ceilingplane.CopyPlaneIfValid(&tempsec->ceilingplane, &sec->floorplane))
{
tempsec->SetTexture(sector_t::ceiling, s->GetTexture(sector_t::ceiling), false);
}
}
else
{
tempsec->ceilingplane = s->ceilingplane;
2016-03-01 15:47:10 +00:00
}
}
2017-01-04 14:39:47 +00:00
double refceilz = s->ceilingplane.ZatPoint(ViewPos);
double orgceilz = sec->ceilingplane.ZatPoint(ViewPos);
2016-03-01 15:47:10 +00:00
#if 1
2017-01-04 14:39:47 +00:00
// [RH] Allow viewing underwater areas through doors/windows that
// are underwater but not in a water sector themselves.
// Only works if you cannot see the top surface of any deep water
// sectors at the same time.
if (backline && !r_fakingunderwater && backline->frontsector->heightsec == nullptr)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
if (frontcz1 <= s->floorplane.ZatPoint(backline->v1) &&
frontcz2 <= s->floorplane.ZatPoint(backline->v2))
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
// Check that the window is actually visible
for (int z = backx1; z < backx2; ++z)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
if (floorclip[z] > ceilingclip[z])
{
doorunderwater = true;
r_fakingunderwater = true;
break;
}
2016-03-01 15:47:10 +00:00
}
}
}
#endif
2017-01-04 14:39:47 +00:00
if (underwater || doorunderwater)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
tempsec->floorplane = sec->floorplane;
tempsec->ceilingplane = s->floorplane;
tempsec->ceilingplane.FlipVert();
tempsec->ceilingplane.ChangeHeight(-1 / 65536.);
tempsec->ColorMap = s->ColorMap;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
// killough 11/98: prevent sudden light changes from non-water sectors:
if ((underwater && !backline) || doorunderwater)
{ // head-below-floor hack
tempsec->SetTexture(sector_t::floor, diffTex ? sec->GetTexture(sector_t::floor) : s->GetTexture(sector_t::floor), false);
tempsec->planes[sector_t::floor].xform = s->planes[sector_t::floor].xform;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
tempsec->ceilingplane = s->floorplane;
tempsec->ceilingplane.FlipVert();
tempsec->ceilingplane.ChangeHeight(-1 / 65536.);
if (s->GetTexture(sector_t::ceiling) == skyflatnum)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
tempsec->floorplane = tempsec->ceilingplane;
tempsec->floorplane.FlipVert();
tempsec->floorplane.ChangeHeight(+1 / 65536.);
tempsec->SetTexture(sector_t::ceiling, tempsec->GetTexture(sector_t::floor), false);
tempsec->planes[sector_t::ceiling].xform = tempsec->planes[sector_t::floor].xform;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
else
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
tempsec->SetTexture(sector_t::ceiling, diffTex ? s->GetTexture(sector_t::floor) : s->GetTexture(sector_t::ceiling), false);
tempsec->planes[sector_t::ceiling].xform = s->planes[sector_t::ceiling].xform;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
if (!(s->MoreFlags & SECF_NOFAKELIGHT))
{
tempsec->lightlevel = s->lightlevel;
2016-03-01 15:47:10 +00:00
if (floorlightlevel != nullptr)
2017-01-04 14:39:47 +00:00
{
*floorlightlevel = s->GetFloorLight();
}
if (ceilinglightlevel != nullptr)
2017-01-04 14:39:47 +00:00
{
*ceilinglightlevel = s->GetCeilingLight();
}
}
2017-01-04 18:03:33 +00:00
FakeSide = WaterFakeSide::BelowFloor;
2017-01-04 14:39:47 +00:00
}
else if (heightsec && heightsec->ceilingplane.PointOnSide(ViewPos) <= 0 &&
orgceilz > refceilz && !(s->MoreFlags & SECF_FAKEFLOORONLY))
{ // Above-ceiling hack
tempsec->ceilingplane = s->ceilingplane;
tempsec->floorplane = s->ceilingplane;
tempsec->floorplane.FlipVert();
tempsec->floorplane.ChangeHeight(+1 / 65536.);
tempsec->ColorMap = s->ColorMap;
tempsec->ColorMap = s->ColorMap;
tempsec->SetTexture(sector_t::ceiling, diffTex ? sec->GetTexture(sector_t::ceiling) : s->GetTexture(sector_t::ceiling), false);
tempsec->SetTexture(sector_t::floor, s->GetTexture(sector_t::ceiling), false);
tempsec->planes[sector_t::ceiling].xform = tempsec->planes[sector_t::floor].xform = s->planes[sector_t::ceiling].xform;
if (s->GetTexture(sector_t::floor) != skyflatnum)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
tempsec->ceilingplane = sec->ceilingplane;
tempsec->SetTexture(sector_t::floor, s->GetTexture(sector_t::floor), false);
tempsec->planes[sector_t::floor].xform = s->planes[sector_t::floor].xform;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
if (!(s->MoreFlags & SECF_NOFAKELIGHT))
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
tempsec->lightlevel = s->lightlevel;
if (floorlightlevel != nullptr)
2017-01-04 14:39:47 +00:00
{
*floorlightlevel = s->GetFloorLight();
}
if (ceilinglightlevel != nullptr)
2017-01-04 14:39:47 +00:00
{
*ceilinglightlevel = s->GetCeilingLight();
}
2016-03-01 15:47:10 +00:00
}
2017-01-04 18:03:33 +00:00
FakeSide = WaterFakeSide::AboveCeiling;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
sec = tempsec; // Use other sector
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
return sec;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
// Checks BSP node/subtree bounding box.
// Returns true if some part of the bbox might be visible.
bool RenderBSP::CheckBBox(float *bspcoord)
2017-01-01 09:28:35 +00:00
{
2017-01-04 14:39:47 +00:00
static const int checkcoord[12][4] =
{
{ 3,0,2,1 },
{ 3,0,2,0 },
{ 3,1,2,0 },
{ 0 },
{ 2,0,2,1 },
{ 0,0,0,0 },
{ 3,1,3,0 },
{ 0 },
{ 2,0,3,1 },
{ 2,1,3,1 },
{ 2,1,3,0 }
};
int boxx;
int boxy;
int boxpos;
double x1, y1, x2, y2;
double rx1, ry1, rx2, ry2;
int sx1, sx2;
// Find the corners of the box
// that define the edges from current viewpoint.
if (ViewPos.X <= bspcoord[BOXLEFT])
boxx = 0;
else if (ViewPos.X < bspcoord[BOXRIGHT])
boxx = 1;
else
boxx = 2;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
if (ViewPos.Y >= bspcoord[BOXTOP])
boxy = 0;
else if (ViewPos.Y > bspcoord[BOXBOTTOM])
boxy = 1;
else
boxy = 2;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
boxpos = (boxy << 2) + boxx;
if (boxpos == 5)
return true;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
x1 = bspcoord[checkcoord[boxpos][0]] - ViewPos.X;
y1 = bspcoord[checkcoord[boxpos][1]] - ViewPos.Y;
x2 = bspcoord[checkcoord[boxpos][2]] - ViewPos.X;
y2 = bspcoord[checkcoord[boxpos][3]] - ViewPos.Y;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
// check clip list for an open space
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
// Sitting on a line?
if (y1 * (x1 - x2) + x1 * (y2 - y1) >= -EQUAL_EPSILON)
return true;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
rx1 = x1 * ViewSin - y1 * ViewCos;
rx2 = x2 * ViewSin - y2 * ViewCos;
ry1 = x1 * ViewTanCos + y1 * ViewTanSin;
ry2 = x2 * ViewTanCos + y2 * ViewTanSin;
2017-01-05 03:55:26 +00:00
if (RenderPortal::Instance()->MirrorFlags & RF_XFLIP)
2017-01-04 14:39:47 +00:00
{
double t = -rx1;
rx1 = -rx2;
rx2 = t;
swapvalues(ry1, ry2);
}
if (rx1 >= -ry1)
{
if (rx1 > ry1) return false; // left edge is off the right side
if (ry1 == 0) return false;
sx1 = xs_RoundToInt(CenterX + rx1 * CenterX / ry1);
}
else
{
if (rx2 < -ry2) return false; // wall is off the left side
if (rx1 - rx2 - ry2 + ry1 == 0) return false; // wall does not intersect view volume
sx1 = 0;
}
if (rx2 <= ry2)
{
if (rx2 < -ry2) return false; // right edge is off the left side
if (ry2 == 0) return false;
sx2 = xs_RoundToInt(CenterX + rx2 * CenterX / ry2);
}
else
{
if (rx1 > ry1) return false; // wall is off the right side
if (ry2 - ry1 - rx2 + rx1 == 0) return false; // wall does not intersect view volume
sx2 = viewwidth;
}
// Find the first clippost that touches the source post
// (adjacent pixels are touching).
return R_IsWallSegmentVisible(sx1, sx2);
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
void RenderBSP::AddPolyobjs(subsector_t *sub)
2016-03-01 15:47:10 +00:00
{
if (sub->BSP == nullptr || sub->BSP->bDirty)
2017-01-04 14:39:47 +00:00
{
sub->BuildPolyBSP();
}
if (sub->BSP->Nodes.Size() == 0)
{
RenderSubsector(&sub->BSP->Subsectors[0]);
}
else
{
RenderBSPNode(&sub->BSP->Nodes.Last());
}
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
// kg3D - add fake segs, never rendered
void RenderBSP::FakeDrawLoop(subsector_t *sub, visplane_t *floorplane, visplane_t *ceilingplane)
{
int count;
seg_t* line;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
count = sub->numlines;
line = sub->firstline;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
while (count--)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
if ((line->sidedef) && !(line->sidedef->Flags & WALLF_POLYOBJ))
{
renderline.Render(line, InSubsector, frontsector, nullptr, floorplane, ceilingplane);
}
line++;
2016-03-01 15:47:10 +00:00
}
}
2017-01-04 14:39:47 +00:00
void RenderBSP::RenderSubsector(subsector_t *sub)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
// Determine floor/ceiling planes.
// Add sprites of things in sector.
// Draw one or more line segments.
int count;
seg_t* line;
sector_t tempsec; // killough 3/7/98: deep water hack
int floorlightlevel; // killough 3/16/98: set floor lightlevel
int ceilinglightlevel; // killough 4/11/98
bool outersubsector;
int fll, cll, position;
FSectorPortal *portal;
// kg3D - fake floor stuff
visplane_t *backupfp;
visplane_t *backupcp;
//secplane_t templane;
lightlist_t *light;
if (InSubsector != nullptr)
{ // InSubsector is not nullptr. This means we are rendering from a mini-BSP.
2017-01-04 14:39:47 +00:00
outersubsector = false;
}
else
{
outersubsector = true;
InSubsector = sub;
}
2016-03-01 15:47:10 +00:00
#ifdef RANGECHECK
2017-01-04 14:39:47 +00:00
if (outersubsector && sub - subsectors >= (ptrdiff_t)numsubsectors)
I_Error("RenderSubsector: ss %ti with numss = %i", sub - subsectors, numsubsectors);
2016-03-01 15:47:10 +00:00
#endif
assert(sub->sector != nullptr);
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
if (sub->polys)
{ // Render the polyobjs in the subsector first
AddPolyobjs(sub);
if (outersubsector)
{
InSubsector = nullptr;
2017-01-04 14:39:47 +00:00
}
return;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
frontsector = sub->sector;
frontsector->MoreFlags |= SECF_DRAWN;
count = sub->numlines;
line = sub->firstline;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
// killough 3/8/98, 4/4/98: Deep water / fake ceiling effect
frontsector = FakeFlat(frontsector, &tempsec, &floorlightlevel, &ceilinglightlevel, nullptr, 0, 0, 0, 0);
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
fll = floorlightlevel;
cll = ceilinglightlevel;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
// [RH] set foggy flag
foggy = level.fadeto || frontsector->ColorMap->Fade || (level.flags & LEVEL_HASFADETABLE);
r_actualextralight = foggy ? 0 : extralight << 4;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
// kg3D - fake lights
if (fixedlightlev < 0 && frontsector->e && frontsector->e->XFloor.lightlist.Size())
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
light = P_GetPlaneLight(frontsector, &frontsector->ceilingplane, false);
basecolormap = light->extra_colormap;
// If this is the real ceiling, don't discard plane lighting R_FakeFlat()
// accounted for.
if (light->p_lightlevel != &frontsector->lightlevel)
{
ceilinglightlevel = *light->p_lightlevel;
}
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
else
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
basecolormap = (r_fullbrightignoresectorcolor && fixedlightlev >= 0) ? &FullNormalLight : frontsector->ColorMap;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
portal = frontsector->ValidatePortal(sector_t::ceiling);
visplane_t *ceilingplane = frontsector->ceilingplane.PointOnSide(ViewPos) > 0 ||
frontsector->GetTexture(sector_t::ceiling) == skyflatnum ||
portal != nullptr ||
2017-01-04 14:39:47 +00:00
(frontsector->heightsec &&
!(frontsector->heightsec->MoreFlags & SECF_IGNOREHEIGHTSEC) &&
frontsector->heightsec->GetTexture(sector_t::floor) == skyflatnum) ?
R_FindPlane(frontsector->ceilingplane, // killough 3/8/98
frontsector->GetTexture(sector_t::ceiling),
ceilinglightlevel + r_actualextralight, // killough 4/11/98
frontsector->GetAlpha(sector_t::ceiling),
!!(frontsector->GetFlags(sector_t::ceiling) & PLANEF_ADDITIVE),
frontsector->planes[sector_t::ceiling].xform,
frontsector->sky,
portal
) : nullptr;
2017-01-04 14:39:47 +00:00
if (ceilingplane)
R_AddPlaneLights(ceilingplane, frontsector->lighthead);
if (fixedlightlev < 0 && frontsector->e && frontsector->e->XFloor.lightlist.Size())
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
light = P_GetPlaneLight(frontsector, &frontsector->floorplane, false);
basecolormap = light->extra_colormap;
// If this is the real floor, don't discard plane lighting R_FakeFlat()
// accounted for.
if (light->p_lightlevel != &frontsector->lightlevel)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
floorlightlevel = *light->p_lightlevel;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
}
else
{
basecolormap = (r_fullbrightignoresectorcolor && fixedlightlev >= 0) ? &FullNormalLight : frontsector->ColorMap;
}
// killough 3/7/98: Add (x,y) offsets to flats, add deep water check
// killough 3/16/98: add floorlightlevel
// killough 10/98: add support for skies transferred from sidedefs
portal = frontsector->ValidatePortal(sector_t::floor);
visplane_t *floorplane = frontsector->floorplane.PointOnSide(ViewPos) > 0 || // killough 3/7/98
frontsector->GetTexture(sector_t::floor) == skyflatnum ||
portal != nullptr ||
2017-01-04 14:39:47 +00:00
(frontsector->heightsec &&
!(frontsector->heightsec->MoreFlags & SECF_IGNOREHEIGHTSEC) &&
frontsector->heightsec->GetTexture(sector_t::ceiling) == skyflatnum) ?
R_FindPlane(frontsector->floorplane,
frontsector->GetTexture(sector_t::floor),
floorlightlevel + r_actualextralight, // killough 3/16/98
frontsector->GetAlpha(sector_t::floor),
!!(frontsector->GetFlags(sector_t::floor) & PLANEF_ADDITIVE),
frontsector->planes[sector_t::floor].xform,
frontsector->sky,
portal
) : nullptr;
2017-01-04 14:39:47 +00:00
if (floorplane)
R_AddPlaneLights(floorplane, frontsector->lighthead);
// kg3D - fake planes rendering
if (r_3dfloors && frontsector->e && frontsector->e->XFloor.ffloors.Size())
{
backupfp = floorplane;
backupcp = ceilingplane;
2017-01-04 17:54:14 +00:00
Clip3DFloors *clip3d = Clip3DFloors::Instance();
2017-01-04 14:39:47 +00:00
// first check all floors
for (int i = 0; i < (int)frontsector->e->XFloor.ffloors.Size(); i++)
2016-03-01 15:47:10 +00:00
{
2017-01-04 17:54:14 +00:00
clip3d->fakeFloor = frontsector->e->XFloor.ffloors[i];
if (!(clip3d->fakeFloor->flags & FF_EXISTS)) continue;
if (!clip3d->fakeFloor->model) continue;
if (clip3d->fakeFloor->bottom.plane->isSlope()) continue;
if (!(clip3d->fakeFloor->flags & FF_NOSHADE) || (clip3d->fakeFloor->flags & (FF_RENDERPLANES | FF_RENDERSIDES)))
2016-03-01 15:47:10 +00:00
{
2017-01-04 17:54:14 +00:00
clip3d->AddHeight(clip3d->fakeFloor->top.plane, frontsector);
2017-01-04 14:39:47 +00:00
}
2017-01-04 17:54:14 +00:00
if (!(clip3d->fakeFloor->flags & FF_RENDERPLANES)) continue;
if (clip3d->fakeFloor->alpha == 0) continue;
if (clip3d->fakeFloor->flags & FF_THISINSIDE && clip3d->fakeFloor->flags & FF_INVERTSECTOR) continue;
clip3d->fakeAlpha = MIN<fixed_t>(Scale(clip3d->fakeFloor->alpha, OPAQUE, 255), OPAQUE);
if (clip3d->fakeFloor->validcount != validcount)
2016-03-01 15:47:10 +00:00
{
2017-01-04 17:54:14 +00:00
clip3d->fakeFloor->validcount = validcount;
clip3d->NewClip();
2016-03-01 15:47:10 +00:00
}
2017-01-04 17:54:14 +00:00
double fakeHeight = clip3d->fakeFloor->top.plane->ZatPoint(frontsector->centerspot);
2017-01-04 14:39:47 +00:00
if (fakeHeight < ViewPos.Z &&
fakeHeight > frontsector->floorplane.ZatPoint(frontsector->centerspot))
{
2017-01-04 17:54:14 +00:00
clip3d->fake3D = FAKE3D_FAKEFLOOR;
tempsec = *clip3d->fakeFloor->model;
tempsec.floorplane = *clip3d->fakeFloor->top.plane;
tempsec.ceilingplane = *clip3d->fakeFloor->bottom.plane;
if (!(clip3d->fakeFloor->flags & FF_THISINSIDE) && !(clip3d->fakeFloor->flags & FF_INVERTSECTOR))
2017-01-04 14:39:47 +00:00
{
tempsec.SetTexture(sector_t::floor, tempsec.GetTexture(sector_t::ceiling));
position = sector_t::ceiling;
}
else position = sector_t::floor;
frontsector = &tempsec;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
if (fixedlightlev < 0 && sub->sector->e->XFloor.lightlist.Size())
{
light = P_GetPlaneLight(sub->sector, &frontsector->floorplane, false);
basecolormap = light->extra_colormap;
floorlightlevel = *light->p_lightlevel;
}
2016-03-01 15:47:10 +00:00
ceilingplane = nullptr;
2017-01-04 14:39:47 +00:00
floorplane = R_FindPlane(frontsector->floorplane,
frontsector->GetTexture(sector_t::floor),
floorlightlevel + r_actualextralight, // killough 3/16/98
frontsector->GetAlpha(sector_t::floor),
2017-01-04 17:54:14 +00:00
!!(clip3d->fakeFloor->flags & FF_ADDITIVETRANS),
2017-01-04 14:39:47 +00:00
frontsector->planes[position].xform,
frontsector->sky,
nullptr);
2017-01-04 14:39:47 +00:00
if (floorplane)
R_AddPlaneLights(floorplane, frontsector->lighthead);
FakeDrawLoop(sub, floorplane, ceilingplane);
2017-01-04 17:54:14 +00:00
clip3d->fake3D = 0;
2017-01-04 14:39:47 +00:00
frontsector = sub->sector;
}
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
// and now ceilings
for (unsigned int i = 0; i < frontsector->e->XFloor.ffloors.Size(); i++)
2016-03-01 15:47:10 +00:00
{
2017-01-04 17:54:14 +00:00
clip3d->fakeFloor = frontsector->e->XFloor.ffloors[i];
if (!(clip3d->fakeFloor->flags & FF_EXISTS)) continue;
if (!clip3d->fakeFloor->model) continue;
if (clip3d->fakeFloor->top.plane->isSlope()) continue;
if (!(clip3d->fakeFloor->flags & FF_NOSHADE) || (clip3d->fakeFloor->flags & (FF_RENDERPLANES | FF_RENDERSIDES)))
2016-03-01 15:47:10 +00:00
{
2017-01-04 17:54:14 +00:00
clip3d->AddHeight(clip3d->fakeFloor->bottom.plane, frontsector);
2017-01-04 14:39:47 +00:00
}
2017-01-04 17:54:14 +00:00
if (!(clip3d->fakeFloor->flags & FF_RENDERPLANES)) continue;
if (clip3d->fakeFloor->alpha == 0) continue;
if (!(clip3d->fakeFloor->flags & FF_THISINSIDE) && (clip3d->fakeFloor->flags & (FF_SWIMMABLE | FF_INVERTSECTOR)) == (FF_SWIMMABLE | FF_INVERTSECTOR)) continue;
clip3d->fakeAlpha = MIN<fixed_t>(Scale(clip3d->fakeFloor->alpha, OPAQUE, 255), OPAQUE);
2016-03-01 15:47:10 +00:00
2017-01-04 17:54:14 +00:00
if (clip3d->fakeFloor->validcount != validcount)
2016-03-01 15:47:10 +00:00
{
2017-01-04 17:54:14 +00:00
clip3d->fakeFloor->validcount = validcount;
clip3d->NewClip();
2017-01-04 14:39:47 +00:00
}
2017-01-04 17:54:14 +00:00
double fakeHeight = clip3d->fakeFloor->bottom.plane->ZatPoint(frontsector->centerspot);
2017-01-04 14:39:47 +00:00
if (fakeHeight > ViewPos.Z &&
fakeHeight < frontsector->ceilingplane.ZatPoint(frontsector->centerspot))
{
2017-01-04 17:54:14 +00:00
clip3d->fake3D = FAKE3D_FAKECEILING;
tempsec = *clip3d->fakeFloor->model;
tempsec.floorplane = *clip3d->fakeFloor->top.plane;
tempsec.ceilingplane = *clip3d->fakeFloor->bottom.plane;
if ((!(clip3d->fakeFloor->flags & FF_THISINSIDE) && !(clip3d->fakeFloor->flags & FF_INVERTSECTOR)) ||
(clip3d->fakeFloor->flags & FF_THISINSIDE && clip3d->fakeFloor->flags & FF_INVERTSECTOR))
2017-01-04 14:39:47 +00:00
{
tempsec.SetTexture(sector_t::ceiling, tempsec.GetTexture(sector_t::floor));
position = sector_t::floor;
}
else position = sector_t::ceiling;
frontsector = &tempsec;
tempsec.ceilingplane.ChangeHeight(-1 / 65536.);
if (fixedlightlev < 0 && sub->sector->e->XFloor.lightlist.Size())
{
light = P_GetPlaneLight(sub->sector, &frontsector->ceilingplane, false);
basecolormap = light->extra_colormap;
ceilinglightlevel = *light->p_lightlevel;
}
tempsec.ceilingplane.ChangeHeight(1 / 65536.);
floorplane = nullptr;
2017-01-04 14:39:47 +00:00
ceilingplane = R_FindPlane(frontsector->ceilingplane, // killough 3/8/98
frontsector->GetTexture(sector_t::ceiling),
ceilinglightlevel + r_actualextralight, // killough 4/11/98
frontsector->GetAlpha(sector_t::ceiling),
2017-01-04 17:54:14 +00:00
!!(clip3d->fakeFloor->flags & FF_ADDITIVETRANS),
2017-01-04 14:39:47 +00:00
frontsector->planes[position].xform,
frontsector->sky,
nullptr);
2017-01-04 14:39:47 +00:00
if (ceilingplane)
R_AddPlaneLights(ceilingplane, frontsector->lighthead);
FakeDrawLoop(sub, floorplane, ceilingplane);
2017-01-04 17:54:14 +00:00
clip3d->fake3D = 0;
2017-01-04 14:39:47 +00:00
frontsector = sub->sector;
2016-03-01 15:47:10 +00:00
}
}
clip3d->fakeFloor = nullptr;
2017-01-04 14:39:47 +00:00
floorplane = backupfp;
ceilingplane = backupcp;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
basecolormap = frontsector->ColorMap;
floorlightlevel = fll;
ceilinglightlevel = cll;
// killough 9/18/98: Fix underwater slowdown, by passing real sector
// instead of fake one. Improve sprite lighting by basing sprite
// lightlevels on floor & ceiling lightlevels in the surrounding area.
// [RH] Handle sprite lighting like Duke 3D: If the ceiling is a sky, sprites are lit by
// it, otherwise they are lit by the floor.
AddSprites(sub->sector, frontsector->GetTexture(sector_t::ceiling) == skyflatnum ? ceilinglightlevel : floorlightlevel, FakeSide);
2017-01-04 14:39:47 +00:00
// [RH] Add particles
if ((unsigned int)(sub - subsectors) < (unsigned int)numsubsectors)
{ // Only do it for the main BSP.
int shade = LIGHT2SHADE((floorlightlevel + ceilinglightlevel) / 2 + r_actualextralight);
for (WORD i = ParticlesInSubsec[(unsigned int)(sub - subsectors)]; i != NO_PARTICLE; i = Particles[i].snext)
{
R_ProjectParticle(Particles + i, subsectors[sub - subsectors].sector, shade, FakeSide);
}
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
count = sub->numlines;
line = sub->firstline;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
while (count--)
2016-03-01 15:47:10 +00:00
{
if (!outersubsector || line->sidedef == nullptr || !(line->sidedef->Flags & WALLF_POLYOBJ))
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
// kg3D - fake planes bounding calculation
if (r_3dfloors && line->backsector && frontsector->e && line->backsector->e->XFloor.ffloors.Size())
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
backupfp = floorplane;
backupcp = ceilingplane;
floorplane = nullptr;
ceilingplane = nullptr;
2017-01-04 17:54:14 +00:00
Clip3DFloors *clip3d = Clip3DFloors::Instance();
2017-01-04 14:39:47 +00:00
for (unsigned int i = 0; i < line->backsector->e->XFloor.ffloors.Size(); i++)
2016-03-01 15:47:10 +00:00
{
2017-01-04 17:54:14 +00:00
clip3d->fakeFloor = line->backsector->e->XFloor.ffloors[i];
if (!(clip3d->fakeFloor->flags & FF_EXISTS)) continue;
if (!(clip3d->fakeFloor->flags & FF_RENDERPLANES)) continue;
if (!clip3d->fakeFloor->model) continue;
clip3d->fake3D = FAKE3D_FAKEBACK;
tempsec = *clip3d->fakeFloor->model;
tempsec.floorplane = *clip3d->fakeFloor->top.plane;
tempsec.ceilingplane = *clip3d->fakeFloor->bottom.plane;
if (clip3d->fakeFloor->validcount != validcount)
2017-01-04 14:39:47 +00:00
{
2017-01-04 17:54:14 +00:00
clip3d->fakeFloor->validcount = validcount;
clip3d->NewClip();
2017-01-04 14:39:47 +00:00
}
renderline.Render(line, InSubsector, frontsector, &tempsec, floorplane, ceilingplane); // fake
2016-03-01 15:47:10 +00:00
}
clip3d->fakeFloor = nullptr;
2017-01-04 17:54:14 +00:00
clip3d->fake3D = 0;
2017-01-04 14:39:47 +00:00
floorplane = backupfp;
ceilingplane = backupcp;
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
renderline.Render(line, InSubsector, frontsector, nullptr, floorplane, ceilingplane); // now real
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
line++;
}
if (outersubsector)
{
InSubsector = nullptr;
2016-03-01 15:47:10 +00:00
}
}
2017-01-04 14:39:47 +00:00
void RenderBSP::RenderScene()
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
InSubsector = nullptr;
RenderBSPNode(nodes + numnodes - 1); // The head node is the last node output.
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
//
// RenderBSPNode
// Renders all subsectors below a given node, traversing subtree recursively.
// Just call with BSP root and -1.
// killough 5/2/98: reformatted, removed tail recursion
2017-01-04 14:39:47 +00:00
void RenderBSP::RenderBSPNode(void *node)
2016-03-01 15:47:10 +00:00
{
2017-01-04 14:39:47 +00:00
if (numnodes == 0)
{
RenderSubsector(subsectors);
return;
}
while (!((size_t)node & 1)) // Keep going until found a subsector
{
node_t *bsp = (node_t *)node;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
// Decide which side the view point is on.
int side = R_PointOnSide(ViewPos, bsp);
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
// Recursively divide front space (toward the viewer).
RenderBSPNode(bsp->children[side]);
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
// Possibly divide back space (away from the viewer).
side ^= 1;
if (!CheckBBox(bsp->bbox[side]))
return;
2016-03-01 15:47:10 +00:00
2017-01-04 14:39:47 +00:00
node = bsp->children[side];
}
RenderSubsector((subsector_t *)((BYTE *)node - 1));
2016-03-01 15:47:10 +00:00
}
2017-01-04 14:39:47 +00:00
void RenderBSP::ClearClip()
{
// clip ceiling to console bottom
fillshort(floorclip, viewwidth, viewheight);
fillshort(ceilingclip, viewwidth, !screen->Accel2D && ConBottom > viewwindowy && !bRenderingToCanvas ? (ConBottom - viewwindowy) : 0);
}
void RenderBSP::AddSprites(sector_t *sec, int lightlevel, WaterFakeSide fakeside)
{
F3DFloor *fakeceiling = nullptr;
F3DFloor *fakefloor = nullptr;
// BSP is traversed by subsector.
// A sector might have been split into several
// subsectors during BSP building.
// Thus we check whether it was already added.
if (sec->touching_renderthings == nullptr || sec->validcount == validcount)
return;
// Well, now it will be done.
sec->validcount = validcount;
int spriteshade = LIGHT2SHADE(lightlevel + r_actualextralight);
// Handle all things in sector.
for (auto p = sec->touching_renderthings; p != nullptr; p = p->m_snext)
{
auto thing = p->m_thing;
if (thing->validcount == validcount) continue;
thing->validcount = validcount;
FIntCVar *cvar = thing->GetClass()->distancecheck;
if (cvar != nullptr && *cvar >= 0)
{
double dist = (thing->Pos() - ViewPos).LengthSquared();
double check = (double)**cvar;
if (dist >= check * check)
{
continue;
}
}
// find fake level
for (auto rover : thing->Sector->e->XFloor.ffloors)
{
if (!(rover->flags & FF_EXISTS) || !(rover->flags & FF_RENDERPLANES)) continue;
if (!(rover->flags & FF_SOLID) || rover->alpha != 255) continue;
if (!fakefloor)
{
if (!rover->top.plane->isSlope())
{
if (rover->top.plane->ZatPoint(0., 0.) <= thing->Z()) fakefloor = rover;
}
}
if (!rover->bottom.plane->isSlope())
{
if (rover->bottom.plane->ZatPoint(0., 0.) >= thing->Top()) fakeceiling = rover;
}
}
R_ProjectSprite(thing, fakeside, fakefloor, fakeceiling, sec, spriteshade);
fakeceiling = nullptr;
fakefloor = nullptr;
}
}
}