mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-09 15:00:48 +00:00
- removed a few redundant one-liner functions.
This commit is contained in:
parent
d7078dda48
commit
d6724185b3
5 changed files with 9 additions and 43 deletions
|
@ -58,11 +58,6 @@ void GameInterface::LevelCompleted(MapRecord *map, int skill)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
CKillMgr::CKillMgr()
|
|
||||||
{
|
|
||||||
Clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
void CKillMgr::SetCount(int nCount)
|
void CKillMgr::SetCount(int nCount)
|
||||||
{
|
{
|
||||||
TotalKills = nCount;
|
TotalKills = nCount;
|
||||||
|
@ -99,11 +94,6 @@ void CKillMgr::Clear(void)
|
||||||
TotalKills = Kills = 0;
|
TotalKills = Kills = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
CSecretMgr::CSecretMgr(void)
|
|
||||||
{
|
|
||||||
Clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
void CSecretMgr::SetCount(int nCount)
|
void CSecretMgr::SetCount(int nCount)
|
||||||
{
|
{
|
||||||
Total = nCount;
|
Total = nCount;
|
||||||
|
@ -117,10 +107,6 @@ void CSecretMgr::Found(int nType)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else Super++;
|
else Super++;
|
||||||
|
|
||||||
if (gGameOptions.nGameType == 0) {
|
|
||||||
viewSetMessage(GStrings(FStringf("TXTB_SECRET%d", Random(2))), 0, MESSAGE_PRIORITY_SECRET);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CSecretMgr::Clear(void)
|
void CSecretMgr::Clear(void)
|
||||||
|
|
|
@ -29,7 +29,6 @@ BEGIN_BLD_NS
|
||||||
class CKillMgr {
|
class CKillMgr {
|
||||||
public:
|
public:
|
||||||
int TotalKills, Kills;
|
int TotalKills, Kills;
|
||||||
CKillMgr();
|
|
||||||
void SetCount(int);
|
void SetCount(int);
|
||||||
void AddNewKill(int);
|
void AddNewKill(int);
|
||||||
void AddKill(spritetype *pSprite);
|
void AddKill(spritetype *pSprite);
|
||||||
|
@ -40,7 +39,6 @@ public:
|
||||||
class CSecretMgr {
|
class CSecretMgr {
|
||||||
public:
|
public:
|
||||||
int Total, Founds, Super;
|
int Total, Founds, Super;
|
||||||
CSecretMgr();
|
|
||||||
void SetCount(int);
|
void SetCount(int);
|
||||||
void Found(int);
|
void Found(int);
|
||||||
void Clear(void);
|
void Clear(void);
|
||||||
|
|
|
@ -391,13 +391,20 @@ void evSend(int nIndex, int nType, int rxId, COMMAND_ID command)
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
case kChannelSetTotalSecrets:
|
case kChannelSetTotalSecrets:
|
||||||
if (command >= kCmdNumberic) levelSetupSecret(command - kCmdNumberic);
|
if (command >= kCmdNumberic) gSecretMgr.SetCount(command - kCmdNumberic);
|
||||||
else viewSetSystemMessage("Invalid Total-Secrets command by xobject #%d (object type %d)", nIndex, nType);
|
else viewSetSystemMessage("Invalid Total-Secrets command by xobject #%d (object type %d)", nIndex, nType);
|
||||||
break;
|
break;
|
||||||
case kChannelSecretFound:
|
case kChannelSecretFound:
|
||||||
if (SECRET_Trigger(nIndex + 65536 * nType)) // if the hint system knows this secret it's a retrigger - skip that.
|
if (SECRET_Trigger(nIndex + 65536 * nType)) // if the hint system knows this secret it's a retrigger - skip that.
|
||||||
{
|
{
|
||||||
if (command >= kCmdNumberic) levelTriggerSecret(command - kCmdNumberic);
|
if (command >= kCmdNumberic)
|
||||||
|
{
|
||||||
|
gSecretMgr.Found(command - kCmdNumberic);
|
||||||
|
if (gGameOptions.nGameType == 0)
|
||||||
|
{
|
||||||
|
viewSetMessage(GStrings(FStringf("TXTB_SECRET%d", Random(2))), 0, MESSAGE_PRIORITY_SECRET);
|
||||||
|
}
|
||||||
|
}
|
||||||
else viewSetSystemMessage("Invalid Trigger-Secret command by xobject #%d (object type %d)", nIndex, nType);
|
else viewSetSystemMessage("Invalid Trigger-Secret command by xobject #%d (object type %d)", nIndex, nType);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -54,28 +54,6 @@ void levelInitINI(const char *pzIni)
|
||||||
strncpy(BloodIniFile, pzIni, BMAX_PATH);
|
strncpy(BloodIniFile, pzIni, BMAX_PATH);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
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)
|
void CheckSectionAbend(const char *pzSection)
|
||||||
{
|
{
|
||||||
if (!pzSection || !BloodINI->SectionExists(pzSection))
|
if (!pzSection || !BloodINI->SectionExists(pzSection))
|
||||||
|
|
|
@ -75,9 +75,6 @@ extern MapRecord* gNextLevel;
|
||||||
extern bool gGameStarted;
|
extern bool gGameStarted;
|
||||||
|
|
||||||
void levelInitINI(const char *pzIni);
|
void levelInitINI(const char *pzIni);
|
||||||
void levelOverrideINI(const char *pzIni);
|
|
||||||
void levelSetupSecret(int nCount);
|
|
||||||
void levelTriggerSecret(int nSecret);
|
|
||||||
void CheckSectionAbend(const char *pzSection);
|
void CheckSectionAbend(const char *pzSection);
|
||||||
void CheckKeyAbend(const char *pzSection, const char *pzKey);
|
void CheckKeyAbend(const char *pzSection, const char *pzKey);
|
||||||
void levelLoadDefaults(void);
|
void levelLoadDefaults(void);
|
||||||
|
|
Loading…
Reference in a new issue