From 5490be4f710558091bdd1e3417f5533773780348 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 8 Sep 2020 21:41:02 +0200 Subject: [PATCH] - draw a player sprite on Exhumed's automap. Not particularly convincing yet, I first need to find out the specific sprites of the walk animation. --- source/exhumed/src/exhumed.h | 1 + source/exhumed/src/map.cpp | 52 ++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) diff --git a/source/exhumed/src/exhumed.h b/source/exhumed/src/exhumed.h index 846566d37..49589816a 100644 --- a/source/exhumed/src/exhumed.h +++ b/source/exhumed/src/exhumed.h @@ -258,6 +258,7 @@ struct GameInterface : ::GameInterface void NewGame(MapRecord *map, int skill) override; void LevelCompleted(MapRecord *map, int skill) override; void NextLevel(MapRecord *map, int skill) override; + bool DrawAutomapPlayer(int x, int y, int z, int a) override; ::GameStats getStats() override; diff --git a/source/exhumed/src/map.cpp b/source/exhumed/src/map.cpp index 086debc6e..b5e7fe763 100644 --- a/source/exhumed/src/map.cpp +++ b/source/exhumed/src/map.cpp @@ -23,6 +23,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include "view.h" #include "v_2ddrawer.h" #include "automap.h" +#include "mmulti.h" +#include "v_draw.h" BEGIN_PS_NS @@ -51,4 +53,54 @@ void DrawMap() DrawOverheadMap(initx, inity, inita); } } + +template void GetSpriteExtents(T const* const pSprite, int* top, int* bottom) +{ + *top = *bottom = pSprite->z; + if ((pSprite->cstat & 0x30) != 0x20) + { + int height = tileHeight(pSprite->picnum); + int center = height / 2 + tileTopOffset(pSprite->picnum); + *top -= (pSprite->yrepeat << 2) * center; + *bottom += (pSprite->yrepeat << 2) * (height - center); + } +} + +bool GameInterface::DrawAutomapPlayer(int x, int y, int z, int a) +{ + int nCos = z * sintable[(0 - a) & 2047]; + int nSin = z * sintable[(1536 - a) & 2047]; + int nCos2 = mulscale16(nCos, yxaspect); + int nSin2 = mulscale16(nSin, yxaspect); + + for (int i = connecthead; i >= 0; i = connectpoint2[i]) + { + int nPSprite = PlayerList[i].nSprite; + spritetype* pSprite = &sprite[nPSprite]; + int px = pSprite->x - x; + int py = pSprite->y - y; + int pa = (pSprite->ang - a) & 2047; + int x1 = dmulscale16(px, nCos, -py, nSin); + int y1 = dmulscale16(py, nCos2, px, nSin2); + if (i == nLocalPlayer)// || gGameOptions.nGameType == 1) + { + int nTile = pSprite->picnum; + int ceilZ, ceilHit, floorZ, floorHit; + getzrange_old(pSprite->x, pSprite->y, pSprite->z, pSprite->sectnum, &ceilZ, &ceilHit, &floorZ, &floorHit, (pSprite->clipdist << 2) + 16, CLIPMASK0); + int nTop, nBottom; + GetSpriteExtents(pSprite, &nTop, &nBottom); + int nScale = mulscale((pSprite->yrepeat + ((floorZ - nBottom) >> 8)) * z, yxaspect, 16); + nScale = clamp(nScale, 8000, 65536 << 1); + // Players on automap + double x = xdim / 2. + x1 / double(1 << 12); + double y = ydim / 2. + y1 / double(1 << 12); + // This very likely needs fixing later + DrawTexture(twod, tileGetTexture(nTile /*+ ((leveltime >> 2) & 3)*/, true), x, y, DTA_ClipLeft, windowxy1.x, DTA_ClipTop, windowxy1.y, DTA_ScaleX, z / 1536., DTA_ScaleY, z / 1536., DTA_CenterOffset, true, + DTA_ClipRight, windowxy2.x + 1, DTA_ClipBottom, windowxy2.y + 1, DTA_Alpha, (pSprite->cstat & 2 ? 0.5 : 1.), TAG_DONE); + break; + } + } + return true; +} + END_PS_NS