2013-06-23 07:49:34 +00:00
|
|
|
/*
|
|
|
|
** gl_flat.cpp
|
|
|
|
** Flat rendering
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
** Copyright 2000-2005 Christoph Oelckers
|
|
|
|
** All rights reserved.
|
|
|
|
**
|
|
|
|
** Redistribution and use in source and binary forms, with or without
|
|
|
|
** modification, are permitted provided that the following conditions
|
|
|
|
** are met:
|
|
|
|
**
|
|
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer.
|
|
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
|
|
** documentation and/or other materials provided with the distribution.
|
|
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
|
|
** derived from this software without specific prior written permission.
|
|
|
|
** 4. When not used as part of GZDoom or a GZDoom derivative, this code will be
|
|
|
|
** covered by the terms of the GNU Lesser General Public License as published
|
|
|
|
** by the Free Software Foundation; either version 2.1 of the License, or (at
|
|
|
|
** your option) any later version.
|
|
|
|
** 5. Full disclosure of the entire project's source code, except for third
|
|
|
|
** party libraries is mandatory. (NOTE: This clause is non-negotiable!)
|
|
|
|
**
|
|
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gl/system/gl_system.h"
|
|
|
|
#include "a_sharedglobal.h"
|
|
|
|
#include "r_defs.h"
|
|
|
|
#include "r_sky.h"
|
|
|
|
#include "r_utility.h"
|
|
|
|
#include "g_level.h"
|
|
|
|
#include "doomstat.h"
|
|
|
|
#include "d_player.h"
|
2016-02-16 21:01:04 +00:00
|
|
|
#include "portal.h"
|
2013-06-23 07:49:34 +00:00
|
|
|
|
2013-09-03 16:29:39 +00:00
|
|
|
#include "gl/system/gl_interface.h"
|
2013-06-23 07:49:34 +00:00
|
|
|
#include "gl/system/gl_cvars.h"
|
|
|
|
#include "gl/renderer/gl_renderer.h"
|
|
|
|
#include "gl/renderer/gl_lightdata.h"
|
|
|
|
#include "gl/renderer/gl_renderstate.h"
|
|
|
|
#include "gl/data/gl_data.h"
|
|
|
|
#include "gl/data/gl_vertexbuffer.h"
|
|
|
|
#include "gl/dynlights/gl_dynlight.h"
|
|
|
|
#include "gl/dynlights/gl_glow.h"
|
2014-08-01 18:59:39 +00:00
|
|
|
#include "gl/dynlights/gl_lightbuffer.h"
|
2013-06-23 07:49:34 +00:00
|
|
|
#include "gl/scene/gl_drawinfo.h"
|
|
|
|
#include "gl/shaders/gl_shader.h"
|
|
|
|
#include "gl/textures/gl_material.h"
|
|
|
|
#include "gl/utility/gl_clock.h"
|
|
|
|
#include "gl/utility/gl_convert.h"
|
|
|
|
#include "gl/utility/gl_templates.h"
|
|
|
|
|
2014-11-27 09:46:28 +00:00
|
|
|
#ifdef _DEBUG
|
|
|
|
CVAR(Int, gl_breaksec, -1, 0)
|
|
|
|
#endif
|
2013-06-23 07:49:34 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Sets the texture matrix according to the plane's texture positioning
|
|
|
|
// information
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2014-09-02 08:31:48 +00:00
|
|
|
static float tics;
|
2014-07-13 18:41:20 +00:00
|
|
|
void gl_SetPlaneTextureRotation(const GLSectorPlane * secplane, FMaterial * gltexture)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
// only manipulate the texture matrix if needed.
|
2016-03-31 07:50:59 +00:00
|
|
|
if (!secplane->Offs.isZero() ||
|
|
|
|
secplane->Scale.X != 1. || secplane->Scale.Y != 1 ||
|
|
|
|
secplane->Angle != 0 ||
|
2014-08-22 21:50:38 +00:00
|
|
|
gltexture->TextureWidth() != 64 ||
|
|
|
|
gltexture->TextureHeight() != 64)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2016-03-31 07:50:59 +00:00
|
|
|
float uoffs = secplane->Offs.X / gltexture->TextureWidth();
|
|
|
|
float voffs = secplane->Offs.Y / gltexture->TextureHeight();
|
2013-06-23 07:49:34 +00:00
|
|
|
|
2016-03-31 07:50:59 +00:00
|
|
|
float xscale1 = secplane->Scale.X;
|
|
|
|
float yscale1 = secplane->Scale.Y;
|
2013-06-23 07:49:34 +00:00
|
|
|
if (gltexture->tex->bHasCanvas)
|
|
|
|
{
|
|
|
|
yscale1 = 0 - yscale1;
|
|
|
|
}
|
2016-03-31 07:50:59 +00:00
|
|
|
float angle = -secplane->Angle;
|
2013-06-23 07:49:34 +00:00
|
|
|
|
2016-03-31 07:50:59 +00:00
|
|
|
float xscale2 = 64.f / gltexture->TextureWidth();
|
|
|
|
float yscale2 = 64.f / gltexture->TextureHeight();
|
2013-06-23 07:49:34 +00:00
|
|
|
|
2014-07-13 18:41:20 +00:00
|
|
|
gl_RenderState.mTextureMatrix.loadIdentity();
|
2016-03-31 07:50:59 +00:00
|
|
|
gl_RenderState.mTextureMatrix.scale(xscale1, yscale1, 1.0f);
|
|
|
|
gl_RenderState.mTextureMatrix.translate(uoffs, voffs, 0.0f);
|
|
|
|
gl_RenderState.mTextureMatrix.scale(xscale2, yscale2, 1.0f);
|
|
|
|
gl_RenderState.mTextureMatrix.rotate(angle, 0.0f, 0.0f, 1.0f);
|
2014-07-13 18:41:20 +00:00
|
|
|
gl_RenderState.EnableTextureMatrix(true);
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-15 18:49:21 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Flats
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2014-07-15 18:49:21 +00:00
|
|
|
extern FDynLightData lightdata;
|
2013-06-23 07:49:34 +00:00
|
|
|
|
2014-08-19 12:18:21 +00:00
|
|
|
void GLFlat::SetupSubsectorLights(int pass, subsector_t * sub, int *dli)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
Plane p;
|
|
|
|
|
2014-08-19 12:18:21 +00:00
|
|
|
if (dli != NULL && *dli != -1)
|
|
|
|
{
|
|
|
|
gl_RenderState.ApplyLightIndex(GLRenderer->mLights->GetIndex(*dli));
|
|
|
|
(*dli)++;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-15 18:49:21 +00:00
|
|
|
lightdata.Clear();
|
|
|
|
FLightNode * node = sub->lighthead;
|
2013-06-23 07:49:34 +00:00
|
|
|
while (node)
|
|
|
|
{
|
|
|
|
ADynamicLight * light = node->lightsource;
|
2014-07-15 18:49:21 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
if (light->flags2&MF2_DORMANT)
|
|
|
|
{
|
|
|
|
node=node->nextLight;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
iter_dlightf++;
|
|
|
|
|
|
|
|
// we must do the side check here because gl_SetupLight needs the correct plane orientation
|
|
|
|
// which we don't have for Legacy-style 3D-floors
|
2016-03-30 18:01:44 +00:00
|
|
|
double planeh = plane.plane.ZatPoint(light);
|
|
|
|
if (gl_lights_checkside && ((planeh<light->Z() && ceiling) || (planeh>light->Z() && !ceiling)))
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2016-03-30 18:01:44 +00:00
|
|
|
node = node->nextLight;
|
2013-06-23 07:49:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.Set(plane.plane);
|
2016-03-08 20:22:12 +00:00
|
|
|
gl_GetLight(sub->sector->PortalGroup, p, light, false, false, lightdata);
|
2013-06-23 07:49:34 +00:00
|
|
|
node = node->nextLight;
|
|
|
|
}
|
|
|
|
|
2014-08-19 12:18:21 +00:00
|
|
|
int d = GLRenderer->mLights->UploadLights(lightdata);
|
|
|
|
if (pass == GLPASS_LIGHTSONLY)
|
|
|
|
{
|
|
|
|
GLRenderer->mLights->StoreIndex(d);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gl_RenderState.ApplyLightIndex(d);
|
|
|
|
}
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void GLFlat::DrawSubsector(subsector_t * sub)
|
|
|
|
{
|
2014-06-14 23:14:41 +00:00
|
|
|
FFlatVertex *ptr = GLRenderer->mVBO->GetBuffer();
|
2016-04-03 09:40:14 +00:00
|
|
|
for (unsigned int k = 0; k < sub->numlines; k++)
|
2014-05-10 23:23:27 +00:00
|
|
|
{
|
2016-04-03 09:40:14 +00:00
|
|
|
vertex_t *vt = sub->firstline[k].v1;
|
|
|
|
ptr->x = vt->fX();
|
|
|
|
ptr->y = vt->fY();
|
|
|
|
ptr->z = plane.plane.ZatPoint(vt) + dz;
|
|
|
|
ptr->u = vt->fX() / 64.f;
|
|
|
|
ptr->v = -vt->fY() / 64.f;
|
|
|
|
ptr++;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2014-06-14 23:14:41 +00:00
|
|
|
GLRenderer->mVBO->RenderCurrent(ptr, GL_TRIANGLE_FAN);
|
2013-06-23 07:49:34 +00:00
|
|
|
|
|
|
|
flatvertices += sub->numlines;
|
|
|
|
flatprimitives++;
|
|
|
|
}
|
|
|
|
|
2014-05-10 23:23:27 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2014-08-19 12:18:21 +00:00
|
|
|
void GLFlat::ProcessLights(bool istrans)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-08-19 12:18:21 +00:00
|
|
|
dynlightindex = GLRenderer->mLights->GetIndexPtr();
|
|
|
|
|
|
|
|
if (sub)
|
|
|
|
{
|
|
|
|
// This represents a single subsector
|
|
|
|
SetupSubsectorLights(GLPASS_LIGHTSONLY, sub);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Draw the subsectors belonging to this sector
|
|
|
|
for (int i=0; i<sector->subsectorcount; i++)
|
|
|
|
{
|
|
|
|
subsector_t * sub = sector->subsectors[i];
|
|
|
|
if (gl_drawinfo->ss_renderflags[sub-subsectors]&renderflags || istrans)
|
|
|
|
{
|
|
|
|
SetupSubsectorLights(GLPASS_LIGHTSONLY, sub);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw the subsectors assigned to it due to missing textures
|
|
|
|
if (!(renderflags&SSRF_RENDER3DPLANES))
|
|
|
|
{
|
|
|
|
gl_subsectorrendernode * node = (renderflags&SSRF_RENDERFLOOR)?
|
|
|
|
gl_drawinfo->GetOtherFloorPlanes(sector->sectornum) :
|
|
|
|
gl_drawinfo->GetOtherCeilingPlanes(sector->sectornum);
|
|
|
|
|
|
|
|
while (node)
|
|
|
|
{
|
|
|
|
SetupSubsectorLights(GLPASS_LIGHTSONLY, node->sub);
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void GLFlat::DrawSubsectors(int pass, bool processlights, bool istrans)
|
|
|
|
{
|
|
|
|
int dli = dynlightindex;
|
2013-06-23 07:49:34 +00:00
|
|
|
|
|
|
|
gl_RenderState.Apply();
|
|
|
|
if (sub)
|
|
|
|
{
|
|
|
|
// This represents a single subsector
|
2014-08-19 12:18:21 +00:00
|
|
|
if (processlights) SetupSubsectorLights(GLPASS_ALL, sub, &dli);
|
2013-06-23 07:49:34 +00:00
|
|
|
DrawSubsector(sub);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-06-15 10:12:24 +00:00
|
|
|
if (vboindex >= 0)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
int index = vboindex;
|
|
|
|
for (int i=0; i<sector->subsectorcount; i++)
|
|
|
|
{
|
|
|
|
subsector_t * sub = sector->subsectors[i];
|
2014-08-19 12:18:21 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
if (gl_drawinfo->ss_renderflags[sub-subsectors]&renderflags || istrans)
|
|
|
|
{
|
2014-08-19 12:18:21 +00:00
|
|
|
if (processlights) SetupSubsectorLights(GLPASS_ALL, sub, &dli);
|
2014-07-15 00:48:59 +00:00
|
|
|
drawcalls.Clock();
|
2013-09-03 12:05:41 +00:00
|
|
|
glDrawArrays(GL_TRIANGLE_FAN, index, sub->numlines);
|
2014-07-15 00:48:59 +00:00
|
|
|
drawcalls.Unclock();
|
2013-06-23 07:49:34 +00:00
|
|
|
flatvertices += sub->numlines;
|
|
|
|
flatprimitives++;
|
|
|
|
}
|
|
|
|
index += sub->numlines;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Draw the subsectors belonging to this sector
|
|
|
|
for (int i=0; i<sector->subsectorcount; i++)
|
|
|
|
{
|
|
|
|
subsector_t * sub = sector->subsectors[i];
|
|
|
|
if (gl_drawinfo->ss_renderflags[sub-subsectors]&renderflags || istrans)
|
|
|
|
{
|
2014-08-19 12:18:21 +00:00
|
|
|
if (processlights) SetupSubsectorLights(GLPASS_ALL, sub, &dli);
|
2013-06-23 07:49:34 +00:00
|
|
|
DrawSubsector(sub);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw the subsectors assigned to it due to missing textures
|
|
|
|
if (!(renderflags&SSRF_RENDER3DPLANES))
|
|
|
|
{
|
|
|
|
gl_subsectorrendernode * node = (renderflags&SSRF_RENDERFLOOR)?
|
|
|
|
gl_drawinfo->GetOtherFloorPlanes(sector->sectornum) :
|
|
|
|
gl_drawinfo->GetOtherCeilingPlanes(sector->sectornum);
|
|
|
|
|
|
|
|
while (node)
|
|
|
|
{
|
2014-08-19 12:18:21 +00:00
|
|
|
if (processlights) SetupSubsectorLights(GLPASS_ALL, node->sub, &dli);
|
2013-06-23 07:49:34 +00:00
|
|
|
DrawSubsector(node->sub);
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2014-08-19 12:18:21 +00:00
|
|
|
void GLFlat::Draw(int pass, bool trans) // trans only has meaning for GLPASS_LIGHTSONLY
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
int rel = getExtraLight();
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
2014-11-27 09:46:28 +00:00
|
|
|
if (sector->sectornum == gl_breaksec)
|
2014-05-08 07:48:39 +00:00
|
|
|
{
|
|
|
|
int a = 0;
|
|
|
|
}
|
2013-06-23 07:49:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
switch (pass)
|
|
|
|
{
|
|
|
|
case GLPASS_PLAIN: // Single-pass rendering
|
|
|
|
case GLPASS_ALL:
|
2014-05-11 22:13:19 +00:00
|
|
|
gl_SetColor(lightlevel, rel, Colormap,1.0f);
|
2014-07-15 18:49:21 +00:00
|
|
|
gl_SetFog(lightlevel, rel, &Colormap, false);
|
2014-09-09 10:00:42 +00:00
|
|
|
gl_RenderState.SetMaterial(gltexture, CLAMP_NONE, 0, -1, false);
|
2014-07-13 18:41:20 +00:00
|
|
|
gl_SetPlaneTextureRotation(&plane, gltexture);
|
2014-08-19 12:18:21 +00:00
|
|
|
DrawSubsectors(pass, (pass == GLPASS_ALL || dynlightindex > -1), false);
|
2014-07-13 18:41:20 +00:00
|
|
|
gl_RenderState.EnableTextureMatrix(false);
|
2013-06-23 07:49:34 +00:00
|
|
|
break;
|
|
|
|
|
2014-08-19 12:18:21 +00:00
|
|
|
case GLPASS_LIGHTSONLY:
|
|
|
|
if (!trans || gltexture)
|
|
|
|
{
|
|
|
|
ProcessLights(trans);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
case GLPASS_TRANSLUCENT:
|
|
|
|
if (renderstyle==STYLE_Add) gl_RenderState.BlendFunc(GL_SRC_ALPHA, GL_ONE);
|
2014-05-11 22:13:19 +00:00
|
|
|
gl_SetColor(lightlevel, rel, Colormap, alpha);
|
2013-06-23 07:49:34 +00:00
|
|
|
gl_SetFog(lightlevel, rel, &Colormap, false);
|
2014-07-14 19:14:43 +00:00
|
|
|
gl_RenderState.AlphaFunc(GL_GEQUAL, gl_mask_threshold);
|
2013-06-23 07:49:34 +00:00
|
|
|
if (!gltexture)
|
|
|
|
{
|
|
|
|
gl_RenderState.EnableTexture(false);
|
2014-08-19 12:18:21 +00:00
|
|
|
DrawSubsectors(pass, false, true);
|
2013-06-23 07:49:34 +00:00
|
|
|
gl_RenderState.EnableTexture(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-09-09 10:00:42 +00:00
|
|
|
gl_RenderState.SetMaterial(gltexture, CLAMP_NONE, 0, -1, false);
|
2014-07-13 18:41:20 +00:00
|
|
|
gl_SetPlaneTextureRotation(&plane, gltexture);
|
2014-08-19 12:18:21 +00:00
|
|
|
DrawSubsectors(pass, true, true);
|
2014-07-13 18:41:20 +00:00
|
|
|
gl_RenderState.EnableTextureMatrix(false);
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
if (renderstyle==STYLE_Add) gl_RenderState.BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// GLFlat::PutFlat
|
|
|
|
//
|
|
|
|
// Checks texture, lighting and translucency settings and puts this
|
|
|
|
// plane in the appropriate render list.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
inline void GLFlat::PutFlat(bool fog)
|
|
|
|
{
|
|
|
|
int list;
|
|
|
|
|
|
|
|
if (gl_fixedcolormap)
|
|
|
|
{
|
2014-05-11 20:57:42 +00:00
|
|
|
Colormap.Clear();
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2014-07-27 19:55:25 +00:00
|
|
|
if (renderstyle!=STYLE_Translucent || alpha < 1.f - FLT_EPSILON || fog || gltexture == NULL)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-07-15 18:49:21 +00:00
|
|
|
// translucent 3D floors go into the regular translucent list, translucent portals go into the translucent border list.
|
|
|
|
list = (renderflags&SSRF_RENDER3DPLANES) ? GLDL_TRANSLUCENT : GLDL_TRANSLUCENTBORDER;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2014-07-27 19:55:25 +00:00
|
|
|
else
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
bool masked = gltexture->isMasked() && ((renderflags&SSRF_RENDER3DPLANES) || stack);
|
2014-08-30 11:04:41 +00:00
|
|
|
list = masked ? GLDL_MASKEDFLATS : GLDL_PLAINFLATS;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2014-07-15 18:49:21 +00:00
|
|
|
gl_drawinfo->drawlists[list].AddFlat (this);
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// This draws one flat
|
|
|
|
// The passed sector does not indicate the area which is rendered.
|
|
|
|
// It is only used as source for the plane data.
|
|
|
|
// The whichplane boolean indicates if the flat is a floor(false) or a ceiling(true)
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void GLFlat::Process(sector_t * model, int whichplane, bool fog)
|
|
|
|
{
|
|
|
|
plane.GetFromSector(model, whichplane);
|
|
|
|
|
|
|
|
if (!fog)
|
|
|
|
{
|
|
|
|
if (plane.texture==skyflatnum) return;
|
|
|
|
|
2014-08-22 21:50:38 +00:00
|
|
|
gltexture=FMaterial::ValidateTexture(plane.texture, false, true);
|
2013-06-23 07:49:34 +00:00
|
|
|
if (!gltexture) return;
|
|
|
|
if (gltexture->tex->isFullbright())
|
|
|
|
{
|
|
|
|
Colormap.LightColor.r = Colormap.LightColor.g = Colormap.LightColor.b = 0xff;
|
|
|
|
lightlevel=255;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gltexture = NULL;
|
|
|
|
lightlevel = abs(lightlevel);
|
|
|
|
}
|
|
|
|
|
|
|
|
// get height from vplane
|
|
|
|
if (whichplane == sector_t::floor && sector->transdoor) dz = -1;
|
|
|
|
else dz = 0;
|
|
|
|
|
|
|
|
z = plane.plane.ZatPoint(0.f, 0.f);
|
|
|
|
|
|
|
|
PutFlat(fog);
|
|
|
|
rendered_flats++;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Sets 3D floor info. Common code for all 4 cases
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void GLFlat::SetFrom3DFloor(F3DFloor *rover, bool top, bool underside)
|
|
|
|
{
|
|
|
|
F3DFloor::planeref & plane = top? rover->top : rover->bottom;
|
|
|
|
|
|
|
|
// FF_FOG requires an inverted logic where to get the light from
|
|
|
|
lightlist_t *light = P_GetPlaneLight(sector, plane.plane, underside);
|
|
|
|
lightlevel = *light->p_lightlevel;
|
|
|
|
|
|
|
|
if (rover->flags & FF_FOG) Colormap.LightColor = (light->extra_colormap)->Fade;
|
2016-01-29 16:13:14 +00:00
|
|
|
else Colormap.CopyFrom3DLight(light);
|
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
|
|
|
|
alpha = rover->alpha/255.0f;
|
|
|
|
renderstyle = rover->flags&FF_ADDITIVETRANS? STYLE_Add : STYLE_Translucent;
|
|
|
|
if (plane.model->VBOHeightcheck(plane.isceiling))
|
|
|
|
{
|
|
|
|
vboindex = plane.vindex;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
vboindex = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Process a sector's flats for rendering
|
|
|
|
// This function is only called once per sector.
|
|
|
|
// Subsequent subsectors are just quickly added to the ss_renderflags array
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void GLFlat::ProcessSector(sector_t * frontsector)
|
|
|
|
{
|
|
|
|
lightlist_t * light;
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
2014-11-27 09:46:28 +00:00
|
|
|
if (frontsector->sectornum==gl_breaksec)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-05-08 07:48:39 +00:00
|
|
|
int a = 0;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Get the real sector for this one.
|
|
|
|
sector=§ors[frontsector->sectornum];
|
|
|
|
extsector_t::xfloor &x = sector->e->XFloor;
|
|
|
|
this->sub=NULL;
|
2014-08-01 18:59:39 +00:00
|
|
|
dynlightindex = -1;
|
2013-06-23 07:49:34 +00:00
|
|
|
|
|
|
|
byte &srf = gl_drawinfo->sectorrenderflags[sector->sectornum];
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// do floors
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
2016-04-02 21:17:16 +00:00
|
|
|
if (frontsector->floorplane.ZatPoint(ViewPos) <= ViewPos.Z)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
// process the original floor first.
|
|
|
|
|
|
|
|
srf |= SSRF_RENDERFLOOR;
|
|
|
|
|
|
|
|
lightlevel = gl_ClampLight(frontsector->GetFloorLight());
|
|
|
|
Colormap=frontsector->ColorMap;
|
|
|
|
if ((stack = (frontsector->portals[sector_t::floor] != NULL)))
|
|
|
|
{
|
2016-02-15 12:11:31 +00:00
|
|
|
if (!frontsector->PortalBlocksView(sector_t::floor))
|
|
|
|
{
|
2016-02-28 09:10:01 +00:00
|
|
|
if (sector->SkyBoxes[sector_t::floor]->special1 == SKYBOX_STACKEDSECTORTHING)
|
|
|
|
{
|
|
|
|
gl_drawinfo->AddFloorStack(sector);
|
|
|
|
}
|
2016-02-15 12:11:31 +00:00
|
|
|
alpha = frontsector->GetAlpha(sector_t::floor) / 65536.0f;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
alpha = 1.f;
|
|
|
|
}
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
alpha = 1.0f-frontsector->GetReflect(sector_t::floor);
|
|
|
|
}
|
|
|
|
if (frontsector->VBOHeightcheck(sector_t::floor))
|
|
|
|
{
|
|
|
|
vboindex = frontsector->vboindex[sector_t::floor];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
vboindex = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ceiling=false;
|
|
|
|
renderflags=SSRF_RENDERFLOOR;
|
|
|
|
|
|
|
|
if (x.ffloors.Size())
|
|
|
|
{
|
|
|
|
light = P_GetPlaneLight(sector, &frontsector->floorplane, false);
|
2016-01-29 16:13:14 +00:00
|
|
|
if ((!(sector->GetFlags(sector_t::floor)&PLANEF_ABSLIGHTING) || light->lightsource == NULL)
|
2013-06-23 07:49:34 +00:00
|
|
|
&& (light->p_lightlevel != &frontsector->lightlevel))
|
|
|
|
{
|
|
|
|
lightlevel = *light->p_lightlevel;
|
|
|
|
}
|
|
|
|
|
2016-01-29 16:13:14 +00:00
|
|
|
Colormap.CopyFrom3DLight(light);
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
renderstyle = STYLE_Translucent;
|
|
|
|
if (alpha!=0.0f) Process(frontsector, false, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// do ceilings
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
2016-04-02 21:17:16 +00:00
|
|
|
if (frontsector->ceilingplane.ZatPoint(ViewPos) >= ViewPos.Z)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
// process the original ceiling first.
|
|
|
|
|
|
|
|
srf |= SSRF_RENDERCEILING;
|
|
|
|
|
|
|
|
lightlevel = gl_ClampLight(frontsector->GetCeilingLight());
|
|
|
|
Colormap=frontsector->ColorMap;
|
|
|
|
if ((stack = (frontsector->portals[sector_t::ceiling] != NULL)))
|
|
|
|
{
|
2016-02-15 12:11:31 +00:00
|
|
|
if (!frontsector->PortalBlocksView(sector_t::ceiling))
|
|
|
|
{
|
2016-02-28 09:10:01 +00:00
|
|
|
if (sector->SkyBoxes[sector_t::ceiling]->special1 == SKYBOX_STACKEDSECTORTHING)
|
|
|
|
{
|
|
|
|
gl_drawinfo->AddCeilingStack(sector);
|
|
|
|
}
|
2016-02-15 12:11:31 +00:00
|
|
|
alpha = frontsector->GetAlpha(sector_t::ceiling) / 65536.0f;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
alpha = 1.f;
|
|
|
|
}
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
alpha = 1.0f-frontsector->GetReflect(sector_t::ceiling);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frontsector->VBOHeightcheck(sector_t::ceiling))
|
|
|
|
{
|
|
|
|
vboindex = frontsector->vboindex[sector_t::ceiling];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
vboindex = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ceiling=true;
|
|
|
|
renderflags=SSRF_RENDERCEILING;
|
|
|
|
|
|
|
|
if (x.ffloors.Size())
|
|
|
|
{
|
|
|
|
light = P_GetPlaneLight(sector, §or->ceilingplane, true);
|
|
|
|
|
|
|
|
if ((!(sector->GetFlags(sector_t::ceiling)&PLANEF_ABSLIGHTING))
|
|
|
|
&& (light->p_lightlevel != &frontsector->lightlevel))
|
|
|
|
{
|
|
|
|
lightlevel = *light->p_lightlevel;
|
|
|
|
}
|
2016-01-29 16:13:14 +00:00
|
|
|
Colormap.CopyFrom3DLight(light);
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
renderstyle = STYLE_Translucent;
|
|
|
|
if (alpha!=0.0f) Process(frontsector, true, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// do 3D floors
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
stack=false;
|
|
|
|
if (x.ffloors.Size())
|
|
|
|
{
|
|
|
|
player_t * player=players[consoleplayer].camera->player;
|
|
|
|
|
|
|
|
renderflags=SSRF_RENDER3DPLANES;
|
|
|
|
srf |= SSRF_RENDER3DPLANES;
|
|
|
|
// 3d-floors must not overlap!
|
|
|
|
fixed_t lastceilingheight=sector->CenterCeiling(); // render only in the range of the
|
|
|
|
fixed_t lastfloorheight=sector->CenterFloor(); // current sector part (if applicable)
|
|
|
|
F3DFloor * rover;
|
|
|
|
int k;
|
|
|
|
|
|
|
|
// floors are ordered now top to bottom so scanning the list for the best match
|
|
|
|
// is no longer necessary.
|
|
|
|
|
|
|
|
ceiling=true;
|
|
|
|
for(k=0;k<(int)x.ffloors.Size();k++)
|
|
|
|
{
|
|
|
|
rover=x.ffloors[k];
|
|
|
|
|
|
|
|
if ((rover->flags&(FF_EXISTS|FF_RENDERPLANES|FF_THISINSIDE))==(FF_EXISTS|FF_RENDERPLANES))
|
|
|
|
{
|
|
|
|
if (rover->flags&FF_FOG && gl_fixedcolormap) continue;
|
2014-11-27 09:46:28 +00:00
|
|
|
if (!rover->top.copied && rover->flags&(FF_INVERTPLANES|FF_BOTHPLANES))
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2016-03-30 18:01:44 +00:00
|
|
|
fixed_t ff_top=FLOAT2FIXED(rover->top.plane->ZatPoint(sector->centerspot));
|
2013-06-23 07:49:34 +00:00
|
|
|
if (ff_top<lastceilingheight)
|
|
|
|
{
|
2016-04-02 21:17:16 +00:00
|
|
|
if (ViewPos.Z <= rover->top.plane->ZatPoint(ViewPos))
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
SetFrom3DFloor(rover, true, !!(rover->flags&FF_FOG));
|
|
|
|
Colormap.FadeColor=frontsector->ColorMap->Fade;
|
|
|
|
Process(rover->top.model, rover->top.isceiling, !!(rover->flags&FF_FOG));
|
|
|
|
}
|
|
|
|
lastceilingheight=ff_top;
|
|
|
|
}
|
|
|
|
}
|
2014-11-27 09:49:03 +00:00
|
|
|
if (!rover->bottom.copied && !(rover->flags&FF_INVERTPLANES))
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2016-03-30 18:01:44 +00:00
|
|
|
fixed_t ff_bottom=FLOAT2FIXED(rover->bottom.plane->ZatPoint(sector->centerspot));
|
2013-06-23 07:49:34 +00:00
|
|
|
if (ff_bottom<lastceilingheight)
|
|
|
|
{
|
2016-04-02 21:17:16 +00:00
|
|
|
if (ViewPos.Z <=rover->bottom.plane->ZatPoint(ViewPos))
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
SetFrom3DFloor(rover, false, !(rover->flags&FF_FOG));
|
|
|
|
Colormap.FadeColor=frontsector->ColorMap->Fade;
|
|
|
|
Process(rover->bottom.model, rover->bottom.isceiling, !!(rover->flags&FF_FOG));
|
|
|
|
}
|
|
|
|
lastceilingheight=ff_bottom;
|
|
|
|
if (rover->alpha<255) lastceilingheight++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ceiling=false;
|
|
|
|
for(k=x.ffloors.Size()-1;k>=0;k--)
|
|
|
|
{
|
|
|
|
rover=x.ffloors[k];
|
|
|
|
|
|
|
|
if ((rover->flags&(FF_EXISTS|FF_RENDERPLANES|FF_THISINSIDE))==(FF_EXISTS|FF_RENDERPLANES))
|
|
|
|
{
|
|
|
|
if (rover->flags&FF_FOG && gl_fixedcolormap) continue;
|
2014-11-27 09:46:28 +00:00
|
|
|
if (!rover->bottom.copied && rover->flags&(FF_INVERTPLANES|FF_BOTHPLANES))
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2016-03-30 18:01:44 +00:00
|
|
|
fixed_t ff_bottom=FLOAT2FIXED(rover->bottom.plane->ZatPoint(sector->centerspot));
|
2013-06-23 07:49:34 +00:00
|
|
|
if (ff_bottom>lastfloorheight || (rover->flags&FF_FIX))
|
|
|
|
{
|
2016-04-02 21:17:16 +00:00
|
|
|
if (ViewPos.Z >= rover->bottom.plane->ZatPoint(ViewPos))
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
SetFrom3DFloor(rover, false, !(rover->flags&FF_FOG));
|
|
|
|
Colormap.FadeColor=frontsector->ColorMap->Fade;
|
|
|
|
|
|
|
|
if (rover->flags&FF_FIX)
|
|
|
|
{
|
|
|
|
lightlevel = gl_ClampLight(rover->model->lightlevel);
|
|
|
|
Colormap = rover->GetColormap();
|
|
|
|
}
|
|
|
|
|
|
|
|
Process(rover->bottom.model, rover->bottom.isceiling, !!(rover->flags&FF_FOG));
|
|
|
|
}
|
|
|
|
lastfloorheight=ff_bottom;
|
|
|
|
}
|
|
|
|
}
|
2014-11-27 09:49:03 +00:00
|
|
|
if (!rover->top.copied && !(rover->flags&FF_INVERTPLANES))
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2016-03-30 18:01:44 +00:00
|
|
|
fixed_t ff_top=FLOAT2FIXED(rover->top.plane->ZatPoint(sector->centerspot));
|
2013-06-23 07:49:34 +00:00
|
|
|
if (ff_top>lastfloorheight)
|
|
|
|
{
|
2016-04-02 21:17:16 +00:00
|
|
|
if (ViewPos.Z >= rover->top.plane->ZatPoint(ViewPos))
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
SetFrom3DFloor(rover, true, !!(rover->flags&FF_FOG));
|
|
|
|
Colormap.FadeColor=frontsector->ColorMap->Fade;
|
|
|
|
Process(rover->top.model, rover->top.isceiling, !!(rover->flags&FF_FOG));
|
|
|
|
}
|
|
|
|
lastfloorheight=ff_top;
|
|
|
|
if (rover->alpha<255) lastfloorheight--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|