From 24a6d45f97a7c1955162587e375a0378b47ff525 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 17 Dec 2021 22:53:19 +0100 Subject: [PATCH] - minor slope math optimization. May save one division and merges the '<< 5' into the main calculation. --- source/core/gamefuncs.cpp | 6 +++--- source/core/maploader.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/core/gamefuncs.cpp b/source/core/gamefuncs.cpp index c4610c689..f5df0a4c7 100644 --- a/source/core/gamefuncs.cpp +++ b/source/core/gamefuncs.cpp @@ -170,9 +170,9 @@ void calcSlope(const sectortype* sec, float xpos, float ypos, float* pceilz, flo int len = wal->Length(); if (len != 0) { - float den = (wal->deltax() * (float(ypos - wal->y)) - wal->deltay() * (float(xpos - wal->x))) * (1.f / 8.f); - if (pceilz && sec->ceilingstat & CSTAT_SECTOR_SLOPE) *pceilz += (sec->ceilingheinum * den) / len; - if (pflorz && sec->floorstat & CSTAT_SECTOR_SLOPE) *pflorz += (sec->floorheinum * den) / len; + float fac = (wal->deltax() * (float(ypos - wal->y)) - wal->deltay() * (float(xpos - wal->x))) * (1.f / 256.f) / len; + if (pceilz && sec->ceilingstat & CSTAT_SECTOR_SLOPE) *pceilz += (sec->ceilingheinum * fac); + if (pflorz && sec->floorstat & CSTAT_SECTOR_SLOPE) *pflorz += (sec->floorheinum * fac); } } } diff --git a/source/core/maploader.cpp b/source/core/maploader.cpp index b8f48a6ff..19bc4dcd6 100644 --- a/source/core/maploader.cpp +++ b/source/core/maploader.cpp @@ -64,7 +64,7 @@ void walltype::calcLength() lengthflags &= ~1; point2Wall()->lengthflags &= ~2; auto d = delta(); - length = (int)sqrt(d.x * d.x + d.y * d.y) << 5; + length = (int)sqrt(d.x * d.x + d.y * d.y); } // needed for skipping over to get the map size first.