mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- partial floatification of wall texturing code.
This commit is contained in:
parent
485a1bd0a5
commit
ee3e3e35e6
2 changed files with 62 additions and 85 deletions
|
@ -191,12 +191,12 @@ private:
|
|||
bool DoHorizon(seg_t * seg,sector_t * fs, vertex_t * v1,vertex_t * v2);
|
||||
|
||||
bool SetWallCoordinates(seg_t * seg, FTexCoordInfo *tci, float ceilingrefheight,
|
||||
fixed_t topleft, fixed_t topright, fixed_t bottomleft, fixed_t bottomright, fixed_t t_ofs);
|
||||
float topleft, float topright, float bottomleft, float bottomright, fixed_t t_ofs);
|
||||
|
||||
void DoTexture(int type,seg_t * seg,int peg,
|
||||
fixed_t ceilingrefheight,fixed_t floorrefheight,
|
||||
fixed_t CeilingHeightstart,fixed_t CeilingHeightend,
|
||||
fixed_t FloorHeightstart,fixed_t FloorHeightend,
|
||||
float CeilingHeightstart,float CeilingHeightend,
|
||||
float FloorHeightstart,float FloorHeightend,
|
||||
fixed_t v_offset);
|
||||
|
||||
void DoMidTexture(seg_t * seg, bool drawfogboundary,
|
||||
|
|
|
@ -393,7 +393,7 @@ bool GLWall::DoHorizon(seg_t * seg,sector_t * fs, vertex_t * v1,vertex_t * v2)
|
|||
ztop[1] = ztop[0] = zbottom[0];
|
||||
}
|
||||
|
||||
if (viewz > fs->GetPlaneTexZ(sector_t::floor))
|
||||
if (ViewPos.Z > fs->GetPlaneTexZF(sector_t::floor))
|
||||
{
|
||||
zbottom[1] = zbottom[0] = fs->GetPlaneTexZF(sector_t::floor);
|
||||
if (fs->GetTexture(sector_t::floor) == skyflatnum)
|
||||
|
@ -428,7 +428,7 @@ bool GLWall::DoHorizon(seg_t * seg,sector_t * fs, vertex_t * v1,vertex_t * v2)
|
|||
//
|
||||
//==========================================================================
|
||||
bool GLWall::SetWallCoordinates(seg_t * seg, FTexCoordInfo *tci, float texturetop,
|
||||
fixed_t topleft, fixed_t topright, fixed_t bottomleft, fixed_t bottomright, fixed_t t_ofs)
|
||||
float topleft, float topright, float bottomleft, float bottomright, fixed_t t_ofs)
|
||||
{
|
||||
//
|
||||
//
|
||||
|
@ -461,8 +461,8 @@ bool GLWall::SetWallCoordinates(seg_t * seg, FTexCoordInfo *tci, float textureto
|
|||
if (topleft >= bottomleft)
|
||||
{
|
||||
// normal case
|
||||
ztop[0]=FIXED2FLOAT(topleft);
|
||||
zbottom[0]=FIXED2FLOAT(bottomleft);
|
||||
ztop[0] = topleft;
|
||||
zbottom[0] = bottomleft;
|
||||
|
||||
if (tci)
|
||||
{
|
||||
|
@ -473,19 +473,17 @@ bool GLWall::SetWallCoordinates(seg_t * seg, FTexCoordInfo *tci, float textureto
|
|||
else
|
||||
{
|
||||
// ceiling below floor - clip to the visible part of the wall
|
||||
fixed_t dch=topright-topleft;
|
||||
fixed_t dfh=bottomright-bottomleft;
|
||||
fixed_t coeff=FixedDiv(bottomleft-topleft, dch-dfh);
|
||||
float dch = topright - topleft;
|
||||
float dfh = bottomright - bottomleft;
|
||||
float inter_x = (bottomleft - topleft) / (dch - dfh);
|
||||
|
||||
fixed_t inter_y=topleft+FixedMul(coeff,dch);
|
||||
|
||||
float inter_x= FIXED2FLOAT(coeff);
|
||||
float inter_y = topleft + inter_x * dch;
|
||||
|
||||
glseg.x1 = glseg.x1 + inter_x * (glseg.x2 - glseg.x1);
|
||||
glseg.y1 = glseg.y1 + inter_x * (glseg.y2 - glseg.y1);
|
||||
glseg.fracleft = inter_x;
|
||||
|
||||
zbottom[0]=ztop[0]=FIXED2FLOAT(inter_y);
|
||||
zbottom[0] = ztop[0] = inter_y;
|
||||
|
||||
if (tci)
|
||||
{
|
||||
|
@ -501,8 +499,8 @@ bool GLWall::SetWallCoordinates(seg_t * seg, FTexCoordInfo *tci, float textureto
|
|||
if (topright >= bottomright)
|
||||
{
|
||||
// normal case
|
||||
ztop[1]=FIXED2FLOAT(topright);
|
||||
zbottom[1]=FIXED2FLOAT(bottomright);
|
||||
ztop[1] = topright;
|
||||
zbottom[1] = bottomright;
|
||||
|
||||
if (tci)
|
||||
{
|
||||
|
@ -513,19 +511,17 @@ bool GLWall::SetWallCoordinates(seg_t * seg, FTexCoordInfo *tci, float textureto
|
|||
else
|
||||
{
|
||||
// ceiling below floor - clip to the visible part of the wall
|
||||
fixed_t dch=topright-topleft;
|
||||
fixed_t dfh=bottomright-bottomleft;
|
||||
fixed_t coeff=FixedDiv(bottomleft-topleft, dch-dfh);
|
||||
float dch = topright - topleft;
|
||||
float dfh = bottomright - bottomleft;
|
||||
float inter_x = (bottomleft - topleft) / (dch - dfh);
|
||||
|
||||
fixed_t inter_y=topleft+FixedMul(coeff,dch);
|
||||
|
||||
float inter_x= FIXED2FLOAT(coeff);
|
||||
float inter_y = topleft + inter_x * dch;
|
||||
|
||||
glseg.x2 = glseg.x1 + inter_x * (glseg.x2 - glseg.x1);
|
||||
glseg.y2 = glseg.y1 + inter_x * (glseg.y2 - glseg.y1);
|
||||
glseg.fracright = inter_x;
|
||||
|
||||
zbottom[1]=ztop[1]=FIXED2FLOAT(inter_y);
|
||||
zbottom[1] = ztop[1] = inter_y;
|
||||
if (tci)
|
||||
{
|
||||
lorgt.v = uprgt.v = tci->FloatToTexV(-ztop[1] + texturetop);
|
||||
|
@ -598,8 +594,8 @@ void GLWall::CheckTexturePosition()
|
|||
//==========================================================================
|
||||
void GLWall::DoTexture(int _type,seg_t * seg, int peg,
|
||||
fixed_t ceilingrefheight,fixed_t floorrefheight,
|
||||
fixed_t topleft,fixed_t topright,
|
||||
fixed_t bottomleft,fixed_t bottomright,
|
||||
float topleft,float topright,
|
||||
float bottomleft,float bottomright,
|
||||
fixed_t v_offset)
|
||||
{
|
||||
if (topleft<=bottomleft && topright<=bottomright) return;
|
||||
|
@ -845,7 +841,7 @@ void GLWall::DoMidTexture(seg_t * seg, bool drawfogboundary,
|
|||
tci.mRenderHeight = -tci.mRenderHeight;
|
||||
tci.mScaleY = -tci.mScaleY;
|
||||
}
|
||||
SetWallCoordinates(seg, &tci, FIXED2FLOAT(texturetop), topleft, topright, bottomleft, bottomright, t_ofs);
|
||||
SetWallCoordinates(seg, &tci, FIXED2FLOAT(texturetop), FIXED2FLOAT(topleft), FIXED2FLOAT(topright), FIXED2FLOAT(bottomleft), FIXED2FLOAT(bottomright), t_ofs);
|
||||
|
||||
//
|
||||
//
|
||||
|
@ -1317,10 +1313,10 @@ void GLWall::DoFFloorBlocks(seg_t * seg,sector_t * frontsector,sector_t * backse
|
|||
void GLWall::Process(seg_t *seg, sector_t * frontsector, sector_t * backsector)
|
||||
{
|
||||
vertex_t * v1, *v2;
|
||||
fixed_t fch1;
|
||||
fixed_t ffh1;
|
||||
fixed_t fch2;
|
||||
fixed_t ffh2;
|
||||
float fch1;
|
||||
float ffh1;
|
||||
float fch2;
|
||||
float ffh2;
|
||||
sector_t * realfront;
|
||||
sector_t * realback;
|
||||
sector_t * segfront;
|
||||
|
@ -1428,22 +1424,10 @@ void GLWall::Process(seg_t *seg, sector_t * frontsector, sector_t * backsector)
|
|||
topplane = frontsector->ceilingplane;
|
||||
bottomplane = frontsector->floorplane;
|
||||
|
||||
double v;
|
||||
v= segfront->floorplane.ZatPoint(v1);
|
||||
zfloor[0] = v;
|
||||
ffh1 = FLOAT2FIXED(v);
|
||||
|
||||
v = segfront->floorplane.ZatPoint(v2);
|
||||
zfloor[1] = v;
|
||||
ffh2 = FLOAT2FIXED(v);
|
||||
|
||||
v = segfront->ceilingplane.ZatPoint(v1);
|
||||
zceil[0] = v;
|
||||
fch1 = FLOAT2FIXED(v);
|
||||
|
||||
v = segfront->ceilingplane.ZatPoint(v2);
|
||||
zceil[1] = v;
|
||||
fch2 = FLOAT2FIXED(v);
|
||||
zfloor[0] = ffh1 = segfront->floorplane.ZatPoint(v1);
|
||||
zfloor[1] = ffh2 = segfront->floorplane.ZatPoint(v2);
|
||||
zceil[0] = fch1 = segfront->ceilingplane.ZatPoint(v1);
|
||||
zceil[1] = fch2 = segfront->ceilingplane.ZatPoint(v2);
|
||||
|
||||
if (seg->linedef->special == Line_Horizon)
|
||||
{
|
||||
|
@ -1482,17 +1466,10 @@ void GLWall::Process(seg_t *seg, sector_t * frontsector, sector_t * backsector)
|
|||
}
|
||||
else // two sided
|
||||
{
|
||||
|
||||
fixed_t bch1;
|
||||
fixed_t bch2;
|
||||
fixed_t bfh1;
|
||||
fixed_t bfh2;
|
||||
|
||||
bfh1 = segback->floorplane.ZatPointFixed(v1);
|
||||
bfh2 = segback->floorplane.ZatPointFixed(v2);
|
||||
|
||||
bch1 = segback->ceilingplane.ZatPointFixed(v1);
|
||||
bch2 = segback->ceilingplane.ZatPointFixed(v2);
|
||||
float bfh1 = segback->floorplane.ZatPoint(v1);
|
||||
float bfh2 = segback->floorplane.ZatPoint(v2);
|
||||
float bch1 = segback->ceilingplane.ZatPoint(v1);
|
||||
float bch2 = segback->ceilingplane.ZatPoint(v2);
|
||||
|
||||
SkyTop(seg, frontsector, backsector, v1, v2);
|
||||
SkyBottom(seg, frontsector, backsector, v1, v2);
|
||||
|
@ -1500,7 +1477,7 @@ void GLWall::Process(seg_t *seg, sector_t * frontsector, sector_t * backsector)
|
|||
// upper texture
|
||||
if (frontsector->GetTexture(sector_t::ceiling) != skyflatnum || backsector->GetTexture(sector_t::ceiling) != skyflatnum)
|
||||
{
|
||||
fixed_t bch1a = bch1, bch2a = bch2;
|
||||
float bch1a = bch1, bch2a = bch2;
|
||||
if (frontsector->GetTexture(sector_t::floor) != skyflatnum || backsector->GetTexture(sector_t::floor) != skyflatnum)
|
||||
{
|
||||
// the back sector's floor obstructs part of this wall
|
||||
|
@ -1563,21 +1540,21 @@ void GLWall::Process(seg_t *seg, sector_t * frontsector, sector_t * backsector)
|
|||
if (gltexture || drawfogboundary)
|
||||
{
|
||||
DoMidTexture(seg, drawfogboundary, frontsector, backsector, realfront, realback,
|
||||
fch1, fch2, ffh1, ffh2, bch1, bch2, bfh1, bfh2);
|
||||
FLOAT2FIXED(fch1), FLOAT2FIXED(fch2), FLOAT2FIXED(ffh1), FLOAT2FIXED(ffh2), FLOAT2FIXED(bch1), FLOAT2FIXED(bch2), FLOAT2FIXED(bfh1), FLOAT2FIXED(bfh2));
|
||||
}
|
||||
|
||||
if (seg->linedef->isVisualPortal() && seg->sidedef == seg->linedef->sidedef[0])
|
||||
{
|
||||
lineportal = linePortalToGL[seg->linedef->portalindex];
|
||||
ztop[0] = FIXED2FLOAT(bch1);
|
||||
ztop[1] = FIXED2FLOAT(bch2);
|
||||
zbottom[0] = FIXED2FLOAT(bfh1);
|
||||
zbottom[1] = FIXED2FLOAT(bfh2);
|
||||
ztop[0] = bch1;
|
||||
ztop[1] = bch2;
|
||||
zbottom[0] = bfh1;
|
||||
zbottom[1] = bfh2;
|
||||
PutPortal(PORTALTYPE_LINETOLINE);
|
||||
}
|
||||
else if (backsector->e->XFloor.ffloors.Size() || frontsector->e->XFloor.ffloors.Size())
|
||||
{
|
||||
DoFFloorBlocks(seg, frontsector, backsector, fch1, fch2, ffh1, ffh2, bch1, bch2, bfh1, bfh2);
|
||||
DoFFloorBlocks(seg, frontsector, backsector, FLOAT2FIXED(fch1), FLOAT2FIXED(fch2), FLOAT2FIXED(ffh1), FLOAT2FIXED(ffh2), FLOAT2FIXED(bch1), FLOAT2FIXED(bch2), FLOAT2FIXED(bfh1), FLOAT2FIXED(bfh2));
|
||||
}
|
||||
|
||||
/* bottom texture */
|
||||
|
@ -1684,7 +1661,7 @@ void GLWall::ProcessLowerMiniseg(seg_t *seg, sector_t * frontsector, sector_t *
|
|||
FTexCoordInfo tci;
|
||||
type = RENDERWALL_BOTTOM;
|
||||
gltexture->GetTexCoordInfo(&tci, FRACUNIT, FRACUNIT);
|
||||
SetWallCoordinates(seg, &tci, FIXED2FLOAT(bfh), bfh, bfh, ffh, ffh, 0);
|
||||
SetWallCoordinates(seg, &tci, FIXED2FLOAT(bfh), FIXED2FLOAT(bfh), FIXED2FLOAT(bfh), FIXED2FLOAT(ffh), FIXED2FLOAT(ffh), 0);
|
||||
PutWall(false);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue