From 209867e036079d66771977527b4326fc7f1e6ac3 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 21 Aug 2022 12:19:06 +0200 Subject: [PATCH] - cleaned out some unnecessary inlines. --- source/core/coreactor.h | 6 +----- source/core/maptypes.h | 8 -------- source/core/rendering/scene/hw_portal.cpp | 2 +- source/core/rendering/scene/hw_walls.cpp | 4 ++-- source/games/blood/src/animatesprite.cpp | 6 +++--- source/games/duke/src/actors.cpp | 2 +- source/games/duke/src/render.cpp | 4 ++-- source/games/duke/src/types.h | 11 ----------- source/games/exhumed/src/sequence.cpp | 2 +- 9 files changed, 11 insertions(+), 34 deletions(-) diff --git a/source/core/coreactor.h b/source/core/coreactor.h index d6fec64ac..cc436f39b 100644 --- a/source/core/coreactor.h +++ b/source/core/coreactor.h @@ -128,11 +128,7 @@ public: spr.angle = spr.angle.Normalized360(); } - // Same as above but with invertex y and z axes to match the renderer's coordinate system. - DVector3 render_pos() const - { - return { spr.pos.X, -spr.pos.Y, -spr.pos.Z }; - } + // Same as above but with inverted y and z axes to match the renderer's coordinate system. double interpolatedx(double const smoothratio, int const scale = 16) { diff --git a/source/core/maptypes.h b/source/core/maptypes.h index 8bf00a349..4d7bf2988 100644 --- a/source/core/maptypes.h +++ b/source/core/maptypes.h @@ -260,8 +260,6 @@ struct sectortype int int_ceilingz() const { return ceilingz * zworldtoint; } int int_floorz() const { return floorz * zworldtoint; } - float render_ceilingz() const { return (float)-ceilingz; } - float render_floorz() const { return (float)-floorz; } // panning byte fields were promoted to full floats to enable panning interpolation. @@ -509,12 +507,6 @@ struct spritetypebase { angle += DAngle::fromBuild(a); } - - void copy_ang(const spritetypebase* other) - { - angle = other->angle; - } - }; diff --git a/source/core/rendering/scene/hw_portal.cpp b/source/core/rendering/scene/hw_portal.cpp index 10e4878a0..0162d49e7 100644 --- a/source/core/rendering/scene/hw_portal.cpp +++ b/source/core/rendering/scene/hw_portal.cpp @@ -670,7 +670,7 @@ bool HWLineToSpritePortal::Setup(HWDrawInfo* di, FRenderState& rstate, Clipper* di->mClipPortal = this; auto srccenter = (WallStart(origin) + WallEnd(origin)) / 2; - DVector2 destcenter = camera->render_pos().XY(); + DVector2 destcenter = { camera->spr.pos.X, -camera->spr.pos.Y }; DVector2 npos = vp.Pos - srccenter + destcenter; double origx = vp.Pos.X; diff --git a/source/core/rendering/scene/hw_walls.cpp b/source/core/rendering/scene/hw_walls.cpp index 5b59058dc..d26b1f2ee 100644 --- a/source/core/rendering/scene/hw_walls.cpp +++ b/source/core/rendering/scene/hw_walls.cpp @@ -1219,7 +1219,7 @@ void HWWall::ProcessWallSprite(HWDrawInfo* di, tspritetype* spr, sectortype* sec if (!(sector->ceilingstat & CSTAT_SECTOR_SKY)) { float polyh = (ztop[0] - zbottom[0]); - float ceilingz = sector->render_ceilingz(); + float ceilingz = -sector->ceilingz; if (ceilingz < ztop[0] && ceilingz >= zbottom[0]) { float newv = (ceilingz - zbottom[0]) / polyh; @@ -1230,7 +1230,7 @@ void HWWall::ProcessWallSprite(HWDrawInfo* di, tspritetype* spr, sectortype* sec if (!(sector->floorstat & CSTAT_SECTOR_SKY)) { float polyh = (ztop[0] - zbottom[0]); - float floorz = sector->render_floorz(); + float floorz = -sector->floorz; if (floorz <= ztop[0] && floorz > zbottom[0]) { float newv = (floorz - zbottom[0]) / polyh; diff --git a/source/games/blood/src/animatesprite.cpp b/source/games/blood/src/animatesprite.cpp index ee8ea1120..5daaf7cca 100644 --- a/source/games/blood/src/animatesprite.cpp +++ b/source/games/blood/src/animatesprite.cpp @@ -101,7 +101,7 @@ tspritetype* viewInsertTSprite(tspriteArray& tsprites, sectortype* pSector, int { pos = parentTSprite->pos; pTSprite->ownerActor = parentTSprite->ownerActor; - pTSprite->copy_ang(parentTSprite); + pTSprite->angle = parentTSprite->angle; } pos.X += gCameraAng.Cos() * 2; pos.Y += gCameraAng.Sin() * 2; @@ -451,7 +451,7 @@ static tspritetype* viewAddEffect(tspriteArray& tsprites, int nTSprite, VIEW_EFF pNSprite->pal = 2; pNSprite->xrepeat = pNSprite->yrepeat = 64; pNSprite->cstat |= CSTAT_SPRITE_ONE_SIDE | CSTAT_SPRITE_ALIGNMENT_FLOOR | CSTAT_SPRITE_YFLIP | CSTAT_SPRITE_TRANSLUCENT; - pNSprite->copy_ang(pTSprite); + pNSprite->angle = pTSprite->angle; pNSprite->ownerActor = pTSprite->ownerActor; break; } @@ -469,7 +469,7 @@ static tspritetype* viewAddEffect(tspriteArray& tsprites, int nTSprite, VIEW_EFF pNSprite->pal = 2; pNSprite->xrepeat = pNSprite->yrepeat = nShade; pNSprite->cstat |= CSTAT_SPRITE_ONE_SIDE | CSTAT_SPRITE_ALIGNMENT_FLOOR | CSTAT_SPRITE_TRANSLUCENT; - pNSprite->copy_ang(pTSprite); + pNSprite->angle = pTSprite->angle; pNSprite->ownerActor = pTSprite->ownerActor; break; } diff --git a/source/games/duke/src/actors.cpp b/source/games/duke/src/actors.cpp index eb0342f69..cab021d72 100644 --- a/source/games/duke/src/actors.cpp +++ b/source/games/duke/src/actors.cpp @@ -1795,7 +1795,7 @@ void ooz(DDukeActor *actor) { getglobalz(actor); - int j = (actor->actor_int_floorz() - actor->actor_int_ceilingz()) >> 9; + int j = int(actor->floorz - actor->ceilingz) >> 1; if (j > 255) j = 255; int x = 25 - (j >> 1); diff --git a/source/games/duke/src/render.cpp b/source/games/duke/src/render.cpp index f6994afab..96f7e4b37 100644 --- a/source/games/duke/src/render.cpp +++ b/source/games/duke/src/render.cpp @@ -354,8 +354,8 @@ void displayrooms(int snum, double smoothratio, bool sceneonly) } } - cz = p->GetActor()->actor_int_ceilingz(); - fz = p->GetActor()->actor_int_floorz(); + cz = int(p->GetActor()->ceilingz * zworldtoint); + fz = int(p->GetActor()->floorz * zworldtoint); if (earthquaketime > 0 && p->on_ground == 1) { diff --git a/source/games/duke/src/types.h b/source/games/duke/src/types.h index fdb1f34cf..8cbbb603b 100644 --- a/source/games/duke/src/types.h +++ b/source/games/duke/src/types.h @@ -121,17 +121,6 @@ public: void Serialize(FSerializer& arc) override; - int actor_int_ceilingz() const - { - return ceilingz * zworldtoint; - } - - int actor_int_floorz() const - { - return floorz * zworldtoint; - } - - void ChangeType(PClass* newtype) { if (newtype->IsDescendantOf(RUNTIME_CLASS(DDukeActor)) && newtype->Size == RUNTIME_CLASS(DDukeActor)->Size && GetClass()->Size == RUNTIME_CLASS(DDukeActor)->Size) diff --git a/source/games/exhumed/src/sequence.cpp b/source/games/exhumed/src/sequence.cpp index f5b59e9a8..e5e900551 100644 --- a/source/games/exhumed/src/sequence.cpp +++ b/source/games/exhumed/src/sequence.cpp @@ -587,7 +587,7 @@ int seq_PlotSequence(int nSprite, int16_t edx, int16_t nFrame, int16_t ecx) tsp->pal = pTSprite->pal; tsp->xrepeat = pTSprite->xrepeat; tsp->yrepeat = pTSprite->yrepeat; - tsp->copy_ang(pTSprite); + tsp->angle = pTSprite->angle; tsp->ownerActor = pTSprite->ownerActor; tsp->sectp = pTSprite->sectp; tsp->cstat = pTSprite->cstat |= CSTAT_SPRITE_YCENTER;