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"
|
2020-07-31 18:39:02 +00:00
|
|
|
#include "v_draw.h"
|
2019-09-19 22:42:45 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "mmulti.h"
|
|
|
|
#include "common_game.h"
|
|
|
|
#include "blood.h"
|
|
|
|
#include "endgame.h"
|
|
|
|
#include "globals.h"
|
|
|
|
#include "levels.h"
|
|
|
|
#include "loadsave.h"
|
|
|
|
#include "network.h"
|
|
|
|
#include "player.h"
|
|
|
|
#include "sound.h"
|
|
|
|
#include "view.h"
|
2019-09-19 06:10:18 +00:00
|
|
|
#include "messages.h"
|
2019-11-12 21:59:51 +00:00
|
|
|
#include "statistics.h"
|
2019-12-09 01:01:30 +00:00
|
|
|
#include "gstrings.h"
|
2020-07-29 21:18:08 +00:00
|
|
|
#include "gamestate.h"
|
2020-04-12 06:09:38 +00:00
|
|
|
#include "raze_sound.h"
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2019-09-22 06:39:22 +00:00
|
|
|
BEGIN_BLD_NS
|
|
|
|
|
2020-08-02 15:45:03 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
kLoadScreenCRC = -2051908571,
|
|
|
|
kLoadScreenWideBackWidth = 256,
|
|
|
|
kLoadScreenWideSideWidth = 128,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int bLoadScreenCrcMatch = -1;
|
|
|
|
|
|
|
|
static void drawTextScreenBackground(void)
|
|
|
|
{
|
|
|
|
if (bLoadScreenCrcMatch == -1) bLoadScreenCrcMatch = tileGetCRC32(kLoadScreen) == kLoadScreenCRC;
|
|
|
|
|
|
|
|
if ((blood_globalflags & BLOOD_FORCE_WIDELOADSCREEN) || (bLoadScreenCrcMatch))
|
|
|
|
{
|
|
|
|
if (yxaspect >= 65536)
|
|
|
|
{
|
2020-08-14 19:01:27 +00:00
|
|
|
DrawTexture(twod, tileGetTexture(kLoadScreen), 0, 0, DTA_FullscreenEx, FSMode_ScaleToFit43, TAG_DONE);
|
2020-08-02 15:45:03 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int width = scale(xdim, 240, ydim);
|
|
|
|
int nCount = (width + kLoadScreenWideBackWidth - 1) / kLoadScreenWideBackWidth;
|
|
|
|
for (int i = 0; i < nCount; i++)
|
|
|
|
{
|
|
|
|
DrawTexture(twod, tileGetTexture(kLoadScreenWideBack), (i * kLoadScreenWideBackWidth), 0,
|
|
|
|
DTA_VirtualWidth, width, DTA_VirtualHeight, 200, DTA_KeepRatio, true, TAG_DONE);
|
|
|
|
}
|
|
|
|
DrawTexture(twod, tileGetTexture(kLoadScreenWideLeft), 0, 0, DTA_VirtualWidth, width, DTA_VirtualHeight, 200, DTA_KeepRatio, true, DTA_TopLeft, true, TAG_DONE);
|
|
|
|
DrawTexture(twod, tileGetTexture(kLoadScreenWideRight), width - tileWidth(kLoadScreenWideRight), 0, DTA_TopLeft, true,
|
|
|
|
DTA_VirtualWidth, width, DTA_VirtualHeight, 200, DTA_KeepRatio, true, TAG_DONE);
|
|
|
|
DrawTexture(twod, tileGetTexture(kLoadScreenWideMiddle), (width - tileWidth(kLoadScreenWideMiddle))/2, 0, DTA_TopLeft, true,
|
|
|
|
DTA_VirtualWidth, width, DTA_VirtualHeight, 200, DTA_KeepRatio, true, TAG_DONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-08-14 19:01:27 +00:00
|
|
|
DrawTexture(twod, tileGetTexture(kLoadScreen), 0, 0, DTA_FullscreenEx, FSMode_ScaleToFit43, TAG_DONE);
|
2020-08-02 15:45:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-19 22:42:45 +00:00
|
|
|
CEndGameMgr::CEndGameMgr()
|
|
|
|
{
|
|
|
|
at0 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CEndGameMgr::Draw(void)
|
|
|
|
{
|
2020-08-02 15:45:03 +00:00
|
|
|
drawTextScreenBackground();
|
2019-09-19 22:42:45 +00:00
|
|
|
if (gGameOptions.nGameType == 0)
|
|
|
|
{
|
2020-08-02 15:45:03 +00:00
|
|
|
DrawMenuCaption(GStrings("TXTB_LEVELSTATS"));
|
2020-08-03 18:51:31 +00:00
|
|
|
if (bPlayerCheated)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2020-01-25 15:36:18 +00:00
|
|
|
viewDrawText(3, GStrings("TXTB_CHEATED"), 160, 32, -128, 0, 1, 1);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
gKillMgr.Draw();
|
|
|
|
gSecretMgr.Draw();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-08-02 15:45:03 +00:00
|
|
|
DrawMenuCaption(GStrings("TXTB_FRAGSTATS"));
|
2019-09-19 22:42:45 +00:00
|
|
|
gKillMgr.Draw();
|
|
|
|
}
|
2019-09-07 13:15:39 +00:00
|
|
|
if (/*dword_28E3D4 != 1 && */((int)totalclock&32))
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2019-12-09 01:01:30 +00:00
|
|
|
viewDrawText(3, GStrings("PRESSKEY"), 160, 134, -128, 0, 1, 1);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CEndGameMgr::ProcessKeys(void)
|
|
|
|
{
|
|
|
|
//if (dword_28E3D4 == 1)
|
|
|
|
//{
|
|
|
|
// if (gGameOptions.gameType >= 0 || numplayers > 1)
|
|
|
|
// netWaitForEveryone(0);
|
|
|
|
// Finish();
|
|
|
|
//}
|
|
|
|
//else
|
|
|
|
{
|
2020-07-29 21:18:08 +00:00
|
|
|
if (!inputState.CheckAllInput())
|
2019-09-19 22:42:45 +00:00
|
|
|
return;
|
|
|
|
if (gGameOptions.nGameType > 0 || numplayers > 1)
|
|
|
|
netWaitForEveryone(0);
|
|
|
|
Finish();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern void EndLevel(void);
|
|
|
|
|
|
|
|
void CEndGameMgr::Setup(void)
|
|
|
|
{
|
2020-07-29 21:18:08 +00:00
|
|
|
gamestate = GS_FINALE;
|
2019-09-19 22:42:45 +00:00
|
|
|
at0 = 1;
|
2020-01-25 15:47:06 +00:00
|
|
|
STAT_Update(false);
|
2019-09-19 22:42:45 +00:00
|
|
|
EndLevel();
|
2020-07-29 21:39:37 +00:00
|
|
|
Mus_Stop();
|
2020-08-10 18:24:49 +00:00
|
|
|
sndStartSample(268, 128, -1, false);
|
2019-11-03 23:53:55 +00:00
|
|
|
inputState.keyFlushScans();
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extern int gInitialNetPlayers;
|
|
|
|
|
|
|
|
void CEndGameMgr::Finish(void)
|
|
|
|
{
|
2020-08-16 11:26:57 +00:00
|
|
|
int ep = volfromlevelnum(currentLevel->levelNumber);
|
|
|
|
gStartNewGame = FindMapByLevelNum(levelnum(ep, gNextLevel));
|
2019-09-19 22:42:45 +00:00
|
|
|
gInitialNetPlayers = numplayers;
|
2019-12-18 21:24:50 +00:00
|
|
|
soundEngine->StopAllChannels();
|
2019-09-19 22:42:45 +00:00
|
|
|
at0 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
CKillMgr::CKillMgr()
|
|
|
|
{
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CKillMgr::SetCount(int nCount)
|
|
|
|
{
|
|
|
|
at0 = nCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CKillMgr::sub_263E0(int nCount)
|
|
|
|
{
|
|
|
|
at0 += nCount;
|
|
|
|
}
|
|
|
|
|
2019-10-13 22:29:19 +00:00
|
|
|
void CKillMgr::AddKill(spritetype* pSprite)
|
|
|
|
{
|
|
|
|
if (pSprite->statnum == kStatDude && pSprite->type != kDudeBat && pSprite->type != kDudeRat && pSprite->type != kDudeInnocent && pSprite->type != kDudeBurningInnocent)
|
|
|
|
at4++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CKillMgr::sub_2641C(void)
|
|
|
|
{
|
|
|
|
at0 = 0;
|
|
|
|
for (int nSprite = headspritestat[kStatDude]; nSprite >= 0; nSprite = nextspritestat[nSprite])
|
|
|
|
{
|
|
|
|
spritetype* pSprite = &sprite[nSprite];
|
|
|
|
if (pSprite->type < kDudeBase || pSprite->type >= kDudeMax)
|
|
|
|
ThrowError("Non-enemy sprite (%d) in the enemy sprite list.", nSprite);
|
|
|
|
if (pSprite->statnum == kStatDude && pSprite->type != kDudeBat && pSprite->type != kDudeRat && pSprite->type != kDudeInnocent && pSprite->type != kDudeBurningInnocent)
|
|
|
|
at0++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-19 22:42:45 +00:00
|
|
|
void CKillMgr::Draw(void)
|
|
|
|
{
|
|
|
|
char pBuffer[40];
|
|
|
|
if (gGameOptions.nGameType == 0)
|
|
|
|
{
|
2019-12-09 01:01:30 +00:00
|
|
|
viewDrawText(1, FStringf("%s:", GStrings("KILLS")), 75, 50, -128, 0, 0, 1);
|
2019-09-19 22:42:45 +00:00
|
|
|
sprintf(pBuffer, "%2d", at4);
|
|
|
|
viewDrawText(1, pBuffer, 160, 50, -128, 0, 0, 1);
|
2019-12-09 01:01:30 +00:00
|
|
|
viewDrawText(1, GStrings("OF"), 190, 50, -128, 0, 0, 1);
|
2019-09-19 22:42:45 +00:00
|
|
|
sprintf(pBuffer, "%2d", at0);
|
|
|
|
viewDrawText(1, pBuffer, 220, 50, -128, 0, 0, 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
viewDrawText(3, "#", 85, 35, -128, 0, 0, 1);
|
2019-12-09 01:01:30 +00:00
|
|
|
viewDrawText(3, GStrings("NAME"), 100, 35, -128, 0, 0, 1);
|
|
|
|
viewDrawText(3, GStrings("FRAGS"), 210, 35, -128, 0, 0, 1);
|
2019-09-19 22:42:45 +00:00
|
|
|
int nStart = 0;
|
|
|
|
int nEnd = gInitialNetPlayers;
|
|
|
|
//if (dword_28E3D4 == 1)
|
|
|
|
//{
|
|
|
|
// nStart++;
|
|
|
|
// nEnd++;
|
|
|
|
//}
|
|
|
|
for (int i = nStart; i < nEnd; i++)
|
|
|
|
{
|
|
|
|
sprintf(pBuffer, "%-2d", i);
|
|
|
|
viewDrawText(3, pBuffer, 85, 50+8*i, -128, 0, 0, 1);
|
|
|
|
sprintf(pBuffer, "%s", gProfile[i].name);
|
|
|
|
viewDrawText(3, pBuffer, 100, 50+8*i, -128, 0, 0, 1);
|
2019-10-21 19:46:41 +00:00
|
|
|
sprintf(pBuffer, "%d", gPlayer[i].fragCount);
|
2019-09-19 22:42:45 +00:00
|
|
|
viewDrawText(3, pBuffer, 210, 50+8*i, -128, 0, 0, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CKillMgr::Clear(void)
|
|
|
|
{
|
|
|
|
at0 = at4 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
CSecretMgr::CSecretMgr(void)
|
|
|
|
{
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSecretMgr::SetCount(int nCount)
|
|
|
|
{
|
|
|
|
at0 = nCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSecretMgr::Found(int nType)
|
|
|
|
{
|
2019-10-12 20:45:46 +00:00
|
|
|
if (nType == 0) at4++;
|
|
|
|
else if (nType < 0) {
|
|
|
|
viewSetSystemMessage("Invalid secret type %d triggered.", nType);
|
|
|
|
return;
|
|
|
|
} else at8++;
|
|
|
|
|
|
|
|
if (gGameOptions.nGameType == 0) {
|
2019-12-17 18:37:05 +00:00
|
|
|
viewSetMessage(GStrings(FStringf("TXTB_SECRET%d", Random(2))), 0, MESSAGE_PRIORITY_SECRET);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSecretMgr::Draw(void)
|
|
|
|
{
|
|
|
|
char pBuffer[40];
|
2019-12-09 01:01:30 +00:00
|
|
|
viewDrawText(1, FStringf("%s:", GStrings("TXT_SECRETS")), 75, 70, -128, 0, 0, 1);
|
2019-09-19 22:42:45 +00:00
|
|
|
sprintf(pBuffer, "%2d", at4);
|
|
|
|
viewDrawText(1, pBuffer, 160, 70, -128, 0, 0, 1);
|
2019-12-09 01:01:30 +00:00
|
|
|
viewDrawText(1, GStrings("OF"), 190, 70, -128, 0, 0, 1);
|
2019-09-19 22:42:45 +00:00
|
|
|
sprintf(pBuffer, "%2d", at0);
|
|
|
|
viewDrawText(1, pBuffer, 220, 70, -128, 0, 0, 1);
|
|
|
|
if (at8 > 0)
|
2019-12-09 01:01:30 +00:00
|
|
|
viewDrawText(1, GStrings("TXT_SUPERSECRET"), 160, 100, -128, 2, 1, 1);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CSecretMgr::Clear(void)
|
|
|
|
{
|
|
|
|
at0 = at4 = at8 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
class EndGameLoadSave : public LoadSave {
|
|
|
|
public:
|
|
|
|
virtual void Load(void);
|
|
|
|
virtual void Save(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
void EndGameLoadSave::Load(void)
|
|
|
|
{
|
|
|
|
Read(&gSecretMgr.at0, 4);
|
|
|
|
Read(&gSecretMgr.at4, 4);
|
|
|
|
Read(&gSecretMgr.at8, 4);
|
|
|
|
Read(&gKillMgr.at0, 4);
|
|
|
|
Read(&gKillMgr.at4, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EndGameLoadSave::Save(void)
|
|
|
|
{
|
|
|
|
Write(&gSecretMgr.at0, 4);
|
|
|
|
Write(&gSecretMgr.at4, 4);
|
|
|
|
Write(&gSecretMgr.at8, 4);
|
|
|
|
Write(&gKillMgr.at0, 4);
|
|
|
|
Write(&gKillMgr.at4, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
CEndGameMgr gEndGameMgr;
|
|
|
|
CSecretMgr gSecretMgr;
|
|
|
|
CKillMgr gKillMgr;
|
|
|
|
static EndGameLoadSave *myLoadSave;
|
|
|
|
|
|
|
|
void EndGameLoadSaveConstruct(void)
|
|
|
|
{
|
|
|
|
myLoadSave = new EndGameLoadSave();
|
|
|
|
}
|
2019-09-22 06:39:22 +00:00
|
|
|
|
2020-08-02 15:45:03 +00:00
|
|
|
|
|
|
|
class DBloodLoadScreen : public DScreenJob
|
|
|
|
{
|
|
|
|
std::function<int(void)> callback;
|
|
|
|
const char *pzLoadingScreenText1;
|
|
|
|
MapRecord* rec;
|
|
|
|
|
|
|
|
public:
|
|
|
|
DBloodLoadScreen(const char* caption, MapRecord* maprec, std::function<int(void)> callback_) : DScreenJob(fadein | fadeout), callback(callback_), rec(maprec)
|
|
|
|
{
|
|
|
|
if (gGameOptions.nGameType == 0) pzLoadingScreenText1 = GStrings("TXTB_LLEVEL");
|
|
|
|
else pzLoadingScreenText1 = GStrings(FStringf("TXTB_NETGT%d", gGameOptions.nGameType));
|
|
|
|
}
|
|
|
|
|
|
|
|
int Frame(uint64_t clock, bool skiprequest)
|
|
|
|
{
|
|
|
|
twod->ClearScreen();
|
|
|
|
drawTextScreenBackground();
|
|
|
|
DrawMenuCaption(pzLoadingScreenText1);
|
|
|
|
viewDrawText(1, rec->DisplayName(), 160, 50, -128, 0, 1, 1);
|
|
|
|
viewDrawText(3, GStrings("TXTB_PLSWAIT"), 160, 134, -128, 0, 1, 1);
|
|
|
|
|
|
|
|
// Initiate the level load once the page has been faded in completely.
|
|
|
|
if (callback && GetFadeState() == visible)
|
|
|
|
{
|
|
|
|
callback();
|
|
|
|
callback = nullptr;
|
|
|
|
}
|
|
|
|
if (clock > 5'000'000'000) return 0; // make sure the screen stays long enough to be seen.
|
|
|
|
return skiprequest ? -1 : 1;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-09-22 06:39:22 +00:00
|
|
|
END_BLD_NS
|