2019-08-27 06:08:18 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 2010 EDuke32 developers and contributors
|
|
|
|
|
|
|
|
This file is part of EDuke32.
|
|
|
|
|
|
|
|
EDuke32 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-11-22 23:11:37 +00:00
|
|
|
#include "ns.h"
|
2019-08-27 06:08:18 +00:00
|
|
|
#include "compat.h"
|
|
|
|
#include "build.h"
|
2019-08-31 09:08:38 +00:00
|
|
|
#include "common.h"
|
2019-08-27 06:08:18 +00:00
|
|
|
#include "exhumed.h"
|
|
|
|
#include "osdcmds.h"
|
2019-11-26 15:37:47 +00:00
|
|
|
#include "view.h"
|
2020-01-28 10:20:30 +00:00
|
|
|
#include "mapinfo.h"
|
2019-08-27 06:08:18 +00:00
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
BEGIN_PS_NS
|
|
|
|
|
|
|
|
|
2020-01-06 21:03:16 +00:00
|
|
|
static int osdcmd_god(osdcmdptr_t UNUSED(parm))
|
|
|
|
{
|
|
|
|
UNREFERENCED_CONST_PARAMETER(parm);
|
|
|
|
|
|
|
|
if (!nNetPlayerCount && !bInDemo)
|
|
|
|
{
|
|
|
|
DoPassword(3);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
OSD_Printf("god: Not in a single-player game.\n");
|
|
|
|
|
|
|
|
return OSDCMD_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int osdcmd_noclip(osdcmdptr_t UNUSED(parm))
|
|
|
|
{
|
|
|
|
UNREFERENCED_CONST_PARAMETER(parm);
|
|
|
|
|
|
|
|
if (!nNetPlayerCount && !bInDemo)
|
|
|
|
{
|
|
|
|
DoPassword(6);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
OSD_Printf("noclip: Not in a single-player game.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return OSDCMD_OK;
|
|
|
|
}
|
|
|
|
|
2020-01-28 10:20:30 +00:00
|
|
|
static int osdcmd_map(osdcmdptr_t parm)
|
|
|
|
{
|
|
|
|
FString mapname;
|
|
|
|
|
|
|
|
if (parm->numparms != 1)
|
|
|
|
{
|
|
|
|
return OSDCMD_SHOWHELP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!fileSystem.Lookup(mapname, "MAP"))
|
|
|
|
{
|
|
|
|
OSD_Printf(OSD_ERROR "map: file \"%s\" not found.\n", mapname.GetChars());
|
|
|
|
return OSDCMD_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the map is already defined.
|
|
|
|
for (int i = 0; i <= ISDEMOVER? 4 : 32; i++)
|
|
|
|
{
|
|
|
|
if (mapList[i].labelName.CompareNoCase(mapname) == 0)
|
|
|
|
{
|
|
|
|
levelnew = i;
|
|
|
|
levelnum = i;
|
|
|
|
return OSDCMD_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OSDCMD_OK;
|
|
|
|
}
|
|
|
|
|
2020-01-06 21:03:16 +00:00
|
|
|
static int osdcmd_changelevel(osdcmdptr_t parm)
|
|
|
|
{
|
|
|
|
char* p;
|
|
|
|
|
|
|
|
if (parm->numparms != 1) return OSDCMD_SHOWHELP;
|
|
|
|
|
|
|
|
int nLevel = strtol(parm->parms[0], &p, 10);
|
|
|
|
if (p[0]) return OSDCMD_SHOWHELP;
|
|
|
|
|
|
|
|
if (nLevel < 0) return OSDCMD_SHOWHELP;
|
|
|
|
|
|
|
|
int nMaxLevels;
|
|
|
|
|
|
|
|
if (!ISDEMOVER) {
|
|
|
|
nMaxLevels = 32;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nMaxLevels = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nLevel > nMaxLevels)
|
|
|
|
{
|
|
|
|
OSD_Printf("changelevel: invalid level number\n");
|
|
|
|
return OSDCMD_SHOWHELP;
|
|
|
|
}
|
|
|
|
|
|
|
|
levelnew = nLevel;
|
|
|
|
levelnum = nLevel;
|
|
|
|
|
|
|
|
return OSDCMD_OK;
|
|
|
|
}
|
|
|
|
|
2019-08-27 06:08:18 +00:00
|
|
|
|
|
|
|
int32_t registerosdcommands(void)
|
|
|
|
{
|
|
|
|
//if (VOLUMEONE)
|
2020-01-06 21:03:16 +00:00
|
|
|
OSD_RegisterFunction("changelevel","changelevel <level>: warps to the given level", osdcmd_changelevel);
|
2020-01-28 10:20:30 +00:00
|
|
|
OSD_RegisterFunction("map","map <mapname>: loads the given map", osdcmd_map);
|
2019-08-27 06:08:18 +00:00
|
|
|
// OSD_RegisterFunction("demo","demo <demofile or demonum>: starts the given demo", osdcmd_demo);
|
|
|
|
//}
|
|
|
|
|
|
|
|
//OSD_RegisterFunction("cmenu","cmenu <#>: jumps to menu", osdcmd_cmenu);
|
|
|
|
|
|
|
|
|
|
|
|
//OSD_RegisterFunction("give","give <all|health|weapons|ammo|armor|keys|inventory>: gives requested item", osdcmd_give);
|
2020-01-06 21:03:16 +00:00
|
|
|
OSD_RegisterFunction("god","god: toggles god mode", osdcmd_god);
|
2019-08-27 06:08:18 +00:00
|
|
|
//OSD_RegisterFunction("activatecheat","activatecheat <id>: activates a cheat code", osdcmd_activatecheat);
|
|
|
|
|
2020-01-06 21:03:16 +00:00
|
|
|
OSD_RegisterFunction("noclip","noclip: toggles clipping mode", osdcmd_noclip);
|
2019-08-27 06:08:18 +00:00
|
|
|
//OSD_RegisterFunction("restartmap", "restartmap: restarts the current map", osdcmd_restartmap);
|
|
|
|
//OSD_RegisterFunction("restartsound","restartsound: reinitializes the sound system",osdcmd_restartsound);
|
|
|
|
|
|
|
|
//OSD_RegisterFunction("spawn","spawn <picnum> [palnum] [cstat] [ang] [x y z]: spawns a sprite with the given properties",osdcmd_spawn);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-31 09:08:38 +00:00
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
END_PS_NS
|