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 <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "build.h"
|
2020-07-31 19:05:09 +00:00
|
|
|
#include "v_font.h"
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2020-12-09 14:56:32 +00:00
|
|
|
#include "blood.h"
|
2020-07-31 19:05:09 +00:00
|
|
|
#include "choke.h"
|
2019-11-10 10:42:25 +00:00
|
|
|
#include "zstring.h"
|
2020-10-04 16:31:48 +00:00
|
|
|
#include "razemenu.h"
|
2019-12-09 01:01:30 +00:00
|
|
|
#include "gstrings.h"
|
2019-12-30 18:29:32 +00:00
|
|
|
#include "v_2ddrawer.h"
|
2020-01-12 19:28:07 +00:00
|
|
|
#include "v_video.h"
|
2020-07-31 19:05:09 +00:00
|
|
|
#include "v_font.h"
|
2020-09-06 08:59:45 +00:00
|
|
|
#include "statusbar.h"
|
2020-09-06 10:44:58 +00:00
|
|
|
#include "automap.h"
|
2021-02-16 10:36:08 +00:00
|
|
|
#include "gamefuncs.h"
|
2020-10-04 16:31:48 +00:00
|
|
|
#include "v_draw.h"
|
2021-04-11 07:59:55 +00:00
|
|
|
#include "precache.h"
|
2021-03-20 22:01:16 +00:00
|
|
|
#include "render.h"
|
2021-05-30 21:00:06 +00:00
|
|
|
#include "razefont.h"
|
2019-09-19 22:42:45 +00:00
|
|
|
|
|
|
|
|
2021-03-20 22:01:16 +00:00
|
|
|
EXTERN_CVAR(Bool, testnewrenderer)
|
2019-09-22 06:39:22 +00:00
|
|
|
BEGIN_BLD_NS
|
|
|
|
|
2019-09-19 22:42:45 +00:00
|
|
|
VIEW gPrevView[kMaxPlayers];
|
|
|
|
VIEWPOS gViewPos;
|
|
|
|
int gViewIndex;
|
|
|
|
|
2020-08-02 22:50:48 +00:00
|
|
|
double gInterpolate;
|
2019-09-19 22:42:45 +00:00
|
|
|
|
|
|
|
int gScreenTilt;
|
|
|
|
|
|
|
|
void viewBackupView(int nPlayer)
|
|
|
|
{
|
|
|
|
PLAYER *pPlayer = &gPlayer[nPlayer];
|
|
|
|
VIEW *pView = &gPrevView[nPlayer];
|
2021-03-20 18:20:42 +00:00
|
|
|
pView->angle = pPlayer->angle.ang;
|
|
|
|
pView->x = pPlayer->pSprite->x;
|
|
|
|
pView->y = pPlayer->pSprite->y;
|
|
|
|
pView->viewz = pPlayer->zView;
|
|
|
|
pView->weaponZ = pPlayer->zWeapon-pPlayer->zView-0xc00;
|
|
|
|
pView->horiz = pPlayer->horizon.horiz;
|
|
|
|
pView->horizoff = pPlayer->horizon.horizoff;
|
2019-10-21 19:46:41 +00:00
|
|
|
pView->at2c = pPlayer->slope;
|
2021-03-20 18:20:42 +00:00
|
|
|
pView->bobHeight = pPlayer->bobHeight;
|
|
|
|
pView->bobWidth = pPlayer->bobWidth;
|
|
|
|
pView->shakeBobY = pPlayer->swayHeight;
|
|
|
|
pView->shakeBobX = pPlayer->swayWidth;
|
2020-10-07 20:55:54 +00:00
|
|
|
pView->look_ang = pPlayer->angle.look_ang;
|
|
|
|
pView->rotscrnang = pPlayer->angle.rotscrnang;
|
2020-10-08 12:31:21 +00:00
|
|
|
pPlayer->angle.backup();
|
|
|
|
pPlayer->horizon.backup();
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
2019-09-07 16:39:26 +00:00
|
|
|
void viewCorrectViewOffsets(int nPlayer, vec3_t const *oldpos)
|
|
|
|
{
|
|
|
|
PLAYER *pPlayer = &gPlayer[nPlayer];
|
|
|
|
VIEW *pView = &gPrevView[nPlayer];
|
2021-03-20 18:20:42 +00:00
|
|
|
pView->x += pPlayer->pSprite->x-oldpos->x;
|
|
|
|
pView->y += pPlayer->pSprite->y-oldpos->y;
|
|
|
|
pView->viewz += pPlayer->pSprite->z-oldpos->z;
|
2019-09-07 16:39:26 +00:00
|
|
|
}
|
|
|
|
|
2021-11-16 17:36:34 +00:00
|
|
|
void viewDrawText(FFont* pFont, const char *pString, int x, int y, int nShade, int nPalette, int position, bool shadow)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-05-29 13:28:47 +00:00
|
|
|
if (!pString) return;
|
2020-07-14 13:25:35 +00:00
|
|
|
|
|
|
|
//y += pFont->yoff;
|
|
|
|
|
2020-08-10 19:14:42 +00:00
|
|
|
if (position == 1) x -= pFont->StringWidth(pString) / 2;
|
|
|
|
if (position == 2) x -= pFont->StringWidth(pString);
|
|
|
|
|
2020-07-31 19:05:09 +00:00
|
|
|
|
|
|
|
if (shadow)
|
|
|
|
{
|
2021-05-29 09:47:05 +00:00
|
|
|
DrawText(twod, pFont, CR_UNTRANSLATED, x+1, y+1, pString, DTA_FullscreenScale, FSMode_Fit320x200, DTA_Color, 0xff000000, DTA_Alpha, 0.5, TAG_DONE);
|
2020-07-31 19:05:09 +00:00
|
|
|
}
|
2021-05-29 09:47:05 +00:00
|
|
|
DrawText(twod, pFont, CR_NATIVEPAL, x, y, pString, DTA_FullscreenScale, FSMode_Fit320x200, DTA_TranslationIndex, TRANSLATION(Translation_Remap, nPalette),
|
2021-05-29 13:28:47 +00:00
|
|
|
DTA_Color, shadeToLight(nShade), TAG_DONE);
|
2020-08-01 18:07:32 +00:00
|
|
|
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
2019-12-08 23:55:30 +00:00
|
|
|
GameStats GameInterface::getStats()
|
|
|
|
{
|
2020-09-02 05:47:26 +00:00
|
|
|
return { gKillMgr.Kills, gKillMgr.TotalKills, gSecretMgr.Founds, gSecretMgr.Total, gFrameCount / kTicsPerSec, gPlayer[myconnectindex].fragCount };
|
2019-12-08 23:55:30 +00:00
|
|
|
}
|
|
|
|
|
2019-10-27 16:55:14 +00:00
|
|
|
void viewDrawAimedPlayerName(void)
|
|
|
|
{
|
|
|
|
if (!cl_idplayers || (gView->aim.dx == 0 && gView->aim.dy == 0))
|
|
|
|
return;
|
|
|
|
|
2021-09-05 07:53:06 +00:00
|
|
|
int hit = HitScan(gView->actor, gView->zView, gView->aim.dx, gView->aim.dy, gView->aim.dz, CLIPMASK0, 512);
|
2019-10-27 16:55:14 +00:00
|
|
|
if (hit == 3)
|
|
|
|
{
|
2021-05-05 14:43:42 +00:00
|
|
|
if (gHitInfo.hitactor && gHitInfo.hitactor->IsPlayerActor())
|
2019-10-27 16:55:14 +00:00
|
|
|
{
|
2021-05-05 14:43:42 +00:00
|
|
|
spritetype* pSprite = &gHitInfo.hitactor->s();
|
2020-11-22 12:28:20 +00:00
|
|
|
int nPlayer = pSprite->type-kDudePlayer1;
|
|
|
|
const char* szName = PlayerName(nPlayer);
|
2019-10-27 16:55:14 +00:00
|
|
|
int nPalette = (gPlayer[nPlayer].teamId&3)+11;
|
2021-05-29 13:28:47 +00:00
|
|
|
viewDrawText(DigiFont, szName, 160, 125, -128, nPalette, 1, 1);
|
2019-10-27 16:55:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-11 21:54:33 +00:00
|
|
|
static TArray<uint8_t> lensdata;
|
2019-09-19 22:42:45 +00:00
|
|
|
int *lensTable;
|
|
|
|
|
2020-08-02 17:59:14 +00:00
|
|
|
extern int dword_172CE0[16][3];
|
2019-09-19 22:42:45 +00:00
|
|
|
|
|
|
|
void viewInit(void)
|
|
|
|
{
|
2020-04-11 21:45:45 +00:00
|
|
|
Printf("Initializing status bar\n");
|
2021-05-30 08:56:31 +00:00
|
|
|
|
2020-04-11 21:54:33 +00:00
|
|
|
lensdata = fileSystem.LoadFile("lens.dat");
|
2020-10-11 10:38:17 +00:00
|
|
|
assert(lensdata.Size() == kLensSize * kLensSize * sizeof(int));
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2020-04-11 21:54:33 +00:00
|
|
|
lensTable = (int*)lensdata.Data();
|
2021-12-14 11:08:48 +00:00
|
|
|
#if WORDS_BIGENDIAN
|
2019-09-19 22:42:45 +00:00
|
|
|
for (int i = 0; i < kLensSize*kLensSize; i++)
|
|
|
|
{
|
2020-08-03 17:09:57 +00:00
|
|
|
lensTable[i] = LittleLong(lensTable[i]);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
#endif
|
2020-09-01 17:59:15 +00:00
|
|
|
uint8_t *data = TileFiles.tileCreate(4077, kLensSize, kLensSize);
|
2020-04-11 22:04:02 +00:00
|
|
|
memset(data, TRANSPARENT_INDEX, kLensSize*kLensSize);
|
2019-09-19 22:42:45 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < 16; i++)
|
|
|
|
{
|
2021-01-04 11:36:54 +00:00
|
|
|
dword_172CE0[i][0] = MulScale(wrand(), 2048, 16);
|
|
|
|
dword_172CE0[i][1] = MulScale(wrand(), 2048, 16);
|
|
|
|
dword_172CE0[i][2] = MulScale(wrand(), 2048, 16);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int othercameradist = 1280;
|
2021-02-16 10:36:08 +00:00
|
|
|
int othercameraclock;
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2020-09-01 18:14:15 +00:00
|
|
|
void CalcOtherPosition(spritetype *pSprite, int *pX, int *pY, int *pZ, int *vsectnum, int nAng, fixed_t zm, int smoothratio)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-01-04 11:36:54 +00:00
|
|
|
int vX = MulScale(-Cos(nAng), 1280, 30);
|
|
|
|
int vY = MulScale(-Sin(nAng), 1280, 30);
|
2021-01-04 11:57:26 +00:00
|
|
|
int vZ = FixedToInt(MulScale(zm, 1280, 3))-(16<<8);
|
2019-09-19 22:42:45 +00:00
|
|
|
int bakCstat = pSprite->cstat;
|
|
|
|
pSprite->cstat &= ~256;
|
2020-10-11 10:38:17 +00:00
|
|
|
assert(*vsectnum >= 0 && *vsectnum < kMaxSectors);
|
2019-09-19 22:42:45 +00:00
|
|
|
FindSector(*pX, *pY, *pZ, vsectnum);
|
2021-11-16 17:20:24 +00:00
|
|
|
int nHSector;
|
2019-09-19 22:42:45 +00:00
|
|
|
int hX, hY;
|
|
|
|
vec3_t pos = {*pX, *pY, *pZ};
|
|
|
|
hitdata_t hitdata;
|
|
|
|
hitscan(&pos, *vsectnum, vX, vY, vZ, &hitdata, CLIPMASK1);
|
|
|
|
nHSector = hitdata.sect;
|
|
|
|
hX = hitdata.pos.x;
|
|
|
|
hY = hitdata.pos.y;
|
|
|
|
int dX = hX-*pX;
|
|
|
|
int dY = hY-*pY;
|
2021-01-04 12:02:00 +00:00
|
|
|
if (abs(vX)+abs(vY) > abs(dX)+abs(dY))
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
*vsectnum = nHSector;
|
2021-01-04 12:35:33 +00:00
|
|
|
dX -= Sgn(vX)<<6;
|
|
|
|
dY -= Sgn(vY)<<6;
|
2019-09-19 22:42:45 +00:00
|
|
|
int nDist;
|
2021-01-04 12:02:00 +00:00
|
|
|
if (abs(vX) > abs(vY))
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-01-04 11:51:41 +00:00
|
|
|
nDist = ClipHigh(DivScale(dX,vX, 16), othercameradist);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-01-04 11:51:41 +00:00
|
|
|
nDist = ClipHigh(DivScale(dY,vY, 16), othercameradist);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
othercameradist = nDist;
|
|
|
|
}
|
2021-01-04 11:36:54 +00:00
|
|
|
*pX += MulScale(vX, othercameradist, 16);
|
|
|
|
*pY += MulScale(vY, othercameradist, 16);
|
|
|
|
*pZ += MulScale(vZ, othercameradist, 16);
|
2021-02-18 10:46:36 +00:00
|
|
|
int myclock = PlayClock + MulScale(4, smoothratio, 16);
|
2020-09-01 18:14:15 +00:00
|
|
|
othercameradist = ClipHigh(othercameradist+((myclock-othercameraclock)<<10), 65536);
|
|
|
|
othercameraclock = myclock;
|
2020-10-11 10:38:17 +00:00
|
|
|
assert(*vsectnum >= 0 && *vsectnum < kMaxSectors);
|
2019-09-19 22:42:45 +00:00
|
|
|
FindSector(*pX, *pY, *pZ, vsectnum);
|
|
|
|
pSprite->cstat = bakCstat;
|
|
|
|
}
|
|
|
|
|
2019-10-07 19:29:52 +00:00
|
|
|
// by NoOne: show warning msgs in game instead of throwing errors (in some cases)
|
|
|
|
void viewSetSystemMessage(const char* pMessage, ...) {
|
2019-10-19 19:11:39 +00:00
|
|
|
char buffer[1024]; va_list args; va_start(args, pMessage);
|
2019-10-07 19:29:52 +00:00
|
|
|
vsprintf(buffer, pMessage, args);
|
2019-10-19 19:11:39 +00:00
|
|
|
|
2019-12-04 20:35:35 +00:00
|
|
|
Printf(PRINT_HIGH | PRINT_NOTIFY, "%s\n", buffer); // print it also in console
|
2019-10-07 19:29:52 +00:00
|
|
|
}
|
|
|
|
|
2019-09-19 06:10:18 +00:00
|
|
|
void viewSetMessage(const char *pMessage, const int pal, const MESSAGE_PRIORITY priority)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2020-08-23 20:39:53 +00:00
|
|
|
int printlevel = priority <= MESSAGE_PRIORITY_NORMAL ? PRINT_LOW : priority < MESSAGE_PRIORITY_SYSTEM ? PRINT_MEDIUM : PRINT_HIGH;
|
2019-12-04 20:35:35 +00:00
|
|
|
Printf(printlevel|PRINT_NOTIFY, "%s\n", pMessage);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void viewSetErrorMessage(const char *pMessage)
|
|
|
|
{
|
2020-09-08 16:28:41 +00:00
|
|
|
Printf(PRINT_BOLD|PRINT_NOTIFY, "%s\n", pMessage);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DoLensEffect(void)
|
|
|
|
{
|
2019-10-11 21:31:59 +00:00
|
|
|
// To investigate whether this can be implemented as a shader effect.
|
|
|
|
auto d = tileData(4077);
|
2020-10-11 10:38:17 +00:00
|
|
|
assert(d != NULL);
|
2019-10-11 21:31:59 +00:00
|
|
|
auto s = tilePtr(4079);
|
2020-10-11 10:38:17 +00:00
|
|
|
assert(s != NULL);
|
2019-09-19 22:42:45 +00:00
|
|
|
for (int i = 0; i < kLensSize*kLensSize; i++, d++)
|
|
|
|
if (lensTable[i] >= 0)
|
|
|
|
*d = s[lensTable[i]];
|
2020-08-22 16:12:19 +00:00
|
|
|
TileFiles.InvalidateTile(4077);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateDacs(int nPalette, bool bNoTint)
|
|
|
|
{
|
2020-07-27 21:29:10 +00:00
|
|
|
gLastPal = 0;
|
|
|
|
auto& tint = lookups.tables[MAXPALOOKUPS - 1];
|
|
|
|
tint.tintFlags = 0;
|
|
|
|
switch (nPalette)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2020-07-27 21:29:10 +00:00
|
|
|
case 0:
|
|
|
|
default:
|
|
|
|
tint.tintColor.r = 255;
|
|
|
|
tint.tintColor.g = 255;
|
|
|
|
tint.tintColor.b = 255;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
tint.tintColor.r = 132;
|
|
|
|
tint.tintColor.g = 164;
|
|
|
|
tint.tintColor.b = 255;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
tint.tintColor.r = 255;
|
|
|
|
tint.tintColor.g = 126;
|
|
|
|
tint.tintColor.b = 105;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
tint.tintColor.r = 162;
|
|
|
|
tint.tintColor.g = 186;
|
|
|
|
tint.tintColor.b = 15;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
tint.tintColor.r = 255;
|
|
|
|
tint.tintColor.g = 255;
|
|
|
|
tint.tintColor.b = 255;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
videoSetPalette(nPalette);
|
|
|
|
}
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2020-07-27 21:29:10 +00:00
|
|
|
void UpdateBlend()
|
|
|
|
{
|
|
|
|
int nRed = 0;
|
|
|
|
int nGreen = 0;
|
|
|
|
int nBlue = 0;
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2020-07-27 21:29:10 +00:00
|
|
|
nRed += gView->pickupEffect;
|
|
|
|
nGreen += gView->pickupEffect;
|
|
|
|
nBlue -= gView->pickupEffect;
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2020-07-27 21:29:10 +00:00
|
|
|
nRed += ClipHigh(gView->painEffect, 85) * 2;
|
|
|
|
nGreen -= ClipHigh(gView->painEffect, 85) * 3;
|
|
|
|
nBlue -= ClipHigh(gView->painEffect, 85) * 3;
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2020-07-27 21:29:10 +00:00
|
|
|
nRed -= gView->blindEffect;
|
|
|
|
nGreen -= gView->blindEffect;
|
|
|
|
nBlue -= gView->blindEffect;
|
|
|
|
|
|
|
|
nRed -= gView->chokeEffect >> 6;
|
|
|
|
nGreen -= gView->chokeEffect >> 5;
|
|
|
|
nBlue -= gView->chokeEffect >> 6;
|
|
|
|
|
|
|
|
nRed = ClipRange(nRed, -255, 255);
|
|
|
|
nGreen = ClipRange(nGreen, -255, 255);
|
|
|
|
nBlue = ClipRange(nBlue, -255, 255);
|
|
|
|
|
|
|
|
videoTintBlood(nRed, nGreen, nBlue);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int gVisibility;
|
|
|
|
|
|
|
|
int deliriumTilt, deliriumTurn, deliriumPitch;
|
|
|
|
int gScreenTiltO, deliriumTurnO, deliriumPitchO;
|
|
|
|
|
|
|
|
int gShowFrameRate = 1;
|
|
|
|
|
|
|
|
void viewUpdateDelirium(void)
|
|
|
|
{
|
|
|
|
gScreenTiltO = gScreenTilt;
|
|
|
|
deliriumTurnO = deliriumTurn;
|
|
|
|
deliriumPitchO = deliriumPitch;
|
|
|
|
int powerCount;
|
2019-10-19 19:11:39 +00:00
|
|
|
if ((powerCount = powerupCheck(gView, kPwUpDeliriumShroom)) != 0)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
int tilt1 = 170, tilt2 = 170, pitch = 20;
|
2021-02-18 10:46:36 +00:00
|
|
|
int timer = PlayClock*4;
|
2019-09-19 22:42:45 +00:00
|
|
|
if (powerCount < 512)
|
|
|
|
{
|
2020-09-01 13:00:35 +00:00
|
|
|
int powerScale = IntToFixed(powerCount) / 512;
|
2021-01-04 11:36:54 +00:00
|
|
|
tilt1 = MulScale(tilt1, powerScale, 16);
|
|
|
|
tilt2 = MulScale(tilt2, powerScale, 16);
|
|
|
|
pitch = MulScale(pitch, powerScale, 16);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2021-10-30 06:34:08 +00:00
|
|
|
int sin2 = Sin(2*timer) >> 1;
|
|
|
|
int sin3 = Sin(3*timer) >> 1;
|
2021-01-04 11:36:54 +00:00
|
|
|
gScreenTilt = MulScale(sin2+sin3,tilt1, 30);
|
2021-10-30 06:34:08 +00:00
|
|
|
int sin4 = Sin(4*timer) >> 1;
|
2021-01-04 11:36:54 +00:00
|
|
|
deliriumTurn = MulScale(sin3+sin4,tilt2, 30);
|
2021-10-30 06:34:08 +00:00
|
|
|
int sin5 = Sin(5*timer) >> 1;
|
2021-01-04 11:36:54 +00:00
|
|
|
deliriumPitch = MulScale(sin4+sin5,pitch, 30);
|
2019-09-19 22:42:45 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
gScreenTilt = ((gScreenTilt+1024)&2047)-1024;
|
|
|
|
if (gScreenTilt > 0)
|
|
|
|
{
|
|
|
|
gScreenTilt -= 8;
|
|
|
|
if (gScreenTilt < 0)
|
|
|
|
gScreenTilt = 0;
|
|
|
|
}
|
|
|
|
else if (gScreenTilt < 0)
|
|
|
|
{
|
|
|
|
gScreenTilt += 8;
|
|
|
|
if (gScreenTilt >= 0)
|
|
|
|
gScreenTilt = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-21 07:58:38 +00:00
|
|
|
void viewUpdateShake(int& cX, int& cY, int& cZ, binangle& cA, fixedhoriz& cH, double& pshakeX, double& pshakeY)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-11-06 04:14:25 +00:00
|
|
|
auto doEffect = [&](const int& effectType)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-11-06 04:14:25 +00:00
|
|
|
if (effectType)
|
|
|
|
{
|
|
|
|
int nValue = ClipHigh(effectType * 8, 2000);
|
|
|
|
cH += buildhoriz(QRandom2(nValue >> 8));
|
|
|
|
cA += buildang(QRandom2(nValue >> 8));
|
|
|
|
cX += QRandom2(nValue >> 4);
|
|
|
|
cY += QRandom2(nValue >> 4);
|
|
|
|
cZ += QRandom2(nValue);
|
|
|
|
pshakeX += QRandom2(nValue);
|
|
|
|
pshakeY += QRandom2(nValue);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
doEffect(gView->flickerEffect);
|
|
|
|
doEffect(gView->quakeEffect);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int gLastPal = 0;
|
|
|
|
|
|
|
|
int32_t g_frameRate;
|
|
|
|
|
2020-09-06 08:59:45 +00:00
|
|
|
static void DrawMap(spritetype* pSprite)
|
|
|
|
{
|
|
|
|
int tm = 0;
|
|
|
|
if (windowxy1.x > 0)
|
|
|
|
{
|
|
|
|
setViewport(Hud_Stbar);
|
|
|
|
tm = 1;
|
|
|
|
}
|
2021-01-02 08:36:46 +00:00
|
|
|
VIEW* pView = &gPrevView[gViewIndex];
|
2021-04-11 06:45:19 +00:00
|
|
|
int x = interpolatedvalue(pView->x, pSprite->x, gInterpolate);
|
|
|
|
int y = interpolatedvalue(pView->y, pSprite->y, gInterpolate);
|
2021-01-02 08:36:46 +00:00
|
|
|
int ang = (!SyncInput() ? gView->angle.sum() : gView->angle.interpolatedsum(gInterpolate)).asbuild();
|
|
|
|
DrawOverheadMap(x, y, ang, gInterpolate);
|
2020-09-06 08:59:45 +00:00
|
|
|
if (tm)
|
|
|
|
setViewport(hud_size);
|
|
|
|
}
|
|
|
|
|
2021-04-11 05:43:11 +00:00
|
|
|
void SetupView(int &cX, int& cY, int& cZ, binangle& cA, fixedhoriz& cH, int& nSectnum, double& zDelta, double& shakeX, double& shakeY, binangle& rotscrnang)
|
2021-03-20 22:01:16 +00:00
|
|
|
{
|
|
|
|
int bobWidth, bobHeight;
|
2021-03-21 09:58:11 +00:00
|
|
|
|
2021-03-20 22:01:16 +00:00
|
|
|
nSectnum = gView->pSprite->sectnum;
|
|
|
|
if (numplayers > 1 && gView == gMe && gPrediction && gMe->pXSprite->health > 0)
|
|
|
|
{
|
|
|
|
nSectnum = predict.sectnum;
|
2021-04-11 06:45:19 +00:00
|
|
|
cX = interpolatedvalue(predictOld.x, predict.x, gInterpolate);
|
|
|
|
cY = interpolatedvalue(predictOld.y, predict.y, gInterpolate);
|
|
|
|
cZ = interpolatedvalue(predictOld.viewz, predict.viewz, gInterpolate);
|
|
|
|
zDelta = interpolatedvaluef(predictOld.weaponZ, predict.weaponZ, gInterpolate);
|
|
|
|
bobWidth = interpolatedvalue(predictOld.bobWidth, predict.bobWidth, gInterpolate);
|
|
|
|
bobHeight = interpolatedvalue(predictOld.bobHeight, predict.bobHeight, gInterpolate);
|
|
|
|
shakeX = interpolatedvaluef(predictOld.shakeBobX, predict.shakeBobX, gInterpolate);
|
|
|
|
shakeY = interpolatedvaluef(predictOld.shakeBobY, predict.shakeBobY, gInterpolate);
|
2021-03-20 22:01:16 +00:00
|
|
|
|
|
|
|
if (!SyncInput())
|
|
|
|
{
|
|
|
|
cA = bamang(predict.angle.asbam() + predict.look_ang.asbam());
|
|
|
|
cH = predict.horiz + predict.horizoff;
|
|
|
|
rotscrnang = predict.rotscrnang;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-11-06 03:00:41 +00:00
|
|
|
cA = interpolatedangle(predictOld.angle + predictOld.look_ang, predict.angle + predict.look_ang, gInterpolate);
|
|
|
|
cH = interpolatedhorizon(predictOld.horiz + predictOld.horizoff, predict.horiz + predict.horizoff, gInterpolate);
|
2021-04-11 06:45:19 +00:00
|
|
|
rotscrnang = interpolatedangle(predictOld.rotscrnang, predict.rotscrnang, gInterpolate);
|
2021-03-20 22:01:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
VIEW* pView = &gPrevView[gViewIndex];
|
2021-04-11 06:45:19 +00:00
|
|
|
cX = interpolatedvalue(pView->x, gView->pSprite->x, gInterpolate);
|
|
|
|
cY = interpolatedvalue(pView->y, gView->pSprite->y, gInterpolate);
|
|
|
|
cZ = interpolatedvalue(pView->viewz, gView->zView, gInterpolate);
|
|
|
|
zDelta = interpolatedvaluef(pView->weaponZ, gView->zWeapon - gView->zView - (12 << 8), gInterpolate);
|
|
|
|
bobWidth = interpolatedvalue(pView->bobWidth, gView->bobWidth, gInterpolate);
|
|
|
|
bobHeight = interpolatedvalue(pView->bobHeight, gView->bobHeight, gInterpolate);
|
|
|
|
shakeX = interpolatedvaluef(pView->shakeBobX, gView->swayWidth, gInterpolate);
|
|
|
|
shakeY = interpolatedvaluef(pView->shakeBobY, gView->swayHeight, gInterpolate);
|
2021-03-20 22:01:16 +00:00
|
|
|
|
|
|
|
if (!SyncInput())
|
|
|
|
{
|
|
|
|
cA = gView->angle.sum();
|
|
|
|
cH = gView->horizon.sum();
|
|
|
|
rotscrnang = gView->angle.rotscrnang;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cA = gView->angle.interpolatedsum(gInterpolate);
|
|
|
|
cH = gView->horizon.interpolatedsum(gInterpolate);
|
|
|
|
rotscrnang = gView->angle.interpolatedrotscrn(gInterpolate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-21 07:58:38 +00:00
|
|
|
viewUpdateShake(cX, cY, cZ, cA, cH, shakeX, shakeY);
|
2021-10-04 21:43:32 +00:00
|
|
|
cH += buildhoriz(MulScale(0x40000000 - Cos(gView->tiltEffect << 2), 30, 30));
|
2021-03-20 22:01:16 +00:00
|
|
|
if (gViewPos == 0)
|
|
|
|
{
|
|
|
|
if (cl_viewhbob)
|
|
|
|
{
|
|
|
|
cX -= MulScale(bobWidth, Sin(cA.asbuild()), 30) >> 4;
|
|
|
|
cY += MulScale(bobWidth, Cos(cA.asbuild()), 30) >> 4;
|
|
|
|
}
|
|
|
|
if (cl_viewvbob)
|
|
|
|
{
|
|
|
|
cZ += bobHeight;
|
|
|
|
}
|
2021-10-04 21:43:32 +00:00
|
|
|
cZ += xs_CRoundToInt(cH.asq16() / 6553.6);
|
2021-03-20 22:01:16 +00:00
|
|
|
cameradist = -1;
|
|
|
|
cameraclock = PlayClock + MulScale(4, (int)gInterpolate, 16);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-11-06 18:27:51 +00:00
|
|
|
calcChaseCamPos((int*)&cX, (int*)&cY, (int*)&cZ, gView->pSprite, &nSectnum, cA, cH, gInterpolate);
|
2021-03-20 22:01:16 +00:00
|
|
|
}
|
|
|
|
CheckLink((int*)&cX, (int*)&cY, (int*)&cZ, &nSectnum);
|
|
|
|
}
|
|
|
|
|
2021-03-20 18:20:42 +00:00
|
|
|
void renderCrystalBall()
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
int tmp = (PlayClock / 240) % (gNetPlayers - 1);
|
|
|
|
int i = connecthead;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
if (i == gViewIndex)
|
|
|
|
i = connectpoint2[i];
|
|
|
|
if (tmp == 0)
|
|
|
|
break;
|
|
|
|
i = connectpoint2[i];
|
|
|
|
tmp--;
|
|
|
|
}
|
|
|
|
PLAYER* pOther = &gPlayer[i];
|
|
|
|
//othercameraclock = PlayClock + MulScale(4, (int)gInterpolate, 16);;
|
|
|
|
if (!tileData(4079))
|
|
|
|
{
|
|
|
|
TileFiles.tileCreate(4079, 128, 128);
|
|
|
|
}
|
|
|
|
//renderSetTarget(4079, 128, 128);
|
|
|
|
renderSetAspect(65536, 78643);
|
|
|
|
int vd8 = pOther->pSprite->x;
|
|
|
|
int vd4 = pOther->pSprite->y;
|
|
|
|
int vd0 = pOther->zView;
|
|
|
|
int vcc = pOther->pSprite->sectnum;
|
|
|
|
int v50 = pOther->pSprite->ang;
|
|
|
|
int v54 = 0;
|
|
|
|
if (pOther->flickerEffect)
|
|
|
|
{
|
|
|
|
int nValue = ClipHigh(pOther->flickerEffect * 8, 2000);
|
|
|
|
v54 += QRandom2(nValue >> 8);
|
|
|
|
v50 += QRandom2(nValue >> 8);
|
|
|
|
vd8 += QRandom2(nValue >> 4);
|
|
|
|
vd4 += QRandom2(nValue >> 4);
|
|
|
|
vd0 += QRandom2(nValue);
|
|
|
|
}
|
|
|
|
if (pOther->quakeEffect)
|
|
|
|
{
|
|
|
|
int nValue = ClipHigh(pOther->quakeEffect * 8, 2000);
|
|
|
|
v54 += QRandom2(nValue >> 8);
|
|
|
|
v50 += QRandom2(nValue >> 8);
|
|
|
|
vd8 += QRandom2(nValue >> 4);
|
|
|
|
vd4 += QRandom2(nValue >> 4);
|
|
|
|
vd0 += QRandom2(nValue);
|
|
|
|
}
|
|
|
|
CalcOtherPosition(pOther->pSprite, &vd8, &vd4, &vd0, &vcc, v50, 0, (int)gInterpolate);
|
|
|
|
CheckLink(&vd8, &vd4, &vd0, &vcc);
|
|
|
|
uint8_t v14 = 0;
|
|
|
|
if (IsUnderwaterSector(vcc))
|
|
|
|
{
|
|
|
|
v14 = 10;
|
|
|
|
}
|
|
|
|
drawrooms(vd8, vd4, vd0, v50, v54, vcc);
|
|
|
|
viewProcessSprites(vd8, vd4, vd0, v50, gInterpolate);
|
|
|
|
renderDrawMasks();
|
|
|
|
renderRestoreTarget();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-03-20 22:01:16 +00:00
|
|
|
void render3DViewPolymost(int nSectnum, int cX, int cY, int cZ, binangle cA, fixedhoriz cH);
|
2020-09-06 08:59:45 +00:00
|
|
|
|
2020-01-14 20:20:46 +00:00
|
|
|
void viewDrawScreen(bool sceneonly)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-05-09 07:05:42 +00:00
|
|
|
if (testgotpic(2342, true))
|
2020-09-04 18:46:44 +00:00
|
|
|
{
|
|
|
|
FireProcess();
|
|
|
|
}
|
|
|
|
|
2020-05-29 01:20:40 +00:00
|
|
|
if (!paused && (!M_Active() || gGameOptions.nGameType != 0))
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-11-28 23:40:42 +00:00
|
|
|
gInterpolate = !cl_interpolate || cl_capfps ? MaxSmoothRatio : I_GetTimeFrac() * MaxSmoothRatio;
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2020-08-25 23:10:14 +00:00
|
|
|
else gInterpolate = MaxSmoothRatio;
|
2021-04-04 08:33:29 +00:00
|
|
|
pm_smoothratio = (int)gInterpolate;
|
2020-07-14 10:48:56 +00:00
|
|
|
|
2019-10-22 00:15:24 +00:00
|
|
|
if (cl_interpolate)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2020-11-26 16:19:42 +00:00
|
|
|
DoInterpolations(gInterpolate / MaxSmoothRatio);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
2020-08-24 17:47:09 +00:00
|
|
|
if (automapMode != am_full)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2020-02-05 21:37:20 +00:00
|
|
|
DoSectorLighting();
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2020-08-24 17:47:09 +00:00
|
|
|
if (automapMode == am_off)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2020-07-27 21:29:10 +00:00
|
|
|
int basepal = 0;
|
|
|
|
if (powerupCheck(gView, kPwUpDeathMask) > 0) basepal = 4;
|
|
|
|
else if (powerupCheck(gView, kPwUpReflectShots) > 0) basepal = 1;
|
|
|
|
else if (gView->isUnderwater) {
|
|
|
|
if (gView->nWaterPal) basepal = gView->nWaterPal;
|
|
|
|
else {
|
|
|
|
if (gView->pXSprite->medium == kMediumWater) basepal = 1;
|
|
|
|
else if (gView->pXSprite->medium == kMediumGoo) basepal = 3;
|
|
|
|
else basepal = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
UpdateDacs(basepal);
|
|
|
|
UpdateBlend();
|
|
|
|
|
2021-03-20 22:01:16 +00:00
|
|
|
int cX, cY, cZ;
|
2020-10-07 20:55:54 +00:00
|
|
|
binangle cA;
|
2021-01-02 03:40:35 +00:00
|
|
|
fixedhoriz cH;
|
2021-03-20 22:01:16 +00:00
|
|
|
int nSectnum;
|
|
|
|
double zDelta;
|
2021-03-21 07:58:38 +00:00
|
|
|
double shakeX, shakeY;
|
2021-04-11 05:43:11 +00:00
|
|
|
binangle rotscrnang;
|
2021-03-21 09:58:11 +00:00
|
|
|
SetupView(cX, cY, cZ, cA, cH, nSectnum, zDelta, shakeX, shakeY, rotscrnang);
|
2021-01-02 03:40:35 +00:00
|
|
|
|
2021-07-18 08:13:37 +00:00
|
|
|
binangle tilt = interpolatedangle(buildang(gScreenTiltO), buildang(gScreenTilt), gInterpolate);
|
2019-10-19 19:11:39 +00:00
|
|
|
bool bDelirium = powerupCheck(gView, kPwUpDeliriumShroom) > 0;
|
2019-09-19 22:42:45 +00:00
|
|
|
static bool bDeliriumOld = false;
|
2020-03-29 06:36:39 +00:00
|
|
|
//int tiltcs, tiltdim;
|
2021-03-20 22:01:16 +00:00
|
|
|
uint8_t otherview = powerupCheck(gView, kPwUpCrystalBall) > 0;
|
2021-07-18 08:13:37 +00:00
|
|
|
if (tilt.asbam() || bDelirium)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-07-18 08:13:37 +00:00
|
|
|
rotscrnang = tilt;
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2021-03-20 22:01:16 +00:00
|
|
|
else if (otherview && gNetPlayers > 1)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-03-20 18:20:42 +00:00
|
|
|
#if 0
|
|
|
|
renderCrystalBall();
|
2020-03-29 06:36:39 +00:00
|
|
|
#endif
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-02-18 10:46:36 +00:00
|
|
|
othercameraclock = PlayClock + MulScale(4, (int)gInterpolate, 16);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!bDelirium)
|
|
|
|
{
|
|
|
|
deliriumTilt = 0;
|
|
|
|
deliriumTurn = 0;
|
|
|
|
deliriumPitch = 0;
|
|
|
|
}
|
2021-03-20 22:01:16 +00:00
|
|
|
int brightness = 0;
|
2020-10-15 15:15:45 +00:00
|
|
|
|
2021-09-04 22:04:51 +00:00
|
|
|
BloodStatIterator it(kStatExplosion);
|
|
|
|
while (auto actor = it.Next())
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-09-04 22:04:51 +00:00
|
|
|
if (actor->hasX() && gotsector[actor->s().sectnum])
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-09-04 22:04:51 +00:00
|
|
|
brightness += actor->x().data3 * 32;
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-15 15:15:45 +00:00
|
|
|
it.Reset(kStatProjectile);
|
2021-09-04 22:04:51 +00:00
|
|
|
while (auto actor = it.Next())
|
2020-10-15 15:15:45 +00:00
|
|
|
{
|
2021-09-04 22:04:51 +00:00
|
|
|
spritetype* pSprite = &actor->s();
|
2019-10-11 21:59:39 +00:00
|
|
|
switch (pSprite->type) {
|
2019-12-30 18:29:32 +00:00
|
|
|
case kMissileFlareRegular:
|
|
|
|
case kMissileTeslaAlt:
|
|
|
|
case kMissileFlareAlt:
|
|
|
|
case kMissileTeslaRegular:
|
2021-04-01 18:47:05 +00:00
|
|
|
if (gotsector[pSprite->sectnum]) brightness += 256;
|
2019-12-30 18:29:32 +00:00
|
|
|
break;
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-20 22:01:16 +00:00
|
|
|
g_visibility = (int32_t)(ClipLow(gVisibility - 32 * gView->visibility - brightness, 0));
|
2021-04-11 06:45:19 +00:00
|
|
|
cA += interpolatedangle(buildang(deliriumTurnO), buildang(deliriumTurn), gInterpolate);
|
2021-03-20 22:01:16 +00:00
|
|
|
|
|
|
|
int ceilingZ, floorZ;
|
|
|
|
getzsofslope(nSectnum, cX, cY, &ceilingZ, &floorZ);
|
2021-11-27 10:18:53 +00:00
|
|
|
if ((cZ > floorZ - (1 << 8)) && (getLowerLink(nSectnum) == nullptr)) // clamp to floor
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-11-27 10:18:53 +00:00
|
|
|
cZ = floorZ - (1 << 8);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2021-11-27 10:18:53 +00:00
|
|
|
if ((cZ < ceilingZ + (1 << 8)) && (getLowerLink(nSectnum) == nullptr)) // clamp to ceiling
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-11-27 10:18:53 +00:00
|
|
|
cZ = ceilingZ + (1 << 8);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2020-10-07 20:55:54 +00:00
|
|
|
cH = q16horiz(ClipRange(cH.asq16(), gi->playerHorizMin(), gi->playerHorizMax()));
|
2021-03-20 22:01:16 +00:00
|
|
|
|
2021-07-18 08:13:37 +00:00
|
|
|
if ((tilt.asbam() || bDelirium) && !sceneonly)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-03-20 22:01:16 +00:00
|
|
|
if (gDeliriumBlur)
|
|
|
|
{
|
|
|
|
// todo: Set up a blurring postprocessing shader.
|
|
|
|
//const float fBlur = pow(1.f/3.f, 30.f/g_frameRate);
|
|
|
|
//g lAccum(GL _MULT, fBlur);
|
|
|
|
//g lAccum(GL _ACCUM, 1.f-fBlur);
|
|
|
|
//g lAccum(GL _RETURN, 1.f);
|
|
|
|
}
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2020-07-27 17:45:34 +00:00
|
|
|
|
2021-03-20 22:01:16 +00:00
|
|
|
if (testnewrenderer)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-04-11 06:45:19 +00:00
|
|
|
fixedhoriz deliriumPitchI = q16horiz(interpolatedvalue(IntToFixed(deliriumPitchO), IntToFixed(deliriumPitch), gInterpolate));
|
2021-03-20 22:01:16 +00:00
|
|
|
int bakCstat = gView->pSprite->cstat;
|
|
|
|
gView->pSprite->cstat |= (gViewPos == 0) ? CSTAT_SPRITE_INVISIBLE : CSTAT_SPRITE_TRANSLUCENT | CSTAT_SPRITE_TRANSLUCENT_INVERT;
|
2021-04-14 19:17:32 +00:00
|
|
|
render_drawrooms(gView->pSprite, { cX, cY, cZ }, nSectnum, cA, cH + deliriumPitchI, rotscrnang, gInterpolate);
|
2019-09-19 22:42:45 +00:00
|
|
|
gView->pSprite->cstat = bakCstat;
|
|
|
|
}
|
2021-03-20 22:01:16 +00:00
|
|
|
else
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-05-12 00:00:06 +00:00
|
|
|
renderSetRollAngle((float)rotscrnang.asbuildf());
|
2021-03-20 22:01:16 +00:00
|
|
|
render3DViewPolymost(nSectnum, cX, cY, cZ, cA, cH);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
bDeliriumOld = bDelirium && gDeliriumBlur;
|
|
|
|
|
2019-12-30 18:29:32 +00:00
|
|
|
int nClipDist = gView->pSprite->clipdist << 2;
|
2021-09-02 18:23:51 +00:00
|
|
|
int vec, vf4;
|
|
|
|
Collision c1, c2;
|
2021-09-05 07:53:06 +00:00
|
|
|
GetZRange(gView->actor, &vf4, &c1, &vec, &c2, nClipDist, 0);
|
2020-01-25 14:27:46 +00:00
|
|
|
if (sceneonly) return;
|
2019-09-19 22:42:45 +00:00
|
|
|
#if 0
|
|
|
|
int tmpSect = nSectnum;
|
2019-06-28 12:24:46 +00:00
|
|
|
if ((vf0 & 0xc000) == 0x4000)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2019-12-30 18:29:32 +00:00
|
|
|
tmpSect = vf0 & (kMaxWalls - 1);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2019-12-30 18:29:32 +00:00
|
|
|
int v8 = byte_1CE5C2 > 0 && (sector[tmpSect].ceilingstat & 1);
|
2019-09-19 22:42:45 +00:00
|
|
|
if (gWeather.at12d8 > 0 || v8)
|
|
|
|
{
|
2020-10-07 20:55:54 +00:00
|
|
|
gWeather.Draw(cX, cY, cZ, cA.asq16(), cH.asq16() + deliriumPitch, gWeather.at12d8);
|
2019-09-19 22:42:45 +00:00
|
|
|
if (v8)
|
|
|
|
{
|
2019-12-30 18:29:32 +00:00
|
|
|
gWeather.at12d8 = ClipRange(delta * 8 + gWeather.at12d8, 0, 4095);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-12-30 18:29:32 +00:00
|
|
|
gWeather.at12d8 = ClipRange(gWeather.at12d8 - delta * 64, 0, 4095);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2021-03-20 18:20:42 +00:00
|
|
|
hudDraw(gView, nSectnum, shakeX, shakeY, zDelta, basepal, gInterpolate);
|
2019-12-30 18:29:32 +00:00
|
|
|
}
|
2020-07-27 21:29:10 +00:00
|
|
|
UpdateDacs(0, true); // keep the view palette active only for the actual 3D view and its overlays.
|
2020-08-24 17:47:09 +00:00
|
|
|
if (automapMode != am_off)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2020-09-06 08:59:45 +00:00
|
|
|
DrawMap (gView->pSprite);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2020-09-01 18:14:15 +00:00
|
|
|
UpdateStatusBar();
|
2019-10-21 19:46:41 +00:00
|
|
|
int zn = ((gView->zWeapon-gView->zView-(12<<8))>>7)+220;
|
2019-09-19 22:42:45 +00:00
|
|
|
PLAYER *pPSprite = &gPlayer[gMe->pSprite->type-kDudePlayer1];
|
2020-02-06 08:48:45 +00:00
|
|
|
if (IsPlayerSprite(gMe->pSprite) && pPSprite->hand == 1)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2020-09-01 18:08:37 +00:00
|
|
|
gChoke.animateChoke(160, zn, (int)gInterpolate);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2019-12-23 19:55:12 +00:00
|
|
|
|
2019-10-27 16:55:14 +00:00
|
|
|
viewDrawAimedPlayerName();
|
2020-05-29 01:20:40 +00:00
|
|
|
if (paused)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2021-05-31 09:51:02 +00:00
|
|
|
auto text = GStrings("TXTB_PAUSED");
|
|
|
|
viewDrawText(PickBigFont(text), text, 160, 10, 0, 0, 1, 0);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
else if (gView != gMe)
|
|
|
|
{
|
2020-11-22 12:28:20 +00:00
|
|
|
FStringf gTempStr("] %s [", PlayerName(gView->nPlayer));
|
2021-05-31 09:51:02 +00:00
|
|
|
viewDrawText(OriginalSmallFont, gTempStr, 160, 10, 0, 0, 1, 0);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2019-10-22 00:15:24 +00:00
|
|
|
if (cl_interpolate)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
RestoreInterpolations();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-14 20:20:46 +00:00
|
|
|
bool GameInterface::GenerateSavePic()
|
|
|
|
{
|
|
|
|
viewDrawScreen(true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-12-23 19:55:12 +00:00
|
|
|
FString GameInterface::GetCoordString()
|
|
|
|
{
|
2020-09-06 19:15:59 +00:00
|
|
|
FString out;
|
|
|
|
|
|
|
|
out.Format("pos= %d, %d, %d - angle = %2.3f",
|
2021-03-31 23:42:22 +00:00
|
|
|
gMe->pSprite->x, gMe->pSprite->y, gMe->pSprite->z, gMe->pSprite->ang * BAngToDegree);
|
2020-09-06 19:15:59 +00:00
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-11-26 22:11:59 +00:00
|
|
|
bool GameInterface::DrawAutomapPlayer(int mx, int my, int x, int y, int z, int a, double const smoothratio)
|
2020-09-06 19:15:59 +00:00
|
|
|
{
|
|
|
|
for (int i = connecthead; i >= 0; i = connectpoint2[i])
|
|
|
|
{
|
|
|
|
PLAYER* pPlayer = &gPlayer[i];
|
|
|
|
spritetype* pSprite = pPlayer->pSprite;
|
2021-11-26 22:11:59 +00:00
|
|
|
|
|
|
|
int xvect = -bsin(a) * z;
|
|
|
|
int yvect = -bcos(a) * z;
|
|
|
|
int ox = mx - x;
|
|
|
|
int oy = my - y;
|
|
|
|
int x1 = DMulScale(ox, xvect, -oy, yvect, 16);
|
|
|
|
int y1 = DMulScale(oy, xvect, ox, yvect, 16);
|
|
|
|
int xx = xdim / 2. + x1 / 4096.;
|
|
|
|
int yy = ydim / 2. + y1 / 4096.;
|
|
|
|
|
2020-09-06 19:15:59 +00:00
|
|
|
if (i == gView->nPlayer || gGameOptions.nGameType == 1)
|
|
|
|
{
|
|
|
|
int nTile = pSprite->picnum;
|
2021-09-02 18:23:51 +00:00
|
|
|
int ceilZ, floorZ;
|
|
|
|
Collision ceilHit, floorHit;
|
2021-09-05 07:53:06 +00:00
|
|
|
GetZRange(gView->actor, &ceilZ, &ceilHit, &floorZ, &floorHit, (pSprite->clipdist << 2) + 16, CLIPMASK0, PARALLAXCLIP_CEILING | PARALLAXCLIP_FLOOR);
|
2020-09-06 19:15:59 +00:00
|
|
|
int nTop, nBottom;
|
|
|
|
GetSpriteExtents(pSprite, &nTop, &nBottom);
|
2021-03-24 19:28:58 +00:00
|
|
|
int nScale = (pSprite->yrepeat + ((floorZ - nBottom) >> 8)) * z;
|
2020-09-06 19:15:59 +00:00
|
|
|
nScale = ClipRange(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
|
2021-11-26 22:11:59 +00:00
|
|
|
DrawTexture(twod, tileGetTexture(nTile, true), xx, yy, DTA_ClipLeft, windowxy1.x, DTA_ClipTop, windowxy1.y, DTA_ScaleX, z/1536., DTA_ScaleY, z/1536., DTA_CenterOffset, true,
|
2020-09-06 19:15:59 +00:00
|
|
|
DTA_ClipRight, windowxy2.x + 1, DTA_ClipBottom, windowxy2.y + 1, DTA_Alpha, (pSprite->cstat & 2 ? 0.5 : 1.), TAG_DONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2019-12-23 19:55:12 +00:00
|
|
|
}
|
|
|
|
|
2020-11-22 15:47:08 +00:00
|
|
|
void SerializeView(FSerializer& arc)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2020-11-22 15:47:08 +00:00
|
|
|
if (arc.BeginObject("view"))
|
|
|
|
{
|
|
|
|
arc("screentilt", gScreenTilt)
|
|
|
|
("deliriumtilt", deliriumTilt)
|
|
|
|
("deliriumturn", deliriumTurn)
|
|
|
|
("deliriumpitch", deliriumPitch)
|
|
|
|
.EndObject();
|
|
|
|
}
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
2019-09-22 06:39:22 +00:00
|
|
|
|
|
|
|
END_BLD_NS
|