2016-09-14 18:01:13 +00:00
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
2018-04-27 18:28:59 +00:00
|
|
|
// Copyright(C) 2003-2018 Christoph Oelckers
|
2016-09-14 18:01:13 +00:00
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with this program. If not, see http://www.gnu.org/licenses/
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
//
|
2013-06-23 07:49:34 +00:00
|
|
|
/*
|
|
|
|
** gl_decal.cpp
|
2018-04-27 18:28:59 +00:00
|
|
|
** OpenGL decal processing code
|
2013-06-23 07:49:34 +00:00
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "doomdata.h"
|
|
|
|
#include "a_sharedglobal.h"
|
|
|
|
#include "r_utility.h"
|
2017-03-15 23:56:03 +00:00
|
|
|
#include "g_levellocals.h"
|
2018-04-27 18:28:59 +00:00
|
|
|
#include "hwrenderer/textures/hw_material.h"
|
2018-04-25 18:33:55 +00:00
|
|
|
#include "hwrenderer/utility/hw_cvars.h"
|
2018-04-27 18:28:59 +00:00
|
|
|
#include "hwrenderer/scene/hw_drawstructs.h"
|
|
|
|
#include "hwrenderer/scene/hw_drawinfo.h"
|
|
|
|
#include "hwrenderer/utility/hw_lighting.h"
|
|
|
|
#include "hwrenderer/data/flatvertices.h"
|
2013-06-23 07:49:34 +00:00
|
|
|
|
2018-04-27 09:40:23 +00:00
|
|
|
void GLWall::ProcessDecal(HWDrawInfo *di, DBaseDecal *decal)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2018-04-25 20:09:12 +00:00
|
|
|
line_t * line = seg->linedef;
|
|
|
|
side_t * side = seg->sidedef;
|
2013-06-23 07:49:34 +00:00
|
|
|
int i;
|
2016-03-22 22:19:21 +00:00
|
|
|
float zpos;
|
2014-05-11 17:44:19 +00:00
|
|
|
bool flipx, flipy;
|
2013-06-23 07:49:34 +00:00
|
|
|
FTextureID decalTile;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
if (decal->RenderFlags & RF_INVISIBLE) return;
|
2018-04-27 09:40:23 +00:00
|
|
|
if (type == RENDERWALL_FFBLOCK && gltexture->isMasked()) return; // No decals on 3D floors with transparent textures.
|
2018-04-27 18:18:52 +00:00
|
|
|
if (seg == nullptr) return;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
decalTile = decal->PicNum;
|
|
|
|
flipx = !!(decal->RenderFlags & RF_XFLIP);
|
|
|
|
flipy = !!(decal->RenderFlags & RF_YFLIP);
|
|
|
|
|
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
FTexture *texture = TexMan[decalTile];
|
|
|
|
if (texture == NULL) return;
|
|
|
|
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
// the sectors are only used for their texture origin coordinates
|
|
|
|
// so we don't need the fake sectors for deep water etc.
|
|
|
|
// As this is a completely split wall fragment no further splits are
|
|
|
|
// necessary for the decal.
|
|
|
|
sector_t *frontsector;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
// for 3d-floor segments use the model sector as reference
|
2018-04-25 20:09:12 +00:00
|
|
|
if ((decal->RenderFlags&RF_CLIPMASK) == RF_CLIPMID) frontsector = decal->Sector;
|
|
|
|
else frontsector = seg->frontsector;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
switch (decal->RenderFlags & RF_RELMASK)
|
|
|
|
{
|
2018-04-27 09:40:23 +00:00
|
|
|
default:
|
|
|
|
// No valid decal can have this type. If one is encountered anyway
|
|
|
|
// it is in some way invalid so skip it.
|
|
|
|
return;
|
|
|
|
//zpos = decal->z;
|
|
|
|
//break;
|
|
|
|
|
|
|
|
case RF_RELUPPER:
|
|
|
|
if (type != RENDERWALL_TOP) return;
|
|
|
|
if (line->flags & ML_DONTPEGTOP)
|
|
|
|
{
|
|
|
|
zpos = decal->Z + frontsector->GetPlaneTexZ(sector_t::ceiling);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
zpos = decal->Z + seg->backsector->GetPlaneTexZ(sector_t::ceiling);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RF_RELLOWER:
|
|
|
|
if (type != RENDERWALL_BOTTOM) return;
|
|
|
|
if (line->flags & ML_DONTPEGBOTTOM)
|
|
|
|
{
|
|
|
|
zpos = decal->Z + frontsector->GetPlaneTexZ(sector_t::ceiling);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
zpos = decal->Z + seg->backsector->GetPlaneTexZ(sector_t::floor);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RF_RELMID:
|
|
|
|
if (type == RENDERWALL_TOP || type == RENDERWALL_BOTTOM) return;
|
|
|
|
if (line->flags & ML_DONTPEGBOTTOM)
|
|
|
|
{
|
|
|
|
zpos = decal->Z + frontsector->GetPlaneTexZ(sector_t::floor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
zpos = decal->Z + frontsector->GetPlaneTexZ(sector_t::ceiling);
|
|
|
|
}
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2018-04-27 18:18:52 +00:00
|
|
|
|
|
|
|
GLDecal &gldecal = *di->AddDecal(type == RENDERWALL_MIRRORSURFACE);
|
2018-04-27 09:40:23 +00:00
|
|
|
gldecal.gltexture = FMaterial::ValidateTexture(texture, true);
|
|
|
|
gldecal.wall = this;
|
|
|
|
gldecal.decal = decal;
|
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
if (decal->RenderFlags & RF_FULLBRIGHT)
|
|
|
|
{
|
2018-04-27 09:40:23 +00:00
|
|
|
gldecal.light = 255;
|
|
|
|
gldecal.rel = 0;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-04-27 09:40:23 +00:00
|
|
|
gldecal.light = lightlevel;
|
|
|
|
gldecal.rel = rellight + getExtraLight();
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2018-04-27 09:40:23 +00:00
|
|
|
|
|
|
|
gldecal.colormap = Colormap;
|
|
|
|
|
2017-03-15 23:56:03 +00:00
|
|
|
if (level.flags3 & LEVEL3_NOCOLOREDSPRITELIGHTING)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2018-04-27 09:40:23 +00:00
|
|
|
gldecal.colormap.Decolorize();
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2018-04-27 09:40:23 +00:00
|
|
|
|
|
|
|
gldecal.a = decal->Alpha;
|
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
// now clip the decal to the actual polygon
|
2018-04-27 09:40:23 +00:00
|
|
|
FMaterial *tex = gldecal.gltexture;
|
|
|
|
|
2016-03-22 22:19:21 +00:00
|
|
|
float decalwidth = tex->TextureWidth() * decal->ScaleX;
|
2018-04-25 20:09:12 +00:00
|
|
|
float decalheight = tex->TextureHeight() * decal->ScaleY;
|
2016-03-22 22:19:21 +00:00
|
|
|
float decallefto = tex->GetLeftOffset() * decal->ScaleX;
|
2018-04-25 20:09:12 +00:00
|
|
|
float decaltopo = tex->GetTopOffset() * decal->ScaleY;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
float leftedge = glseg.fracleft * side->TexelLength;
|
|
|
|
float linelength = glseg.fracright * side->TexelLength - leftedge;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
// texel index of the decal's left edge
|
2018-04-25 20:09:12 +00:00
|
|
|
float decalpixpos = (float)side->TexelLength * decal->LeftDistance - (flipx ? decalwidth - decallefto : decallefto) - leftedge;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2018-04-25 20:09:12 +00:00
|
|
|
float left, right;
|
|
|
|
float lefttex, righttex;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
// decal is off the left edge
|
|
|
|
if (decalpixpos < 0)
|
|
|
|
{
|
|
|
|
left = 0;
|
|
|
|
lefttex = -decalpixpos;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
left = decalpixpos;
|
|
|
|
lefttex = 0;
|
|
|
|
}
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
// decal is off the right edge
|
|
|
|
if (decalpixpos + decalwidth > linelength)
|
|
|
|
{
|
|
|
|
right = linelength;
|
|
|
|
righttex = right - decalpixpos;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
right = decalpixpos + decalwidth;
|
|
|
|
righttex = decalwidth;
|
|
|
|
}
|
2018-04-25 20:09:12 +00:00
|
|
|
if (right <= left) return; // nothing to draw
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
// one texture unit on the wall as vector
|
2018-04-25 20:09:12 +00:00
|
|
|
float vx = (glseg.x2 - glseg.x1) / linelength;
|
|
|
|
float vy = (glseg.y2 - glseg.y1) / linelength;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
|
|
|
DecalVertex *dv = gldecal.dv;
|
2018-04-25 20:09:12 +00:00
|
|
|
dv[1].x = dv[0].x = glseg.x1 + vx * left;
|
|
|
|
dv[1].y = dv[0].y = glseg.y1 + vy * left;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2018-04-25 20:09:12 +00:00
|
|
|
dv[3].x = dv[2].x = glseg.x1 + vx * right;
|
|
|
|
dv[3].y = dv[2].y = glseg.y1 + vy * right;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2018-04-25 20:09:12 +00:00
|
|
|
zpos += (flipy ? decalheight - decaltopo : decaltopo);
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2018-04-25 20:09:12 +00:00
|
|
|
dv[1].z = dv[2].z = zpos;
|
|
|
|
dv[0].z = dv[3].z = dv[1].z - decalheight;
|
|
|
|
dv[1].v = dv[2].v = tex->GetVT();
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2018-04-25 20:09:12 +00:00
|
|
|
dv[1].u = dv[0].u = tex->GetU(lefttex / decal->ScaleX);
|
|
|
|
dv[3].u = dv[2].u = tex->GetU(righttex / decal->ScaleX);
|
|
|
|
dv[0].v = dv[3].v = tex->GetVB();
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
// now clip to the top plane
|
2018-04-27 09:40:23 +00:00
|
|
|
float vzt = (ztop[1] - ztop[0]) / linelength;
|
|
|
|
float topleft = ztop[0] + vzt * left;
|
|
|
|
float topright = ztop[0] + vzt * right;
|
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
// completely below the wall
|
2018-04-25 20:09:12 +00:00
|
|
|
if (topleft < dv[0].z && topright < dv[3].z)
|
2013-06-23 07:49:34 +00:00
|
|
|
return;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2018-04-25 20:09:12 +00:00
|
|
|
if (topleft < dv[1].z || topright < dv[2].z)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
// decal has to be clipped at the top
|
|
|
|
// let texture clamping handle all extreme cases
|
2018-04-25 20:09:12 +00:00
|
|
|
dv[1].v = (dv[1].z - topleft) / (dv[1].z - dv[0].z)*dv[0].v;
|
|
|
|
dv[2].v = (dv[2].z - topright) / (dv[2].z - dv[3].z)*dv[3].v;
|
|
|
|
dv[1].z = topleft;
|
|
|
|
dv[2].z = topright;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
// now clip to the bottom plane
|
2018-04-27 09:40:23 +00:00
|
|
|
float vzb = (zbottom[1] - zbottom[0]) / linelength;
|
|
|
|
float bottomleft = zbottom[0] + vzb * left;
|
|
|
|
float bottomright = zbottom[0] + vzb * right;
|
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
// completely above the wall
|
2018-04-25 20:09:12 +00:00
|
|
|
if (bottomleft > dv[1].z && bottomright > dv[2].z)
|
2013-06-23 07:49:34 +00:00
|
|
|
return;
|
2018-04-27 09:40:23 +00:00
|
|
|
|
2018-04-25 20:09:12 +00:00
|
|
|
if (bottomleft > dv[0].z || bottomright > dv[3].z)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
// decal has to be clipped at the bottom
|
|
|
|
// let texture clamping handle all extreme cases
|
2018-04-25 20:09:12 +00:00
|
|
|
dv[0].v = (dv[1].z - bottomleft) / (dv[1].z - dv[0].z)*(dv[0].v - dv[1].v) + dv[1].v;
|
|
|
|
dv[3].v = (dv[2].z - bottomright) / (dv[2].z - dv[3].z)*(dv[3].v - dv[2].v) + dv[2].v;
|
|
|
|
dv[0].z = bottomleft;
|
|
|
|
dv[3].z = bottomright;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2018-04-27 09:40:23 +00:00
|
|
|
|
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
if (flipx)
|
|
|
|
{
|
|
|
|
float ur = tex->GetUR();
|
2018-04-25 20:09:12 +00:00
|
|
|
for (i = 0; i < 4; i++) dv[i].u = ur - dv[i].u;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
if (flipy)
|
|
|
|
{
|
|
|
|
float vb = tex->GetVB();
|
2018-04-25 20:09:12 +00:00
|
|
|
for (i = 0; i < 4; i++) dv[i].v = vb - dv[i].v;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|
2018-04-27 09:40:23 +00:00
|
|
|
gldecal.zcenter = zpos - decalheight * 0.5f;
|
|
|
|
|
2018-04-27 18:28:59 +00:00
|
|
|
auto verts = di->AllocVertices(4);
|
2018-04-27 09:40:23 +00:00
|
|
|
gldecal.vertindex = verts.second;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
verts.first[i].Set(dv[i].x, dv[i].z, dv[i].y, dv[i].u, dv[i].v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void GLWall::ProcessDecals(HWDrawInfo *di)
|
|
|
|
{
|
|
|
|
if (seg->sidedef != nullptr)
|
|
|
|
{
|
|
|
|
DBaseDecal *decal = seg->sidedef->AttachedDecals;
|
|
|
|
while (decal)
|
|
|
|
{
|
|
|
|
ProcessDecal(di, decal);
|
|
|
|
decal = decal->WallNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|