mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 05:00:35 +00:00
fix up the support for -<game>
This commit is contained in:
parent
a457cfb467
commit
df916ef2c7
5 changed files with 62 additions and 174 deletions
|
@ -169,4 +169,6 @@ extern qboolean isDedicated;
|
|||
extern qboolean abyss, rogue, hipnotic, standard_quake;
|
||||
extern cvar_t *registered;
|
||||
|
||||
void Game_Init (void);
|
||||
|
||||
#endif // __game_h
|
||||
|
|
|
@ -49,7 +49,7 @@ sound_ASM= snd_mixa.S
|
|||
common_ASM= sys_ia32.S worlda.S $(math_ASM)
|
||||
#endif
|
||||
|
||||
common_SOURCES= mathlib.c wad.c world.c \
|
||||
common_SOURCES= game.c mathlib.c wad.c world.c \
|
||||
model.c model_alias.c model_brush.c model_sprite.c \
|
||||
quakefs.c \
|
||||
quakeio.c com.c \
|
||||
|
|
57
nq/source/game.c
Normal file
57
nq/source/game.c
Normal file
|
@ -0,0 +1,57 @@
|
|||
/*
|
||||
game.c
|
||||
|
||||
game specific support (notably hipnotic, rogue and abyss)
|
||||
|
||||
Copyright (C) 1996-1997 Id Software, Inc.
|
||||
Copyright (C) 1999,2000 Nelson Rush.
|
||||
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
||||
Please see the file "AUTHORS" for a list of contributors
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
as published by the Free Software Foundation; either version 2
|
||||
of the License, or (at your option) any later version.
|
||||
|
||||
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:
|
||||
|
||||
Free Software Foundation, Inc.
|
||||
59 Temple Place - Suite 330
|
||||
Boston, MA 02111-1307, USA
|
||||
|
||||
$Id$
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
#include "qargs.h"
|
||||
#include "game.h"
|
||||
|
||||
/*
|
||||
Game_Init
|
||||
*/
|
||||
void Game_Init (void)
|
||||
{
|
||||
if (COM_CheckParm ("-abyss")) {
|
||||
abyss = true;
|
||||
standard_quake = false;
|
||||
}
|
||||
|
||||
if (COM_CheckParm ("-rogue")) {
|
||||
rogue = true;
|
||||
standard_quake = false;
|
||||
}
|
||||
|
||||
if (COM_CheckParm ("-hipnotic")) {
|
||||
hipnotic = true;
|
||||
standard_quake = false;
|
||||
}
|
||||
}
|
|
@ -894,6 +894,8 @@ void Host_Init (quakeparms_t *parms)
|
|||
|
||||
GIB_Init ();
|
||||
|
||||
Game_Init ();
|
||||
|
||||
// execute +set as early as possible
|
||||
Cmd_StuffCmds_f ();
|
||||
Cbuf_Execute_Sets ();
|
||||
|
|
|
@ -1,173 +0,0 @@
|
|||
/*
|
||||
qargs.c
|
||||
|
||||
command line argument processing routines
|
||||
|
||||
Copyright (C) 1996-1997 Id Software, Inc.
|
||||
Copyright (C) 1999,2000 Nelson Rush.
|
||||
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
||||
Please see the file "AUTHORS" for a list of contributors
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
as published by the Free Software Foundation; either version 2
|
||||
of the License, or (at your option) any later version.
|
||||
|
||||
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:
|
||||
|
||||
Free Software Foundation, Inc.
|
||||
59 Temple Place - Suite 330
|
||||
Boston, MA 02111-1307, USA
|
||||
|
||||
$Id$
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
#include "string.h"
|
||||
#include "ctype.h"
|
||||
#include "stdlib.h"
|
||||
#include "qtypes.h"
|
||||
#include "crc.h"
|
||||
#include "sys.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "client.h"
|
||||
#include "assert.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
usercmd_t nullcmd; // guarenteed to be zero
|
||||
|
||||
static char **largv;
|
||||
static char *argvdummy = " ";
|
||||
|
||||
static char *safeargvs[] =
|
||||
{"-stdvid", "-nolan", "-nosound", "-nocdaudio", "-nojoy", "-nomouse", "-dibonly"};
|
||||
|
||||
#define NUM_SAFE_ARGVS (sizeof(safeargvs)/sizeof(safeargvs[0]))
|
||||
|
||||
int com_argc;
|
||||
char **com_argv;
|
||||
char *com_cmdline;
|
||||
cvar_t *cmdline;
|
||||
|
||||
qboolean nouse = false; // 1999-10-29 +USE fix by Maddes
|
||||
|
||||
/*
|
||||
================
|
||||
COM_CheckParm
|
||||
|
||||
Returns the position (1 to argc-1) in the program's argument list
|
||||
where the given parameter apears, or 0 if not present
|
||||
================
|
||||
*/
|
||||
int COM_CheckParm (char *parm)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i=1 ; i<com_argc ; i++)
|
||||
{
|
||||
if (!com_argv[i])
|
||||
continue; // NEXTSTEP sometimes clears appkit vars.
|
||||
if (!strcmp (parm,com_argv[i]))
|
||||
return i;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
================
|
||||
COM_InitArgv
|
||||
================
|
||||
*/
|
||||
void COM_InitArgv (int argc, char **argv)
|
||||
{
|
||||
qboolean safe;
|
||||
int i, len;
|
||||
|
||||
safe = false;
|
||||
|
||||
largv = (char**)calloc (1, (argc + NUM_SAFE_ARGVS + 1) * sizeof (char**));
|
||||
|
||||
for (com_argc=0, len=0 ; com_argc < argc ; com_argc++)
|
||||
{
|
||||
largv[com_argc] = argv[com_argc];
|
||||
if ((argv[com_argc]) && !strcmp ("-safe", argv[com_argc]))
|
||||
safe = true;
|
||||
if (com_argc)
|
||||
len += strlen (argv[com_argc]) + 1;
|
||||
}
|
||||
|
||||
com_cmdline = (char*)calloc (1, len+1); // need strlen(com_cmdline)+2
|
||||
com_cmdline[0] = 0;
|
||||
if (len) {
|
||||
for (i=1; i < argc; i++)
|
||||
{
|
||||
strncat (com_cmdline, argv[i], len);
|
||||
assert(len - strlen(com_cmdline) > 0);
|
||||
strcat (com_cmdline, " ");
|
||||
}
|
||||
com_cmdline[len - 1] = '\0';
|
||||
}
|
||||
|
||||
if (safe)
|
||||
{
|
||||
// force all the safe-mode switches. Note that we reserved extra space in
|
||||
// case we need to add these, so we don't need an overflow check
|
||||
for (i=0 ; i<NUM_SAFE_ARGVS ; i++)
|
||||
{
|
||||
largv[com_argc] = safeargvs[i];
|
||||
com_argc++;
|
||||
}
|
||||
}
|
||||
|
||||
largv[com_argc] = argvdummy;
|
||||
com_argv = largv;
|
||||
|
||||
if (COM_CheckParm ("-abyss"))
|
||||
{
|
||||
abyss = true;
|
||||
standard_quake = false;
|
||||
}
|
||||
|
||||
if (COM_CheckParm ("-rogue"))
|
||||
{
|
||||
rogue = true;
|
||||
standard_quake = false;
|
||||
}
|
||||
|
||||
if (COM_CheckParm ("-hipnotic"))
|
||||
{
|
||||
hipnotic = true;
|
||||
standard_quake = false;
|
||||
}
|
||||
|
||||
// 1999-10-29 +USE fix by Maddes start
|
||||
if (COM_CheckParm ("-nouse"))
|
||||
{
|
||||
nouse = true;
|
||||
}
|
||||
// 1999-10-29 +USE fix by Maddes end
|
||||
}
|
||||
|
||||
/*
|
||||
================
|
||||
COM_AddParm
|
||||
|
||||
Adds the given string at the end of the current argument list
|
||||
================
|
||||
*/
|
||||
void COM_AddParm (char *parm)
|
||||
{
|
||||
largv[com_argc++] = parm;
|
||||
}
|
Loading…
Reference in a new issue