2019-09-19 22:42:45 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 2010-2019 EDuke32 developers and contributors
|
|
|
|
Copyright (C) 2019 Nuke.YKT
|
|
|
|
|
|
|
|
This file is part of NBlood.
|
|
|
|
|
|
|
|
NBlood is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License version 2
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
2019-09-21 18:59:54 +00:00
|
|
|
#include "ns.h" // Must come before everything else!
|
|
|
|
|
2019-09-19 22:42:45 +00:00
|
|
|
#include "build.h"
|
|
|
|
#include "mmulti.h"
|
|
|
|
#include "common_game.h"
|
|
|
|
#include "levels.h"
|
|
|
|
#include "map2d.h"
|
|
|
|
#include "view.h"
|
2019-12-31 18:50:27 +00:00
|
|
|
#include "v_2ddrawer.h"
|
2020-07-31 18:39:02 +00:00
|
|
|
#include "v_draw.h"
|
2020-08-16 00:55:50 +00:00
|
|
|
#include "statusbar.h"
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2019-09-22 06:39:22 +00:00
|
|
|
BEGIN_BLD_NS
|
|
|
|
|
2019-09-19 22:42:45 +00:00
|
|
|
void sub_2541C(int x, int y, int z, short a)
|
|
|
|
{
|
|
|
|
int tmpydim = (xdim * 5) / 8;
|
|
|
|
renderSetAspect(65536, divscale16(tmpydim * 320, xdim * 200));
|
|
|
|
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 = 0; i < numsectors; i++)
|
|
|
|
{
|
2020-03-07 09:04:29 +00:00
|
|
|
if (gFullMap || show2dsector[i])
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
int nStartWall = sector[i].wallptr;
|
|
|
|
int nEndWall = nStartWall+sector[i].wallnum;
|
|
|
|
int nZCeil = sector[i].ceilingz;
|
|
|
|
int nZFloor = sector[i].floorz;
|
|
|
|
walltype *pWall = &wall[nStartWall];
|
|
|
|
for (int j = nStartWall; j < nEndWall; j++, pWall++)
|
|
|
|
{
|
|
|
|
int nNextWall = pWall->nextwall;
|
|
|
|
if (nNextWall < 0)
|
|
|
|
continue;
|
|
|
|
if (sector[pWall->nextsector].ceilingz == nZCeil && sector[pWall->nextsector].floorz == nZFloor
|
|
|
|
&& ((wall[nNextWall].cstat | pWall->cstat) & 0x30) == 0)
|
|
|
|
continue;
|
2020-03-07 09:04:29 +00:00
|
|
|
if (gFullMap || show2dsector[pWall->nextsector])
|
2019-09-19 22:42:45 +00:00
|
|
|
continue;
|
|
|
|
int wx = pWall->x-x;
|
|
|
|
int wy = pWall->y-y;
|
|
|
|
int cx = xdim<<11;
|
|
|
|
int x1 = cx+dmulscale16(wx, nCos, -wy, nSin);
|
|
|
|
int cy = ydim<<11;
|
|
|
|
int y1 = cy+dmulscale16(wy, nCos2, wx, nSin2);
|
|
|
|
walltype *pWall2 = &wall[pWall->point2];
|
|
|
|
wx = pWall2->x-x;
|
|
|
|
wy = pWall2->y-y;
|
|
|
|
int x2 = cx+dmulscale16(wx, nCos, -wy, nSin);
|
|
|
|
int y2 = cy+dmulscale16(wy, nCos2, wx, nSin2);
|
|
|
|
renderDrawLine(x1,y1,x2,y2,24);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int nPSprite = gView->pSprite->index;
|
|
|
|
for (int i = 0; i < numsectors; i++)
|
|
|
|
{
|
2020-03-07 09:04:29 +00:00
|
|
|
if (gFullMap || show2dsector[i])
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
for (int nSprite = headspritesect[i]; nSprite >= 0; nSprite = nextspritesect[nSprite])
|
|
|
|
{
|
|
|
|
spritetype *pSprite = &sprite[nSprite];
|
|
|
|
if (nSprite == nPSprite)
|
|
|
|
continue;
|
|
|
|
if (pSprite->cstat&32768)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (int i = 0; i < numsectors; i++)
|
|
|
|
{
|
2020-03-07 09:04:29 +00:00
|
|
|
if (gFullMap || show2dsector[i])
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
int nStartWall = sector[i].wallptr;
|
|
|
|
int nEndWall = nStartWall+sector[i].wallnum;
|
|
|
|
walltype *pWall = &wall[nStartWall];
|
|
|
|
int nNWall = -1;
|
|
|
|
int x1, y1, x2 = 0, y2 = 0;
|
|
|
|
for (int j = nStartWall; j < nEndWall; j++, pWall++)
|
|
|
|
{
|
|
|
|
int nNextWall = pWall->nextwall;
|
|
|
|
if (nNextWall >= 0)
|
|
|
|
continue;
|
|
|
|
if (!tilesiz[pWall->picnum].x || !tilesiz[pWall->picnum].y)
|
|
|
|
continue;
|
|
|
|
if (nNWall == j)
|
|
|
|
{
|
|
|
|
x1 = x2;
|
|
|
|
y1 = y2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int wx = pWall->x-x;
|
|
|
|
int wy = pWall->y-y;
|
|
|
|
x1 = (xdim<<11)+dmulscale16(wx, nCos, -wy, nSin);
|
|
|
|
y1 = (ydim<<11)+dmulscale16(wy, nCos2, wx, nSin2);
|
|
|
|
}
|
|
|
|
nNWall = pWall->point2;
|
|
|
|
walltype *pWall2 = &wall[nNWall];
|
|
|
|
int wx = pWall2->x-x;
|
|
|
|
int wy = pWall2->y-y;
|
|
|
|
x2 = (xdim<<11)+dmulscale16(wx, nCos, -wy, nSin);
|
|
|
|
y2 = (ydim<<11)+dmulscale16(wy, nCos2, wx, nSin2);
|
|
|
|
renderDrawLine(x1,y1,x2,y2,24);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
videoSetCorrectedAspect();
|
|
|
|
|
|
|
|
for (int i = connecthead; i >= 0; i = connectpoint2[i])
|
|
|
|
{
|
2019-10-21 19:46:41 +00:00
|
|
|
if (gViewMap.bFollowMode || gView->nPlayer != i)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
PLAYER *pPlayer = &gPlayer[i];
|
|
|
|
spritetype *pSprite = pPlayer->pSprite;
|
|
|
|
int px = pSprite->x-x;
|
|
|
|
int py = pSprite->y-y;
|
|
|
|
int pa = (pSprite->ang-a)&2047;
|
2019-10-21 19:46:41 +00:00
|
|
|
if (i == gView->nPlayer)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
px = 0;
|
|
|
|
py = 0;
|
|
|
|
pa = 0;
|
|
|
|
}
|
|
|
|
int x1 = dmulscale16(px, nCos, -py, nSin);
|
|
|
|
int y1 = dmulscale16(py, nCos2, px, nSin2);
|
2019-10-21 19:46:41 +00:00
|
|
|
if (i == gView->nPlayer || gGameOptions.nGameType == 1)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
int nTile = pSprite->picnum;
|
|
|
|
int ceilZ, ceilHit, floorZ, floorHit;
|
2019-09-07 13:53:42 +00:00
|
|
|
GetZRange(pSprite, &ceilZ, &ceilHit, &floorZ, &floorHit, (pSprite->clipdist<<2)+16, CLIPMASK0, PARALLAXCLIP_CEILING|PARALLAXCLIP_FLOOR);
|
2019-09-19 22:42:45 +00:00
|
|
|
int nTop, nBottom;
|
|
|
|
GetSpriteExtents(pSprite, &nTop, &nBottom);
|
|
|
|
int nScale = mulscale((pSprite->yrepeat+((floorZ-nBottom)>>8))*z, yxaspect, 16);
|
|
|
|
nScale = ClipRange(nScale, 8000, 65536<<1);
|
2020-07-27 22:05:56 +00:00
|
|
|
// Players on automap
|
2020-07-31 18:39:02 +00:00
|
|
|
double x = xdim/2. + x1 / double(1<<12);
|
|
|
|
double y = ydim/2. + y1 / double(1<<12);
|
|
|
|
// This very likely needs fixing later
|
2020-08-14 19:01:27 +00:00
|
|
|
DrawTexture(twod, tileGetTexture(nTile, true), x, y, DTA_FullscreenScale, FSMode_ScaleToFit43, DTA_ViewportX, windowxy1.x, DTA_ViewportY, windowxy1.y,
|
2020-07-31 18:39:02 +00:00
|
|
|
DTA_ViewportWidth, windowxy2.x - windowxy1.x+1, DTA_ViewportHeight, windowxy2.y - windowxy1.y+1, DTA_Alpha, (pSprite->cstat&2? 0.5:1.), TAG_DONE);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CViewMap::CViewMap()
|
|
|
|
{
|
|
|
|
bActive = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CViewMap::sub_25C38(int _x, int _y, int _angle, short zoom, char unk1)
|
|
|
|
{
|
|
|
|
bActive = 1;
|
|
|
|
x = _x;
|
|
|
|
y = _y;
|
|
|
|
angle = _angle;
|
|
|
|
nZoom = zoom;
|
|
|
|
FollowMode(unk1);
|
|
|
|
forward = 0;
|
|
|
|
turn = 0;
|
|
|
|
strafe = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CViewMap::sub_25C74(void)
|
|
|
|
{
|
|
|
|
char pBuffer[128];
|
|
|
|
if (!bActive)
|
|
|
|
return;
|
|
|
|
char tm = 0;
|
2020-08-16 00:55:50 +00:00
|
|
|
if (windowxy1.x > 0)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2020-08-16 00:55:50 +00:00
|
|
|
setViewport(Hud_Stbar);
|
2019-09-19 22:42:45 +00:00
|
|
|
tm = 1;
|
|
|
|
}
|
2019-12-31 18:50:27 +00:00
|
|
|
// only clear the actual window.
|
2020-04-09 05:57:09 +00:00
|
|
|
twod->AddColorOnlyQuad(windowxy1.x, windowxy1.y, (windowxy2.x + 1) - windowxy1.x, (windowxy2.y + 1) - windowxy1.y, 0xff000000);
|
2019-09-19 22:42:45 +00:00
|
|
|
renderDrawMapView(x,y,nZoom>>2,angle);
|
|
|
|
sub_2541C(x,y,nZoom>>2,angle);
|
2020-08-03 17:11:48 +00:00
|
|
|
const char *pTitle = currentLevel->DisplayName();
|
|
|
|
const char *pFilename = currentLevel->LabelName();
|
2019-09-19 22:42:45 +00:00
|
|
|
if (pTitle)
|
|
|
|
sprintf(pBuffer, "%s: %s", pFilename, pTitle);
|
|
|
|
else
|
|
|
|
sprintf(pBuffer, "%s", pFilename);
|
2020-08-16 00:55:50 +00:00
|
|
|
#if 0
|
2019-09-19 22:42:45 +00:00
|
|
|
int nViewY;
|
2020-08-16 00:55:50 +00:00
|
|
|
if (g ViewSize > 3)
|
2019-09-19 22:42:45 +00:00
|
|
|
nViewY = gViewY1S-16;
|
|
|
|
else
|
|
|
|
nViewY = gViewY0S+1;
|
2020-08-10 19:14:42 +00:00
|
|
|
viewDrawText(3, pBuffer, gViewX1S /2, nViewY, -128, 0, 2, 0, 256);
|
2020-08-16 00:55:50 +00:00
|
|
|
#else
|
|
|
|
// This needs fixing across games, so for the time being just print the text into the upper left corner
|
|
|
|
viewDrawText(3, pBuffer, 3, 3, -128, 0, 0, 0, 256);
|
|
|
|
#endif
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2019-12-09 01:01:30 +00:00
|
|
|
#if 0 // needs to be generalized
|
2019-09-19 22:42:45 +00:00
|
|
|
if (gViewMap.bFollowMode)
|
2020-07-31 19:05:09 +00:00
|
|
|
Printf(PRINT_NOTIFY, "MAP FOLLOW MODE\n");
|
2019-09-19 22:42:45 +00:00
|
|
|
else
|
2020-07-31 19:05:09 +00:00
|
|
|
Printf(PRINT_NOTIFY, "MAP SCROLL MODE\n");
|
2019-12-09 01:01:30 +00:00
|
|
|
#endif
|
2019-09-19 22:42:45 +00:00
|
|
|
if (tm)
|
2020-08-16 00:55:50 +00:00
|
|
|
setViewport(hud_size);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CViewMap::sub_25DB0(spritetype *pSprite)
|
|
|
|
{
|
|
|
|
nZoom = gZoom;
|
|
|
|
if (bFollowMode)
|
|
|
|
{
|
|
|
|
x = pSprite->x;
|
|
|
|
y = pSprite->y;
|
|
|
|
angle = pSprite->ang;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-01-30 13:05:34 +00:00
|
|
|
angle += fix16_to_int(turn)>>3;
|
|
|
|
x += mulscale24(forward>>8, Cos(angle));
|
|
|
|
y += mulscale24(forward>>8, Sin(angle));
|
|
|
|
x -= mulscale24(strafe>>8, Cos(angle+512));
|
|
|
|
y -= mulscale24(strafe>>8, Sin(angle+512));
|
2019-09-19 22:42:45 +00:00
|
|
|
forward = 0;
|
|
|
|
strafe = 0;
|
|
|
|
turn = 0;
|
|
|
|
}
|
|
|
|
sub_25C74();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CViewMap::sub_25E84(int *_x, int *_y)
|
|
|
|
{
|
|
|
|
if (_x)
|
|
|
|
*_x = x;
|
|
|
|
if (_y)
|
|
|
|
*_y = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CViewMap::FollowMode(char mode)
|
|
|
|
{
|
|
|
|
bFollowMode = mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
CViewMap gViewMap;
|
2019-09-22 06:39:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
END_BLD_NS
|