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 "compat.h"
|
|
|
|
|
|
|
|
#include "blood.h"
|
|
|
|
#include "inifile.h"
|
2020-10-04 16:31:48 +00:00
|
|
|
#include "razemenu.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
|
|
|
GAMEOPTIONS gGameOptions;
|
|
|
|
|
|
|
|
GAMEOPTIONS gSingleGameOptions = {
|
2020-11-22 15:47:08 +00:00
|
|
|
0, 2, 0, 0, 0, 0, 0, 0, 2, 3600, 1800, 1800, 7200
|
2019-09-19 22:42:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int gSkill = 2;
|
2020-08-16 11:26:57 +00:00
|
|
|
int gNextLevel; // fixme: let this contain a full level number.
|
2019-09-19 22:42:45 +00:00
|
|
|
|
|
|
|
char BloodIniFile[BMAX_PATH] = "BLOOD.INI";
|
|
|
|
bool bINIOverride = false;
|
|
|
|
IniFile *BloodINI;
|
|
|
|
|
|
|
|
|
|
|
|
void levelInitINI(const char *pzIni)
|
|
|
|
{
|
2019-12-07 09:31:27 +00:00
|
|
|
if (!fileSystem.FileExists(pzIni))
|
2020-10-11 10:22:36 +00:00
|
|
|
I_Error("Initialization: %s does not exist", pzIni);
|
2019-09-19 22:42:45 +00:00
|
|
|
BloodINI = new IniFile(pzIni);
|
2020-09-08 16:48:18 +00:00
|
|
|
strncpy(BloodIniFile, pzIni, BMAX_PATH);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void levelOverrideINI(const char *pzIni)
|
|
|
|
{
|
|
|
|
bINIOverride = true;
|
|
|
|
strcpy(BloodIniFile, pzIni);
|
|
|
|
}
|
|
|
|
|
|
|
|
void levelClearSecrets(void)
|
|
|
|
{
|
|
|
|
gSecretMgr.Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void levelSetupSecret(int nCount)
|
|
|
|
{
|
|
|
|
gSecretMgr.SetCount(nCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
void levelTriggerSecret(int nSecret)
|
|
|
|
{
|
|
|
|
gSecretMgr.Found(nSecret);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckSectionAbend(const char *pzSection)
|
|
|
|
{
|
|
|
|
if (!pzSection || !BloodINI->SectionExists(pzSection))
|
2020-10-11 10:22:36 +00:00
|
|
|
I_Error("Section [%s] expected in BLOOD.INI", pzSection);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CheckKeyAbend(const char *pzSection, const char *pzKey)
|
|
|
|
{
|
2020-10-11 10:38:17 +00:00
|
|
|
assert(pzSection != NULL);
|
2019-09-19 22:42:45 +00:00
|
|
|
|
|
|
|
if (!pzKey || !BloodINI->KeyExists(pzSection, pzKey))
|
2020-10-11 10:22:36 +00:00
|
|
|
I_Error("Key %s expected in section [%s] of BLOOD.INI", pzKey, pzSection);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-10 23:57:53 +00:00
|
|
|
void levelLoadMapInfo(IniFile *pIni, MapRecord *pLevelInfo, const char *pzSection, int epinum, int mapnum)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
char buffer[16];
|
2019-12-10 23:57:53 +00:00
|
|
|
pLevelInfo->SetName(pIni->GetKeyString(pzSection, "Title", pLevelInfo->labelName));
|
|
|
|
pLevelInfo->author = pIni->GetKeyString(pzSection, "Author", "");
|
2019-12-25 00:10:13 +00:00
|
|
|
pLevelInfo->music = pIni->GetKeyString(pzSection, "Song", ""); DefaultExtension(pLevelInfo->music, ".mid");
|
2019-12-10 23:57:53 +00:00
|
|
|
pLevelInfo->cdSongId = pIni->GetKeyInt(pzSection, "Track", -1);
|
2020-08-03 18:12:33 +00:00
|
|
|
pLevelInfo->nextLevel = pIni->GetKeyInt(pzSection, "EndingA", -1);
|
|
|
|
pLevelInfo->nextSecret = pIni->GetKeyInt(pzSection, "EndingB", -1);
|
2019-12-10 23:57:53 +00:00
|
|
|
pLevelInfo->fog = pIni->GetKeyInt(pzSection, "Fog", -0);
|
|
|
|
pLevelInfo->weather = pIni->GetKeyInt(pzSection, "Weather", -0);
|
2019-09-19 22:42:45 +00:00
|
|
|
for (int i = 0; i < kMaxMessages; i++)
|
|
|
|
{
|
|
|
|
sprintf(buffer, "Message%d", i+1);
|
2020-08-03 18:12:33 +00:00
|
|
|
auto msg = pIni->GetKeyString(pzSection, buffer, "");
|
|
|
|
pLevelInfo->AddMessage(i, msg);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 10:34:42 +00:00
|
|
|
static const char* DefFile(void)
|
|
|
|
{
|
2021-04-05 22:56:34 +00:00
|
|
|
int found = -1;
|
|
|
|
if (userConfig.DefaultCon.IsEmpty() || userConfig.DefaultCon.CompareNoCase("blood.ini") == 0)
|
|
|
|
{
|
|
|
|
int numlumps = fileSystem.GetNumEntries();
|
|
|
|
for (int i = numlumps - 1; i >= 0; i--)
|
|
|
|
{
|
2021-04-11 22:01:29 +00:00
|
|
|
int fileno = fileSystem.GetFileContainer(i);
|
|
|
|
if (fileno != -1 && fileno <= fileSystem.GetMaxIwadNum()) break;
|
2021-04-05 22:56:34 +00:00
|
|
|
FString fn = fileSystem.GetFileFullName(i, false);
|
|
|
|
FString ext = fn.Right(4);
|
|
|
|
if (ext.CompareNoCase(".ini") == 0)
|
|
|
|
{
|
|
|
|
if (fileSystem.CheckNumForFullName(fn) != i) continue;
|
|
|
|
if (found == -1) found = i;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
found = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found >= 0) return fileSystem.GetFileFullName(found);
|
2020-07-15 10:34:42 +00:00
|
|
|
// The command line parser stores this in the CON field.
|
|
|
|
return userConfig.DefaultCon.IsNotEmpty() ? userConfig.DefaultCon.GetChars() : "blood.ini";
|
|
|
|
}
|
|
|
|
|
2021-04-28 18:16:13 +00:00
|
|
|
static FString cleanPath(const char* pth)
|
|
|
|
{
|
|
|
|
FString path = pth;
|
|
|
|
FixPathSeperator(path);
|
|
|
|
if (FileExists(path)) return path;
|
|
|
|
if (path.Len() > 3 && path[1] == ':' && isalpha(path[0]) && path[2] == '/')
|
|
|
|
{
|
|
|
|
return path.Mid(3);
|
|
|
|
}
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2019-09-19 22:42:45 +00:00
|
|
|
void levelLoadDefaults(void)
|
|
|
|
{
|
|
|
|
char buffer[64];
|
|
|
|
char buffer2[16];
|
2021-04-28 18:16:13 +00:00
|
|
|
|
|
|
|
int cutALevel = 0;
|
|
|
|
|
2020-07-15 10:34:42 +00:00
|
|
|
levelInitINI(DefFile());
|
2019-09-19 22:42:45 +00:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < kMaxEpisodes; i++)
|
|
|
|
{
|
|
|
|
sprintf(buffer, "Episode%d", i+1);
|
|
|
|
if (!BloodINI->SectionExists(buffer))
|
|
|
|
break;
|
2021-04-28 18:16:13 +00:00
|
|
|
CutsceneDef &csB = volumeList[i].outro;
|
|
|
|
auto ep_str = BloodINI->GetKeyString(buffer, "Title", buffer);
|
2021-04-25 23:45:16 +00:00
|
|
|
volumeList[i].name = ep_str;
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2021-04-28 18:16:13 +00:00
|
|
|
csB.video = cleanPath(BloodINI->GetKeyString(buffer, "CutSceneB", ""));
|
|
|
|
csB.sound = soundEngine->FindSoundByResID(BloodINI->GetKeyInt(buffer, "CutWavB", -1) + 0x40000000);
|
|
|
|
if (csB.sound == 0)
|
|
|
|
csB.sound = soundEngine->FindSound(cleanPath(BloodINI->GetKeyString(buffer, "CutWavB", "")));
|
|
|
|
|
|
|
|
//pEpisodeInfo->bloodbath = BloodINI->GetKeyInt(buffer, "BloodBathOnly", 0);
|
|
|
|
cutALevel = BloodINI->GetKeyInt(buffer, "CutSceneALevel", 0) - 1;
|
|
|
|
if (cutALevel < 0) cutALevel = 0;
|
|
|
|
|
2019-09-19 22:42:45 +00:00
|
|
|
int j;
|
|
|
|
for (j = 0; j < kMaxLevels; j++)
|
|
|
|
{
|
|
|
|
sprintf(buffer2, "Map%d", j+1);
|
|
|
|
if (!BloodINI->KeyExists(buffer, buffer2))
|
|
|
|
break;
|
2020-08-03 18:11:30 +00:00
|
|
|
auto pLevelInfo = AllocateMap();
|
2019-09-19 22:42:45 +00:00
|
|
|
const char *pMap = BloodINI->GetKeyString(buffer, buffer2, NULL);
|
|
|
|
CheckSectionAbend(pMap);
|
2020-08-03 18:11:30 +00:00
|
|
|
pLevelInfo->levelNumber = levelnum(i, j);
|
2021-04-27 18:04:11 +00:00
|
|
|
pLevelInfo->cluster = i + 1;
|
2019-12-10 23:57:53 +00:00
|
|
|
pLevelInfo->labelName = pMap;
|
|
|
|
pLevelInfo->fileName.Format("%s.map", pMap);
|
|
|
|
levelLoadMapInfo(BloodINI, pLevelInfo, pMap, i, j);
|
2021-04-28 18:16:13 +00:00
|
|
|
if (j == cutALevel)
|
|
|
|
{
|
|
|
|
CutsceneDef& csA = pLevelInfo->intro;
|
|
|
|
csA.video = cleanPath(BloodINI->GetKeyString(buffer, "CutSceneA", ""));
|
|
|
|
csA.sound = soundEngine->FindSoundByResID(BloodINI->GetKeyInt(buffer, "CutWavA", -1) + 0x40000000);
|
|
|
|
if (csA.sound == 0)
|
|
|
|
csA.sound = soundEngine->FindSound(cleanPath(BloodINI->GetKeyString(buffer, "CutWavA", "")));
|
|
|
|
}
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-16 11:26:57 +00:00
|
|
|
void levelGetNextLevels(int *pnEndingA, int *pnEndingB)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2020-10-11 10:38:17 +00:00
|
|
|
assert(pnEndingA != NULL && pnEndingB != NULL);
|
2020-08-16 11:26:57 +00:00
|
|
|
int nEndingA = currentLevel->nextLevel;
|
2019-09-19 22:42:45 +00:00
|
|
|
if (nEndingA >= 0)
|
|
|
|
nEndingA--;
|
2020-08-16 11:26:57 +00:00
|
|
|
int nEndingB = currentLevel->nextSecret;
|
2019-09-19 22:42:45 +00:00
|
|
|
if (nEndingB >= 0)
|
|
|
|
nEndingB--;
|
|
|
|
*pnEndingA = nEndingA;
|
|
|
|
*pnEndingB = nEndingB;
|
|
|
|
}
|
|
|
|
|
2021-04-28 18:16:13 +00:00
|
|
|
void levelEndLevel(int secret)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
int nEndingA, nEndingB;
|
2020-08-16 11:26:57 +00:00
|
|
|
auto episode = volfromlevelnum(currentLevel->levelNumber);
|
2020-09-04 18:46:44 +00:00
|
|
|
gGameOptions.uGameFlags |= GF_AdvanceLevel;
|
2020-08-16 11:26:57 +00:00
|
|
|
levelGetNextLevels(&nEndingA, &nEndingB);
|
2021-04-28 18:16:13 +00:00
|
|
|
switch (secret)
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
if (nEndingA == -1)
|
|
|
|
{
|
2020-09-04 18:46:44 +00:00
|
|
|
gGameOptions.uGameFlags |= GF_EndGame;
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
gNextLevel = nEndingA;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if (nEndingB == -1)
|
|
|
|
{
|
2021-04-28 18:16:13 +00:00
|
|
|
gGameOptions.uGameFlags |= GF_EndGame;
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
gNextLevel = nEndingB;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-16 11:26:57 +00:00
|
|
|
void levelTryPlayMusic()
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2019-12-25 00:10:13 +00:00
|
|
|
FString buffer;
|
2020-08-16 10:35:46 +00:00
|
|
|
if (mus_redbook && currentLevel->cdSongId > 0)
|
|
|
|
buffer.Format("blood%02i.ogg", currentLevel->cdSongId);
|
2019-09-19 22:42:45 +00:00
|
|
|
else
|
2019-12-07 17:28:30 +00:00
|
|
|
{
|
2020-08-16 10:35:46 +00:00
|
|
|
buffer = currentLevel->music;
|
2020-08-16 11:26:57 +00:00
|
|
|
if (Mus_Play(currentLevel->labelName, buffer, true)) return;
|
2019-12-25 00:10:13 +00:00
|
|
|
DefaultExtension(buffer, ".mid");
|
2019-12-07 17:28:30 +00:00
|
|
|
}
|
2020-08-16 10:35:46 +00:00
|
|
|
if (!Mus_Play(currentLevel->labelName, buffer, true))
|
|
|
|
{
|
2020-03-01 11:57:23 +00:00
|
|
|
Mus_Play("", "", true);
|
2020-08-16 10:35:46 +00:00
|
|
|
}
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-22 06:39:22 +00:00
|
|
|
END_BLD_NS
|