2001-02-24 06:38:01 +00:00
|
|
|
/*
|
|
|
|
game.c
|
|
|
|
|
|
|
|
game specific support (notably hipnotic, rogue and abyss)
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
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
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
2001-08-29 02:12:57 +00:00
|
|
|
|
2011-09-11 05:55:13 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/qargs.h"
|
2002-08-27 07:16:28 +00:00
|
|
|
#include "QF/quakefs.h"
|
2011-09-11 05:55:13 +00:00
|
|
|
#include "QF/sys.h"
|
2001-08-29 02:12:57 +00:00
|
|
|
|
2020-06-21 14:15:17 +00:00
|
|
|
#include "nq/include/game.h"
|
|
|
|
#include "nq/include/server.h"
|
2001-02-24 06:38:01 +00:00
|
|
|
|
2001-03-09 07:53:04 +00:00
|
|
|
qboolean standard_quake = false;
|
2001-08-29 02:12:57 +00:00
|
|
|
|
2022-04-24 11:04:06 +00:00
|
|
|
float registered;
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
static cvar_t registered_cvar = {
|
|
|
|
.name = "registered",
|
|
|
|
.description =
|
|
|
|
"Is the game the registered version. 1 yes 0 no",
|
|
|
|
.default_value = "0",
|
|
|
|
.flags = CVAR_NONE,
|
2022-04-24 11:04:06 +00:00
|
|
|
.value = { .type = &cexpr_float, .value = ®istered },
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
};
|
|
|
|
char *cmdline;
|
|
|
|
static cvar_t cmdline_cvar = {
|
|
|
|
.name = "cmdline",
|
|
|
|
.description =
|
|
|
|
"None",
|
|
|
|
.default_value = "0",
|
|
|
|
.flags = CVAR_SERVERINFO,
|
2022-04-24 11:04:06 +00:00
|
|
|
.value = { .type = 0, .value = &cmdline },
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
};
|
2011-09-11 05:55:13 +00:00
|
|
|
int static_registered = 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Game_CheckRegistered
|
|
|
|
|
|
|
|
Looks for the pop.txt file and verifies it.
|
|
|
|
Sets the "registered" cvar.
|
|
|
|
Immediately exits out if an alternate game was attempted to be started
|
|
|
|
without being registered.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
Game_CheckRegistered (void)
|
|
|
|
{
|
|
|
|
QFile *h;
|
|
|
|
|
2014-01-23 02:57:57 +00:00
|
|
|
h = QFS_FOpenFile ("gfx/pop.lmp");
|
2011-09-11 05:55:13 +00:00
|
|
|
static_registered = 0;
|
|
|
|
|
|
|
|
if (h) {
|
|
|
|
static_registered = 1;
|
|
|
|
Qclose (h);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (static_registered) {
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
Cvar_Set ("registered", "1");
|
2011-09-11 05:55:13 +00:00
|
|
|
Sys_Printf ("Playing registered version.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-11 06:40:36 +00:00
|
|
|
void
|
2021-12-13 00:13:39 +00:00
|
|
|
Game_Init (memhunk_t *hunk)
|
2001-02-24 06:38:01 +00:00
|
|
|
{
|
2011-09-11 06:40:36 +00:00
|
|
|
int i;
|
|
|
|
const char *game = "nq";
|
2001-08-29 02:12:57 +00:00
|
|
|
|
2001-03-30 00:30:38 +00:00
|
|
|
// FIXME: make this dependant on QF metadata in the mission packs
|
2022-10-15 05:40:29 +00:00
|
|
|
// better yet, make its actions part of the metadata and remove
|
|
|
|
// entirely
|
2001-03-30 00:30:38 +00:00
|
|
|
standard_quake = true;
|
2003-05-09 21:10:59 +00:00
|
|
|
|
2001-03-30 00:30:38 +00:00
|
|
|
if ((i = COM_CheckParm ("-hipnotic"))) {
|
|
|
|
standard_quake = false;
|
2011-09-11 06:40:36 +00:00
|
|
|
game = "hipnotic";
|
2003-05-09 21:10:59 +00:00
|
|
|
} else if ((i = COM_CheckParm ("-rogue"))) {
|
2001-03-30 00:30:38 +00:00
|
|
|
standard_quake = false;
|
2011-09-11 06:40:36 +00:00
|
|
|
game = "rogue";
|
2003-05-09 21:10:59 +00:00
|
|
|
} else if ((i = COM_CheckParm ("-abyss"))) {
|
2011-09-11 06:40:36 +00:00
|
|
|
game = "abyss";
|
2001-03-30 00:30:38 +00:00
|
|
|
}
|
2021-12-13 00:13:39 +00:00
|
|
|
QFS_Init (hunk, game);
|
2005-02-14 09:08:32 +00:00
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
Cvar_Register (®istered_cvar, 0, 0);
|
|
|
|
Cvar_Register (&cmdline_cvar, Cvar_Info, &cmdline);
|
2011-09-11 06:40:36 +00:00
|
|
|
|
|
|
|
Game_CheckRegistered ();
|
2001-02-24 06:38:01 +00:00
|
|
|
}
|