2001-02-19 21:15:25 +00:00
|
|
|
/*
|
2003-05-29 04:49:34 +00:00
|
|
|
sv_pr_cmds.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
(description)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
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
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2001-05-09 05:41:34 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
2011-09-04 11:34:21 +00:00
|
|
|
#include <ctype.h>
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-31 05:19:03 +00:00
|
|
|
#include "QF/cbuf.h"
|
2001-08-27 22:16:11 +00:00
|
|
|
#include "QF/clip_hull.h"
|
2002-08-20 02:22:40 +00:00
|
|
|
#include "QF/cmd.h"
|
2001-05-31 03:41:35 +00:00
|
|
|
#include "QF/cvar.h"
|
2002-08-20 02:22:40 +00:00
|
|
|
#include "QF/msg.h"
|
2004-01-16 07:03:58 +00:00
|
|
|
#include "QF/ruamoko.h"
|
2021-07-26 02:15:51 +00:00
|
|
|
#include "QF/set.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/sys.h"
|
|
|
|
#include "QF/va.h"
|
2001-08-27 22:16:11 +00:00
|
|
|
|
|
|
|
#include "compat.h"
|
|
|
|
#include "world.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2020-06-21 14:15:17 +00:00
|
|
|
#include "nq/include/host.h"
|
|
|
|
#include "nq/include/server.h"
|
|
|
|
#include "nq/include/sv_progs.h"
|
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
/* BUILT-IN FUNCTIONS */
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_error
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
This is a TERMINAL error, which will kill off the entire server.
|
|
|
|
Dumps self.
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-03-21 21:26:26 +00:00
|
|
|
error (value)
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (string e) error
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_error (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *s;
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *ed;
|
|
|
|
|
2022-02-06 10:34:46 +00:00
|
|
|
s = PF_VarString (pr, 0, 1);
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("======SERVER ERROR in %s:\n%s\n",
|
2021-12-31 06:02:31 +00:00
|
|
|
PR_GetString (pr, pr->pr_xfunction->descriptor->name), s);
|
2001-03-03 08:31:58 +00:00
|
|
|
ed = PROG_TO_EDICT (pr, *sv_globals.self);
|
2021-07-25 00:54:08 +00:00
|
|
|
ED_Print (pr, ed, 0);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
Host_Error ("Program error");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_objerror
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
Dumps out self, then an error message. The program is aborted and self is
|
|
|
|
removed, but the level can continue.
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-03-21 21:26:26 +00:00
|
|
|
objerror (value)
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (string e) objerror
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_objerror (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
2001-08-09 06:05:43 +00:00
|
|
|
const char *s;
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *ed;
|
|
|
|
|
2022-02-06 10:34:46 +00:00
|
|
|
s = PF_VarString (pr, 0, 1);
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("======OBJECT ERROR in %s:\n%s\n",
|
2021-12-31 06:02:31 +00:00
|
|
|
PR_GetString (pr, pr->pr_xfunction->descriptor->name), s);
|
2001-03-03 08:31:58 +00:00
|
|
|
ed = PROG_TO_EDICT (pr, *sv_globals.self);
|
2021-07-25 00:54:08 +00:00
|
|
|
ED_Print (pr, ed, 0);
|
2001-02-26 20:52:14 +00:00
|
|
|
ED_Free (pr, ed);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
Host_Error ("Program error");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_makevectors
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
Writes new values for v_forward, v_up, and v_right based on angles
|
2011-09-04 11:34:21 +00:00
|
|
|
void (vector angles) makevectors
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_makevectors (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-07-24 21:42:33 +00:00
|
|
|
AngleVectors (P_VECTOR (pr, 0), *sv_globals.v_forward,
|
2001-03-03 08:31:58 +00:00
|
|
|
*sv_globals.v_right, *sv_globals.v_up);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_setorigin
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-20 02:22:40 +00:00
|
|
|
This is the only valid way to move an object without using the physics of
|
|
|
|
the world (setting velocity and waiting). Directly changing origin will
|
|
|
|
not set internal links correctly, so clipping would be messed up. This
|
|
|
|
should be called when an object is spawned, and then only if it is
|
|
|
|
teleported.
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
setorigin (entity, origin)
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (entity e, vector o) setorigin
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_setorigin (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *e;
|
|
|
|
float *org;
|
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
e = P_EDICT (pr, 0);
|
|
|
|
org = P_VECTOR (pr, 1);
|
2001-08-08 20:28:53 +00:00
|
|
|
VectorCopy (org, SVvector (e, origin));
|
2001-02-19 21:15:25 +00:00
|
|
|
SV_LinkEdict (e, false);
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2002-01-03 05:29:38 +00:00
|
|
|
SetMinMaxSize (progs_t *pr, edict_t *e, const vec3_t min, const vec3_t max,
|
2001-02-26 20:52:14 +00:00
|
|
|
qboolean rotate)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-08-20 02:22:40 +00:00
|
|
|
float a;
|
2001-02-26 06:48:02 +00:00
|
|
|
float bounds[2][3];
|
|
|
|
float xvector[2], yvector[2];
|
2002-08-20 02:22:40 +00:00
|
|
|
float *angles;
|
2001-02-26 06:48:02 +00:00
|
|
|
int i, j, k, l;
|
2002-08-20 02:22:40 +00:00
|
|
|
vec3_t rmin, rmax, base, transformed;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 3; i++)
|
2001-02-19 21:15:25 +00:00
|
|
|
if (min[i] > max[i])
|
2001-02-26 20:52:14 +00:00
|
|
|
PR_RunError (pr, "backwards mins/maxs");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-01-12 05:32:21 +00:00
|
|
|
rotate = false; // FIXME: implement rotation properly again
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
if (!rotate) {
|
2001-02-19 21:15:25 +00:00
|
|
|
VectorCopy (min, rmin);
|
|
|
|
VectorCopy (max, rmax);
|
2001-02-26 06:48:02 +00:00
|
|
|
} else {
|
|
|
|
// find min / max for rotations
|
2001-08-08 20:28:53 +00:00
|
|
|
angles = SVvector (e, angles);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
a = angles[1] / 180 * M_PI;
|
|
|
|
|
|
|
|
xvector[0] = cos (a);
|
|
|
|
xvector[1] = sin (a);
|
|
|
|
yvector[0] = -sin (a);
|
|
|
|
yvector[1] = cos (a);
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
VectorCopy (min, bounds[0]);
|
|
|
|
VectorCopy (max, bounds[1]);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
rmin[0] = rmin[1] = rmin[2] = 9999;
|
|
|
|
rmax[0] = rmax[1] = rmax[2] = -9999;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
for (i = 0; i <= 1; i++) {
|
2001-02-19 21:15:25 +00:00
|
|
|
base[0] = bounds[i][0];
|
2001-02-26 06:48:02 +00:00
|
|
|
for (j = 0; j <= 1; j++) {
|
2001-02-19 21:15:25 +00:00
|
|
|
base[1] = bounds[j][1];
|
2001-02-26 06:48:02 +00:00
|
|
|
for (k = 0; k <= 1; k++) {
|
2001-02-19 21:15:25 +00:00
|
|
|
base[2] = bounds[k][2];
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
// transform the point
|
|
|
|
transformed[0] =
|
|
|
|
xvector[0] * base[0] + yvector[0] * base[1];
|
|
|
|
transformed[1] =
|
|
|
|
xvector[1] * base[0] + yvector[1] * base[1];
|
2001-02-19 21:15:25 +00:00
|
|
|
transformed[2] = base[2];
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
for (l = 0; l < 3; l++) {
|
2001-02-19 21:15:25 +00:00
|
|
|
if (transformed[l] < rmin[l])
|
|
|
|
rmin[l] = transformed[l];
|
|
|
|
if (transformed[l] > rmax[l])
|
|
|
|
rmax[l] = transformed[l];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
// set derived values
|
2001-08-08 20:28:53 +00:00
|
|
|
VectorCopy (rmin, SVvector (e, mins));
|
|
|
|
VectorCopy (rmax, SVvector (e, maxs));
|
|
|
|
VectorSubtract (max, min, SVvector (e, size));
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
SV_LinkEdict (e, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_setsize
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
the size box is rotated by the current angle
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
setsize (entity, minvector, maxvector)
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (entity e, vector min, vector max) setsize
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_setsize (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
|
|
|
edict_t *e;
|
|
|
|
float *min, *max;
|
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
e = P_EDICT (pr, 0);
|
|
|
|
min = P_VECTOR (pr, 1);
|
|
|
|
max = P_VECTOR (pr, 2);
|
2001-02-26 20:52:14 +00:00
|
|
|
SetMinMaxSize (pr, e, min, max, false);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_setmodel
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-03-21 21:26:26 +00:00
|
|
|
setmodel (entity, model)
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (entity e, string m) setmodel
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_setmodel (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *e;
|
2001-08-09 06:05:43 +00:00
|
|
|
const char *m, **check;
|
2001-02-26 06:48:02 +00:00
|
|
|
int i;
|
2003-05-29 04:49:34 +00:00
|
|
|
model_t *mod;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
e = P_EDICT (pr, 0);
|
2003-04-22 18:20:15 +00:00
|
|
|
m = P_GSTRING (pr, 1);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
// check to see if model was properly precached
|
2001-02-26 06:48:02 +00:00
|
|
|
for (i = 0, check = sv.model_precache; *check; i++, check++)
|
|
|
|
if (!strcmp (*check, m))
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (!*check)
|
2001-02-26 20:52:14 +00:00
|
|
|
PR_RunError (pr, "no precache: %s\n", m);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-08-08 20:28:53 +00:00
|
|
|
SVstring (e, model) = PR_SetString (pr, m);
|
2011-09-04 11:34:21 +00:00
|
|
|
SVfloat (e, modelindex) = i;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2011-09-04 11:34:21 +00:00
|
|
|
mod = sv.models[i];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-24 00:53:54 +00:00
|
|
|
if (mod) {
|
|
|
|
// FIXME disabled for now as setting clipmins/maxs is currently
|
|
|
|
// too messy
|
|
|
|
//if (mod->type == mod_brush)
|
|
|
|
// SetMinMaxSize (pr, e, mod->clipmins, mod->clipmaxs, true);
|
|
|
|
//else
|
|
|
|
SetMinMaxSize (pr, e, mod->mins, mod->maxs, true);
|
|
|
|
} else {
|
2001-02-26 20:52:14 +00:00
|
|
|
SetMinMaxSize (pr, e, vec3_origin, vec3_origin, true);
|
2010-08-24 00:53:54 +00:00
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_bprint
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
broadcast print to everyone on server
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-03-21 21:26:26 +00:00
|
|
|
bprint (value)
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (string s) bprint
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_bprint (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-08-20 02:22:40 +00:00
|
|
|
const char *s;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2022-02-06 10:34:46 +00:00
|
|
|
s = PF_VarString (pr, 0, 1);
|
2001-02-19 21:15:25 +00:00
|
|
|
SV_BroadcastPrintf ("%s", s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_sprint
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
single print to a specific client
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-03-21 21:26:26 +00:00
|
|
|
sprint (clientent, value)
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (entity client, string s) sprint
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_sprint (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
2002-08-20 02:22:40 +00:00
|
|
|
const char *s;
|
2001-02-26 06:48:02 +00:00
|
|
|
client_t *client;
|
2022-01-16 13:15:18 +00:00
|
|
|
unsigned entnum;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
entnum = P_EDICTNUM (pr, 0);
|
2022-02-06 10:34:46 +00:00
|
|
|
s = PF_VarString (pr, 1, 2);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
if (entnum < 1 || entnum > svs.maxclients) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("tried to sprint to a non-client\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
client = &svs.clients[entnum - 1];
|
|
|
|
|
2002-07-02 19:13:53 +00:00
|
|
|
MSG_WriteByte (&client->message, svc_print);
|
2001-02-26 06:48:02 +00:00
|
|
|
MSG_WriteString (&client->message, s);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_centerprint
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
single print to a specific client
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-03-21 21:26:26 +00:00
|
|
|
centerprint (clientent, value)
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (...) centerprint
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_centerprint (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
2003-03-21 21:26:26 +00:00
|
|
|
const char *s;
|
2003-05-29 04:49:34 +00:00
|
|
|
client_t *cl;
|
2022-01-16 13:15:18 +00:00
|
|
|
unsigned entnum;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
entnum = P_EDICTNUM (pr, 0);
|
2022-02-06 10:34:46 +00:00
|
|
|
s = PF_VarString (pr, 1, 2);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
if (entnum < 1 || entnum > svs.maxclients) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("tried to sprint to a non-client\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
cl = &svs.clients[entnum - 1];
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
MSG_WriteByte (&cl->message, svc_centerprint);
|
|
|
|
MSG_WriteString (&cl->message, s);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (vector o, vector d, float color, float count) particle
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_particle (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
|
|
|
float *org, *dir;
|
|
|
|
float color;
|
|
|
|
float count;
|
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
org = P_VECTOR (pr, 0);
|
|
|
|
dir = P_VECTOR (pr, 1);
|
|
|
|
color = P_FLOAT (pr, 2);
|
|
|
|
count = P_FLOAT (pr, 3);
|
2001-02-19 21:15:25 +00:00
|
|
|
SV_StartParticle (org, dir, color, count);
|
|
|
|
}
|
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
/*
|
|
|
|
PF_ambientsound
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (vector pos, string samp, float vol, float atten) ambientsound
|
2003-05-29 04:49:34 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_ambientsound (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
2001-12-12 21:56:09 +00:00
|
|
|
const char **check;
|
2003-05-29 04:49:34 +00:00
|
|
|
const char *samp;
|
|
|
|
float *pos;
|
|
|
|
float vol, attenuation;
|
|
|
|
int soundnum;
|
2010-08-24 00:53:54 +00:00
|
|
|
int large = false;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
pos = P_VECTOR (pr, 0);
|
2003-04-22 18:20:15 +00:00
|
|
|
samp = P_GSTRING (pr, 1);
|
2002-07-24 21:42:33 +00:00
|
|
|
vol = P_FLOAT (pr, 2);
|
|
|
|
attenuation = P_FLOAT (pr, 3);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-12-12 21:56:09 +00:00
|
|
|
// check to see if samp was properly precached
|
2001-02-26 06:48:02 +00:00
|
|
|
for (soundnum = 0, check = sv.sound_precache; *check; check++, soundnum++)
|
|
|
|
if (!strcmp (*check, samp))
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
if (!*check) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("no precache: %s\n", samp);
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-08-24 00:53:54 +00:00
|
|
|
if (soundnum > 255) {
|
|
|
|
if (sv.protocol == PROTOCOL_NETQUAKE)
|
|
|
|
return;
|
|
|
|
large = true;
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-12-12 21:56:09 +00:00
|
|
|
// add an svc_spawnambient command to the level signon packet
|
2010-08-24 00:53:54 +00:00
|
|
|
MSG_WriteByte (&sv.signon,
|
|
|
|
large ? svc_spawnstaticsound2 : svc_spawnstaticsound);
|
2001-12-12 21:56:09 +00:00
|
|
|
MSG_WriteCoordV (&sv.signon, pos);
|
2010-08-24 00:53:54 +00:00
|
|
|
if (large)
|
|
|
|
MSG_WriteShort (&sv.signon, soundnum);
|
|
|
|
else
|
|
|
|
MSG_WriteByte (&sv.signon, soundnum);
|
2001-02-26 06:48:02 +00:00
|
|
|
MSG_WriteByte (&sv.signon, vol * 255);
|
|
|
|
MSG_WriteByte (&sv.signon, attenuation * 64);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_sound
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
Each entity can have eight independant sound sources, like voice,
|
|
|
|
weapon, feet, etc.
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
Channel 0 is an auto-allocate channel, the others override anything
|
|
|
|
already running on that entity/channel pair.
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
An attenuation of 0 will play full volume everywhere in the level.
|
|
|
|
Larger attenuations will drop off.
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (entity e, float chan, string samp) sound
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_sound (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
2002-08-20 02:22:40 +00:00
|
|
|
const char *sample;
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *entity;
|
2003-05-29 04:49:34 +00:00
|
|
|
float attenuation;
|
|
|
|
int channel, volume;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
entity = P_EDICT (pr, 0);
|
|
|
|
channel = P_FLOAT (pr, 1);
|
2003-04-22 18:20:15 +00:00
|
|
|
sample = P_GSTRING (pr, 2);
|
2002-07-24 21:42:33 +00:00
|
|
|
volume = P_FLOAT (pr, 3) * 255;
|
|
|
|
attenuation = P_FLOAT (pr, 4);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (volume < 0 || volume > 255)
|
|
|
|
Sys_Error ("SV_StartSound: volume = %i", volume);
|
|
|
|
if (attenuation < 0 || attenuation > 4)
|
|
|
|
Sys_Error ("SV_StartSound: attenuation = %f", attenuation);
|
|
|
|
if (channel < 0 || channel > 7)
|
|
|
|
Sys_Error ("SV_StartSound: channel = %i", channel);
|
|
|
|
|
|
|
|
SV_StartSound (entity, channel, sample, volume, attenuation);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_traceline
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-20 02:22:40 +00:00
|
|
|
Used for use tracing and shot targeting.
|
|
|
|
Traces are blocked by bbox and exact bsp entityes, and also slide box
|
|
|
|
entities if the tryents flag is set.
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
traceline (vector1, vector2, tryents)
|
2004-01-06 05:51:09 +00:00
|
|
|
// float (vector v1, vector v2, float tryents) traceline
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_traceline (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
float *v1, *v2;
|
|
|
|
edict_t *ent;
|
2003-05-29 04:49:34 +00:00
|
|
|
int nomonsters;
|
2002-08-20 02:22:40 +00:00
|
|
|
trace_t trace;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
v1 = P_VECTOR (pr, 0);
|
|
|
|
v2 = P_VECTOR (pr, 1);
|
|
|
|
nomonsters = P_FLOAT (pr, 2);
|
|
|
|
ent = P_EDICT (pr, 3);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
trace = SV_Move (v1, vec3_origin, vec3_origin, v2, nomonsters, ent);
|
|
|
|
|
2001-03-03 08:31:58 +00:00
|
|
|
*sv_globals.trace_allsolid = trace.allsolid;
|
|
|
|
*sv_globals.trace_startsolid = trace.startsolid;
|
|
|
|
*sv_globals.trace_fraction = trace.fraction;
|
|
|
|
*sv_globals.trace_inwater = trace.inwater;
|
|
|
|
*sv_globals.trace_inopen = trace.inopen;
|
|
|
|
VectorCopy (trace.endpos, *sv_globals.trace_endpos);
|
|
|
|
VectorCopy (trace.plane.normal, *sv_globals.trace_plane_normal);
|
|
|
|
*sv_globals.trace_plane_dist = trace.plane.dist;
|
2002-08-20 02:22:40 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (trace.ent)
|
2001-03-03 08:31:58 +00:00
|
|
|
*sv_globals.trace_ent = EDICT_TO_PROG (pr, trace.ent);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2001-03-03 08:31:58 +00:00
|
|
|
*sv_globals.trace_ent = EDICT_TO_PROG (pr, sv.edicts);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2011-09-04 11:34:21 +00:00
|
|
|
/*
|
|
|
|
PF_tracebox
|
|
|
|
// void (vector start, vector mins, vector maxs, vector end, float type,
|
|
|
|
// entity passent) tracebox
|
|
|
|
|
|
|
|
Wrapper around SV_Move, this makes PF_movetoground and PF_traceline
|
|
|
|
redundant.
|
|
|
|
*/
|
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_tracebox (progs_t *pr, void *data)
|
2011-09-04 11:34:21 +00:00
|
|
|
{
|
|
|
|
edict_t *ent;
|
|
|
|
float *start, *end, *mins, *maxs;
|
|
|
|
int type;
|
|
|
|
trace_t trace;
|
|
|
|
|
|
|
|
start = P_VECTOR (pr, 0);
|
|
|
|
mins = P_VECTOR (pr, 1);
|
|
|
|
maxs = P_VECTOR (pr, 2);
|
|
|
|
end = P_VECTOR (pr, 3);
|
|
|
|
type = P_FLOAT (pr, 4);
|
|
|
|
ent = P_EDICT (pr, 5);
|
|
|
|
|
|
|
|
trace = SV_Move (start, mins, maxs, end, type, ent);
|
|
|
|
|
|
|
|
*sv_globals.trace_allsolid = trace.allsolid;
|
|
|
|
*sv_globals.trace_startsolid = trace.startsolid;
|
|
|
|
*sv_globals.trace_fraction = trace.fraction;
|
|
|
|
*sv_globals.trace_inwater = trace.inwater;
|
|
|
|
*sv_globals.trace_inopen = trace.inopen;
|
|
|
|
VectorCopy (trace.endpos, *sv_globals.trace_endpos);
|
|
|
|
VectorCopy (trace.plane.normal, *sv_globals.trace_plane_normal);
|
|
|
|
*sv_globals.trace_plane_dist = trace.plane.dist;
|
|
|
|
if (trace.ent)
|
|
|
|
*sv_globals.trace_ent = EDICT_TO_PROG (pr, trace.ent);
|
|
|
|
else
|
|
|
|
*sv_globals.trace_ent = EDICT_TO_PROG (pr, sv.edicts);
|
|
|
|
}
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_checkpos
|
|
|
|
|
|
|
|
Returns true if the given entity can move to the given position from it's
|
|
|
|
current position by walking or rolling.
|
|
|
|
FIXME: make work...
|
|
|
|
scalar checkpos (entity, vector)
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void __attribute__ ((used))
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_checkpos (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-07-26 02:15:51 +00:00
|
|
|
static set_t *checkpvs;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2022-01-16 13:15:18 +00:00
|
|
|
static unsigned
|
|
|
|
PF_newcheckclient (progs_t *pr, unsigned check)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *ent;
|
2022-01-16 13:15:18 +00:00
|
|
|
unsigned i;
|
2001-02-26 06:48:02 +00:00
|
|
|
mleaf_t *leaf;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
// cycle to the next one
|
2001-02-19 21:15:25 +00:00
|
|
|
if (check < 1)
|
|
|
|
check = 1;
|
|
|
|
if (check > svs.maxclients)
|
|
|
|
check = svs.maxclients;
|
|
|
|
|
|
|
|
if (check == svs.maxclients)
|
|
|
|
i = 1;
|
|
|
|
else
|
|
|
|
i = check + 1;
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
for (;; i++) {
|
|
|
|
if (i == svs.maxclients + 1)
|
2001-02-19 21:15:25 +00:00
|
|
|
i = 1;
|
|
|
|
|
2001-02-26 20:52:14 +00:00
|
|
|
ent = EDICT_NUM (pr, i);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (i == check)
|
2001-02-26 06:48:02 +00:00
|
|
|
break; // didn't find anything else
|
2003-05-29 04:49:34 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (ent->free)
|
|
|
|
continue;
|
2001-08-08 20:28:53 +00:00
|
|
|
if (SVfloat (ent, health) <= 0)
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
2001-08-08 20:28:53 +00:00
|
|
|
if ((int) SVfloat (ent, flags) & FL_NOTARGET)
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
2011-09-04 11:34:21 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
// anything that is a client, or has a client as an enemy
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
// get the PVS for the entity
|
2022-05-22 02:18:32 +00:00
|
|
|
vec4f_t org;
|
2001-08-08 20:28:53 +00:00
|
|
|
VectorAdd (SVvector (ent, origin), SVvector (ent, view_ofs), org);
|
2022-05-22 02:18:32 +00:00
|
|
|
org[3] = 1;
|
2001-02-19 21:15:25 +00:00
|
|
|
leaf = Mod_PointInLeaf (org, sv.worldmodel);
|
2021-07-26 02:15:51 +00:00
|
|
|
if (!checkpvs) {
|
2021-07-27 03:32:40 +00:00
|
|
|
checkpvs = set_new_size (sv.worldmodel->brush.visleafs);
|
2021-07-26 02:15:51 +00:00
|
|
|
}
|
|
|
|
set_assign (checkpvs, Mod_LeafPVS (leaf, sv.worldmodel));
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2002-08-20 02:22:40 +00:00
|
|
|
#define MAX_CHECK 16
|
2003-05-29 04:49:34 +00:00
|
|
|
int c_invis, c_notvis;
|
2002-08-20 02:22:40 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_checkclient
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
Returns a client (or object that has a client enemy) that would be a
|
|
|
|
valid target.
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
If there are more than one valid options, they are cycled each frame
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
If (self.origin + self.viewofs) is not in the PVS of the current target,
|
|
|
|
it is not returned at all.
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
name checkclient ()
|
2011-09-04 11:34:21 +00:00
|
|
|
// entity () clientlist
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_checkclient (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
|
|
|
edict_t *ent, *self;
|
|
|
|
int l;
|
2002-08-20 02:22:40 +00:00
|
|
|
mleaf_t *leaf;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
// find a new check if on a new frame
|
2001-02-26 06:48:02 +00:00
|
|
|
if (sv.time - sv.lastchecktime >= 0.1) {
|
2001-02-26 20:52:14 +00:00
|
|
|
sv.lastcheck = PF_newcheckclient (pr, sv.lastcheck);
|
2001-02-19 21:15:25 +00:00
|
|
|
sv.lastchecktime = sv.time;
|
|
|
|
}
|
2012-05-21 23:23:22 +00:00
|
|
|
// return check if it might be visible
|
2001-02-26 20:52:14 +00:00
|
|
|
ent = EDICT_NUM (pr, sv.lastcheck);
|
2001-08-08 20:28:53 +00:00
|
|
|
if (ent->free || SVfloat (ent, health) <= 0) {
|
2001-02-26 20:52:14 +00:00
|
|
|
RETURN_EDICT (pr, sv.edicts);
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-05-29 04:49:34 +00:00
|
|
|
// if current entity can't possibly see the check entity, return 0
|
2001-03-03 08:31:58 +00:00
|
|
|
self = PROG_TO_EDICT (pr, *sv_globals.self);
|
2022-05-22 02:18:32 +00:00
|
|
|
vec4f_t view;
|
2001-08-08 20:28:53 +00:00
|
|
|
VectorAdd (SVvector (self, origin), SVvector (self, view_ofs), view);
|
2022-05-22 02:18:32 +00:00
|
|
|
view[3] = 1;
|
2001-02-19 21:15:25 +00:00
|
|
|
leaf = Mod_PointInLeaf (view, sv.worldmodel);
|
2021-02-01 10:31:11 +00:00
|
|
|
l = (leaf - sv.worldmodel->brush.leafs) - 1;
|
2021-07-26 02:15:51 +00:00
|
|
|
if (!set_is_member (checkpvs, l)) {
|
2001-02-26 06:48:02 +00:00
|
|
|
c_notvis++;
|
2001-02-26 20:52:14 +00:00
|
|
|
RETURN_EDICT (pr, sv.edicts);
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-05-29 04:49:34 +00:00
|
|
|
// might be able to see it
|
2001-02-26 06:48:02 +00:00
|
|
|
c_invis++;
|
2001-02-26 20:52:14 +00:00
|
|
|
RETURN_EDICT (pr, ent);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_stuffcmd
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
Sends text over to the client's execution buffer
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
stuffcmd (clientent, value)
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (entity client, string s) stuffcmd
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_stuffcmd (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-08-20 02:22:40 +00:00
|
|
|
const char *str;
|
2001-02-26 06:48:02 +00:00
|
|
|
client_t *old;
|
2022-01-16 13:15:18 +00:00
|
|
|
pr_uint_t entnum;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
entnum = P_EDICTNUM (pr, 0);
|
2001-02-19 21:15:25 +00:00
|
|
|
if (entnum < 1 || entnum > svs.maxclients)
|
2001-02-26 20:52:14 +00:00
|
|
|
PR_RunError (pr, "Parm 0 not a client");
|
2003-04-22 18:20:15 +00:00
|
|
|
str = P_GSTRING (pr, 1);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
old = host_client;
|
2001-02-26 06:48:02 +00:00
|
|
|
host_client = &svs.clients[entnum - 1];
|
2001-02-19 21:15:25 +00:00
|
|
|
Host_ClientCommands ("%s", str);
|
|
|
|
host_client = old;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_localcmd
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
Inserts text into the server console's execution buffer
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
localcmd (string)
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (string s) localcmd
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_localcmd (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *str;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2003-04-22 18:20:15 +00:00
|
|
|
str = P_GSTRING (pr, 0);
|
2002-07-31 05:19:03 +00:00
|
|
|
Cbuf_AddText (host_cbuf, str);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_findradius
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
Returns a chain of entities that have origins within a spherical area
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
findradius (origin, radius)
|
2004-01-06 05:51:09 +00:00
|
|
|
// entity (vector org, float rad) findradius
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_findradius (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
|
|
|
edict_t *ent, *chain;
|
2011-09-04 11:34:21 +00:00
|
|
|
float rsqr;
|
|
|
|
vec_t *emins, *emaxs, *org;
|
2022-01-16 13:15:18 +00:00
|
|
|
pr_uint_t i;
|
2002-08-20 02:22:40 +00:00
|
|
|
vec3_t eorg;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
chain = (edict_t *) sv.edicts;
|
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
org = P_VECTOR (pr, 0);
|
2011-09-04 11:34:21 +00:00
|
|
|
rsqr = P_FLOAT (pr, 1);
|
|
|
|
rsqr *= rsqr; // Square early, sqrt never
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-26 20:52:14 +00:00
|
|
|
ent = NEXT_EDICT (pr, sv.edicts);
|
|
|
|
for (i = 1; i < sv.num_edicts; i++, ent = NEXT_EDICT (pr, ent)) {
|
2001-02-19 21:15:25 +00:00
|
|
|
if (ent->free)
|
|
|
|
continue;
|
2001-08-08 20:28:53 +00:00
|
|
|
if (SVfloat (ent, solid) == SOLID_NOT)
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
2011-09-04 11:34:21 +00:00
|
|
|
emins = SVvector (ent, absmin);
|
|
|
|
emaxs = SVvector (ent, absmax);
|
2022-01-16 13:15:18 +00:00
|
|
|
for (int j = 0; j < 3; j++)
|
2011-09-04 11:34:21 +00:00
|
|
|
eorg[j] = org[j] - 0.5 * (emins[j] + emaxs[j]);
|
|
|
|
if (DotProduct (eorg, eorg) > rsqr)
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-08-08 20:28:53 +00:00
|
|
|
SVentity (ent, chain) = EDICT_TO_PROG (pr, chain);
|
2001-02-19 21:15:25 +00:00
|
|
|
chain = ent;
|
|
|
|
}
|
|
|
|
|
2001-02-26 20:52:14 +00:00
|
|
|
RETURN_EDICT (pr, chain);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// entity () spawn
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_spawn (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *ed;
|
|
|
|
|
2001-02-26 20:52:14 +00:00
|
|
|
ed = ED_Alloc (pr);
|
|
|
|
RETURN_EDICT (pr, ed);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (entity e) remove
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_remove (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *ed;
|
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
ed = P_EDICT (pr, 0);
|
2001-02-26 20:52:14 +00:00
|
|
|
ED_Free (pr, ed);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-08-09 06:05:43 +00:00
|
|
|
PR_CheckEmptyString (progs_t *pr, const char *s)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
if (s[0] <= ' ')
|
2001-02-26 20:52:14 +00:00
|
|
|
PR_RunError (pr, "Bad string");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2011-09-11 08:07:41 +00:00
|
|
|
static int
|
2011-09-04 11:34:21 +00:00
|
|
|
do_precache (progs_t *pr, const char **cache, int max, const char *name,
|
|
|
|
const char *func)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
if (sv.state != ss_loading)
|
|
|
|
PR_RunError (pr, "%s: Precache can be done only in spawn functions",
|
|
|
|
func);
|
|
|
|
|
|
|
|
PR_CheckEmptyString (pr, name);
|
|
|
|
|
2021-07-28 06:01:45 +00:00
|
|
|
s = Hunk_TempAlloc (0, strlen (name) + 1);
|
2011-09-04 11:34:21 +00:00
|
|
|
for (i = 0; *name; i++, name++) {
|
|
|
|
int c = (byte) *name;
|
|
|
|
s[i] = tolower (c);
|
|
|
|
}
|
|
|
|
s[i] = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_SOUNDS; i++) {
|
|
|
|
if (!cache[i]) {
|
2021-07-28 06:01:45 +00:00
|
|
|
char *c = Hunk_Alloc (0, strlen (s) + 1);
|
2011-09-04 11:34:21 +00:00
|
|
|
strcpy (c, s);
|
|
|
|
cache[i] = c; // blah, const
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_dev, "%s: %3d %s\n", func, i, s);
|
2011-09-11 08:07:41 +00:00
|
|
|
return i;
|
2011-09-04 11:34:21 +00:00
|
|
|
}
|
|
|
|
if (!strcmp (cache[i], s))
|
2011-09-11 08:07:41 +00:00
|
|
|
return i;
|
2011-09-04 11:34:21 +00:00
|
|
|
}
|
|
|
|
PR_RunError (pr, "%s: overflow", func);
|
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// string (string s) precache_file
|
|
|
|
// string (string s) precache_file2
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_precache_file (progs_t *pr, void *data)
|
2002-08-20 02:22:40 +00:00
|
|
|
{
|
2010-01-13 06:42:26 +00:00
|
|
|
// precache_file is used only to copy files with qcc, it does nothing
|
2002-07-24 21:42:33 +00:00
|
|
|
R_INT (pr) = P_INT (pr, 0);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2022-01-23 12:54:03 +00:00
|
|
|
#define PF_precache_file2 PF_precache_file
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (string s) precache_sound
|
|
|
|
// string (string s) precache_sound2
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_precache_sound (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2011-09-04 11:34:21 +00:00
|
|
|
do_precache (pr, sv.sound_precache, MAX_SOUNDS, P_GSTRING (pr, 0),
|
|
|
|
"precache_sound");
|
2002-07-24 21:42:33 +00:00
|
|
|
R_INT (pr) = P_INT (pr, 0);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2022-01-23 12:54:03 +00:00
|
|
|
#define PF_precache_sound2 PF_precache_sound
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (string s) precache_model
|
|
|
|
// string (string s) precache_model2
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_precache_model (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2011-09-11 08:07:41 +00:00
|
|
|
int ind;
|
|
|
|
const char *mod = P_GSTRING (pr, 0);
|
|
|
|
ind = do_precache (pr, sv.model_precache, MAX_MODELS, mod,
|
|
|
|
"precache_model");
|
|
|
|
sv.models[ind] = Mod_ForName (mod, true);
|
2002-07-24 21:42:33 +00:00
|
|
|
R_INT (pr) = P_INT (pr, 0);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2022-01-23 12:54:03 +00:00
|
|
|
#define PF_precache_model2 PF_precache_model
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_walkmove
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-03-21 21:26:26 +00:00
|
|
|
float (float yaw, float dist) walkmove
|
2004-01-06 05:51:09 +00:00
|
|
|
// float (float yaw, float dist) walkmove
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_walkmove (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
|
|
|
edict_t *ent;
|
|
|
|
float yaw, dist;
|
|
|
|
int oldself;
|
2003-05-29 04:49:34 +00:00
|
|
|
vec3_t move;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-03-03 08:31:58 +00:00
|
|
|
ent = PROG_TO_EDICT (pr, *sv_globals.self);
|
2002-07-24 21:42:33 +00:00
|
|
|
yaw = P_FLOAT (pr, 0);
|
|
|
|
dist = P_FLOAT (pr, 1);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-08-08 20:28:53 +00:00
|
|
|
if (!((int) SVfloat (ent, flags) & (FL_ONGROUND | FL_FLY | FL_SWIM))) {
|
2002-07-24 21:42:33 +00:00
|
|
|
R_FLOAT (pr) = 0;
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
yaw = yaw * M_PI * 2 / 360;
|
|
|
|
|
|
|
|
move[0] = cos (yaw) * dist;
|
|
|
|
move[1] = sin (yaw) * dist;
|
2001-02-19 21:15:25 +00:00
|
|
|
move[2] = 0;
|
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
// save program state, because SV_movestep may call other progs
|
2001-03-03 08:31:58 +00:00
|
|
|
oldself = *sv_globals.self;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
R_FLOAT (pr) = SV_movestep (ent, move, true);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
// restore program state
|
2001-03-03 08:31:58 +00:00
|
|
|
*sv_globals.self = oldself;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_droptofloor
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-03-21 21:26:26 +00:00
|
|
|
void () droptofloor
|
2004-01-06 05:51:09 +00:00
|
|
|
// float () droptofloor
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_droptofloor (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *ent;
|
|
|
|
trace_t trace;
|
2003-05-29 04:49:34 +00:00
|
|
|
vec3_t end;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-03-03 08:31:58 +00:00
|
|
|
ent = PROG_TO_EDICT (pr, *sv_globals.self);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-08 20:28:53 +00:00
|
|
|
VectorCopy (SVvector (ent, origin), end);
|
2001-02-19 21:15:25 +00:00
|
|
|
end[2] -= 256;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
trace = SV_Move (SVvector (ent, origin), SVvector (ent, mins),
|
2001-10-06 03:05:33 +00:00
|
|
|
SVvector (ent, maxs), end, false, ent);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-10-06 03:05:33 +00:00
|
|
|
if (trace.fraction == 1 || trace.allsolid) {
|
2002-07-24 21:42:33 +00:00
|
|
|
R_FLOAT (pr) = 0;
|
2001-10-06 03:05:33 +00:00
|
|
|
} else {
|
2001-08-08 20:28:53 +00:00
|
|
|
VectorCopy (trace.endpos, SVvector (ent, origin));
|
2001-02-19 21:15:25 +00:00
|
|
|
SV_LinkEdict (ent, false);
|
2001-08-08 20:28:53 +00:00
|
|
|
SVfloat (ent, flags) = (int) SVfloat (ent, flags) | FL_ONGROUND;
|
|
|
|
SVentity (ent, groundentity) = EDICT_TO_PROG (pr, trace.ent);
|
2002-07-24 21:42:33 +00:00
|
|
|
R_FLOAT (pr) = 1;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_lightstyle
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-03-21 21:26:26 +00:00
|
|
|
void (float style, string value) lightstyle
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (float style, string value) lightstyle
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_lightstyle (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2003-05-29 04:49:34 +00:00
|
|
|
const char *val;
|
2011-09-04 11:34:21 +00:00
|
|
|
client_t *cl;
|
2022-01-16 13:15:18 +00:00
|
|
|
int style;
|
|
|
|
unsigned j;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
style = P_FLOAT (pr, 0);
|
2003-04-22 18:20:15 +00:00
|
|
|
val = P_GSTRING (pr, 1);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
// change the string in sv
|
2001-02-19 21:15:25 +00:00
|
|
|
sv.lightstyles[style] = val;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
// send message to all clients on this server
|
2001-02-19 21:15:25 +00:00
|
|
|
if (sv.state != ss_active)
|
|
|
|
return;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2011-09-04 11:34:21 +00:00
|
|
|
for (j = 0, cl = svs.clients; j < svs.maxclients; j++, cl++)
|
|
|
|
if (cl->active || cl->spawned) {
|
|
|
|
MSG_WriteByte (&cl->message, svc_lightstyle);
|
|
|
|
MSG_WriteByte (&cl->message, style);
|
|
|
|
MSG_WriteString (&cl->message, val);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// float (entity e) checkbottom
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_checkbottom (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *ent;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
ent = P_EDICT (pr, 0);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
R_FLOAT (pr) = SV_CheckBottom (ent);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// float (vector v) pointcontents
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_pointcontents (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
float *v;
|
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
v = P_VECTOR (pr, 0);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
R_FLOAT (pr) = SV_PointContents (v);
|
2001-02-19 21:15:25 +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
|
|
|
float sv_aim;
|
|
|
|
static cvar_t sv_aim_cvar = {
|
|
|
|
.name = "sv_aim",
|
|
|
|
.description =
|
|
|
|
"None",
|
|
|
|
.default_value = "0.93",
|
|
|
|
.flags = CVAR_NONE,
|
|
|
|
.value = { .type = &cexpr_float, .value = &sv_aim },
|
|
|
|
};
|
2002-08-20 02:22:40 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_aim
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
Pick a vector for the player to shoot along
|
2003-03-21 21:26:26 +00:00
|
|
|
vector aim (entity, missilespeed)
|
2004-01-06 05:51:09 +00:00
|
|
|
// vector (entity e, float speed) aim
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_aim (progs_t *pr, void *data)
|
2001-02-26 06:48:02 +00:00
|
|
|
{
|
|
|
|
edict_t *ent, *check, *bestent;
|
2002-08-20 02:22:40 +00:00
|
|
|
float dist, bestdist, speed;
|
2003-05-29 04:49:34 +00:00
|
|
|
float *mins, *maxs, *org;
|
2022-01-16 13:15:18 +00:00
|
|
|
pr_uint_t i;
|
2001-02-26 06:48:02 +00:00
|
|
|
trace_t tr;
|
2002-08-20 02:22:40 +00:00
|
|
|
vec3_t start, dir, end, bestdir;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
ent = P_EDICT (pr, 0);
|
|
|
|
speed = P_FLOAT (pr, 1);
|
2011-09-04 11:34:21 +00:00
|
|
|
(void) speed; //FIXME
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-08 20:28:53 +00:00
|
|
|
VectorCopy (SVvector (ent, origin), start);
|
2001-02-19 21:15:25 +00:00
|
|
|
start[2] += 20;
|
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
// try sending a trace straight
|
2001-03-03 08:31:58 +00:00
|
|
|
VectorCopy (*sv_globals.v_forward, dir);
|
2003-08-08 15:25:53 +00:00
|
|
|
VectorMultAdd (start, 2048, dir, end);
|
2001-02-19 21:15:25 +00:00
|
|
|
tr = SV_Move (start, vec3_origin, vec3_origin, end, false, ent);
|
2001-08-08 20:28:53 +00:00
|
|
|
if (tr.ent && SVfloat (tr.ent, takedamage) == DAMAGE_AIM
|
[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
|
|
|
&& (!teamplay || SVfloat (ent, team) <= 0
|
2001-08-08 20:28:53 +00:00
|
|
|
|| SVfloat (ent, team) != SVfloat (tr.ent, team))) {
|
2002-07-24 21:42:33 +00:00
|
|
|
VectorCopy (*sv_globals.v_forward, R_VECTOR (pr));
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-05-29 04:49:34 +00:00
|
|
|
|
|
|
|
// try all possible entities
|
2001-02-19 21:15:25 +00:00
|
|
|
VectorCopy (dir, bestdir);
|
[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
|
|
|
bestdist = sv_aim;
|
2001-02-19 21:15:25 +00:00
|
|
|
bestent = NULL;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-26 20:52:14 +00:00
|
|
|
check = NEXT_EDICT (pr, sv.edicts);
|
|
|
|
for (i = 1; i < sv.num_edicts; i++, check = NEXT_EDICT (pr, check)) {
|
2001-08-08 20:28:53 +00:00
|
|
|
if (SVfloat (check, takedamage) != DAMAGE_AIM)
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
|
|
|
if (check == ent)
|
|
|
|
continue;
|
[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
|
|
|
if (teamplay && SVfloat (ent, team) > 0
|
2002-08-20 02:22:40 +00:00
|
|
|
&& SVfloat (ent, team) == SVfloat (check, team))
|
|
|
|
continue; // don't aim at teammate
|
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
mins = SVvector (check, mins);
|
|
|
|
maxs = SVvector (check, maxs);
|
|
|
|
org = SVvector (check, origin);
|
2022-01-16 13:15:18 +00:00
|
|
|
for (int j = 0; j < 3; j++)
|
2003-05-29 04:49:34 +00:00
|
|
|
end[j] = org[j] + 0.5 * (mins[j] + maxs[j]);
|
2001-02-19 21:15:25 +00:00
|
|
|
VectorSubtract (end, start, dir);
|
|
|
|
VectorNormalize (dir);
|
2001-03-03 08:31:58 +00:00
|
|
|
dist = DotProduct (dir, *sv_globals.v_forward);
|
2001-02-19 21:15:25 +00:00
|
|
|
if (dist < bestdist)
|
2001-02-26 06:48:02 +00:00
|
|
|
continue; // to far to turn
|
2001-02-19 21:15:25 +00:00
|
|
|
tr = SV_Move (start, vec3_origin, vec3_origin, end, false, ent);
|
2001-02-26 06:48:02 +00:00
|
|
|
if (tr.ent == check) { // can shoot at this one
|
2001-02-19 21:15:25 +00:00
|
|
|
bestdist = dist;
|
|
|
|
bestent = check;
|
|
|
|
}
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
if (bestent) {
|
2002-08-20 02:22:40 +00:00
|
|
|
VectorSubtract (SVvector (bestent, origin), SVvector (ent, origin),
|
|
|
|
dir);
|
2001-03-03 08:31:58 +00:00
|
|
|
dist = DotProduct (dir, *sv_globals.v_forward);
|
|
|
|
VectorScale (*sv_globals.v_forward, dist, end);
|
2001-02-19 21:15:25 +00:00
|
|
|
end[2] = dir[2];
|
|
|
|
VectorNormalize (end);
|
2002-07-24 21:42:33 +00:00
|
|
|
VectorCopy (end, R_VECTOR (pr));
|
2001-02-26 06:48:02 +00:00
|
|
|
} else {
|
2002-07-24 21:42:33 +00:00
|
|
|
VectorCopy (bestdir, R_VECTOR (pr));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-08-09 06:05:43 +00:00
|
|
|
PF_changeyaw
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-09 06:05:43 +00:00
|
|
|
This was a major timewaster in progs, so it was converted to C
|
2004-01-06 05:51:09 +00:00
|
|
|
// void () ChangeYaw
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_changeyaw (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *ent;
|
|
|
|
float ideal, current, move, speed;
|
|
|
|
|
2001-03-03 08:31:58 +00:00
|
|
|
ent = PROG_TO_EDICT (pr, *sv_globals.self);
|
2001-08-08 20:28:53 +00:00
|
|
|
current = anglemod (SVvector (ent, angles)[1]);
|
|
|
|
ideal = SVfloat (ent, ideal_yaw);
|
|
|
|
speed = SVfloat (ent, yaw_speed);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (current == ideal)
|
|
|
|
return;
|
|
|
|
move = ideal - current;
|
2001-02-26 06:48:02 +00:00
|
|
|
if (ideal > current) {
|
2001-02-19 21:15:25 +00:00
|
|
|
if (move >= 180)
|
|
|
|
move = move - 360;
|
2001-02-26 06:48:02 +00:00
|
|
|
} else {
|
2001-02-19 21:15:25 +00:00
|
|
|
if (move <= -180)
|
|
|
|
move = move + 360;
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
if (move > 0) {
|
2001-02-19 21:15:25 +00:00
|
|
|
if (move > speed)
|
|
|
|
move = speed;
|
2001-02-26 06:48:02 +00:00
|
|
|
} else {
|
2001-02-19 21:15:25 +00:00
|
|
|
if (move < -speed)
|
|
|
|
move = -speed;
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-08-08 20:28:53 +00:00
|
|
|
SVvector (ent, angles)[1] = anglemod (current + move);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
/* MESSAGE WRITING */
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
#define MSG_BROADCAST 0 // unreliable to all
|
|
|
|
#define MSG_ONE 1 // reliable to one (msg_entity)
|
|
|
|
#define MSG_ALL 2 // reliable to all
|
|
|
|
#define MSG_INIT 3 // write to the init string
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2018-10-09 03:35:01 +00:00
|
|
|
static __attribute__((pure)) sizebuf_t *
|
2001-08-09 06:05:43 +00:00
|
|
|
WriteDest (progs_t *pr)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2022-01-16 13:15:18 +00:00
|
|
|
pr_uint_t entnum;
|
2001-02-26 06:48:02 +00:00
|
|
|
int dest;
|
|
|
|
edict_t *ent;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
dest = P_FLOAT (pr, 0);
|
2001-02-26 06:48:02 +00:00
|
|
|
switch (dest) {
|
|
|
|
case MSG_BROADCAST:
|
2002-08-20 02:22:40 +00:00
|
|
|
return &sv.datagram;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
case MSG_ONE:
|
2002-08-20 02:22:40 +00:00
|
|
|
ent = PROG_TO_EDICT (pr, *sv_globals.msg_entity);
|
|
|
|
entnum = NUM_FOR_EDICT (pr, ent);
|
|
|
|
if (entnum < 1 || entnum > svs.maxclients)
|
|
|
|
PR_RunError (pr, "WriteDest: not a client");
|
|
|
|
return &svs.clients[entnum - 1].message;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
case MSG_ALL:
|
2002-08-20 02:22:40 +00:00
|
|
|
return &sv.reliable_datagram;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
case MSG_INIT:
|
2002-08-20 02:22:40 +00:00
|
|
|
return &sv.signon;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
default:
|
2002-08-20 02:22:40 +00:00
|
|
|
PR_RunError (pr, "WriteDest: bad destination");
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-02-09 06:55:13 +00:00
|
|
|
// void (float to, ...) WriteBytes
|
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_WriteBytes (progs_t *pr, void *data)
|
2004-02-09 06:55:13 +00:00
|
|
|
{
|
2004-02-09 07:53:05 +00:00
|
|
|
int i, p;
|
2022-02-06 11:51:28 +00:00
|
|
|
int argc = pr->pr_argc - 1;
|
|
|
|
pr_type_t **argv = pr->pr_params + 1;
|
2004-02-09 06:55:13 +00:00
|
|
|
sizebuf_t *msg = WriteDest (pr);
|
|
|
|
|
2022-02-06 11:51:28 +00:00
|
|
|
if (pr->progs->version == PROG_VERSION) {
|
|
|
|
__auto_type va_list = &P_PACKED (pr, pr_va_list_t, 1);
|
|
|
|
argc = va_list->count;
|
|
|
|
if (argc) {
|
|
|
|
argv = alloca (argc * sizeof (pr_type_t *));
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
argv[i] = &pr->pr_globals[va_list->list + i * 4];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
argv = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 0; i < argc; i++) {
|
2022-05-04 13:37:52 +00:00
|
|
|
p = PR_PTR (float, argv[i]);
|
2004-02-09 07:53:05 +00:00
|
|
|
MSG_WriteByte (msg, p);
|
2004-02-09 06:55:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (float to, float f) WriteByte
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_WriteByte (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-07-24 21:42:33 +00:00
|
|
|
MSG_WriteByte (WriteDest (pr), P_FLOAT (pr, 1));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (float to, float f) WriteChar
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_WriteChar (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-07-24 21:42:33 +00:00
|
|
|
MSG_WriteByte (WriteDest (pr), P_FLOAT (pr, 1));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (float to, float f) WriteShort
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_WriteShort (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-07-24 21:42:33 +00:00
|
|
|
MSG_WriteShort (WriteDest (pr), P_FLOAT (pr, 1));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (float to, float f) WriteLong
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_WriteLong (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-07-24 21:42:33 +00:00
|
|
|
MSG_WriteLong (WriteDest (pr), P_FLOAT (pr, 1));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2011-09-04 11:34:21 +00:00
|
|
|
// void (float to, float f) WriteAngle
|
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_WriteAngle (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-07-24 21:42:33 +00:00
|
|
|
MSG_WriteAngle (WriteDest (pr), P_FLOAT (pr, 1));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (float to, float f) WriteCoord
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_WriteCoord (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-07-24 21:42:33 +00:00
|
|
|
MSG_WriteCoord (WriteDest (pr), P_FLOAT (pr, 1));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-02-09 06:55:13 +00:00
|
|
|
// void (float to, vector v) WriteAngleV
|
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_WriteAngleV (progs_t *pr, void *data)
|
2004-02-09 06:55:13 +00:00
|
|
|
{
|
|
|
|
float *ang = P_VECTOR (pr, 1);
|
|
|
|
|
|
|
|
MSG_WriteAngleV (WriteDest (pr), ang);
|
|
|
|
}
|
|
|
|
|
|
|
|
// void (float to, vector v) WriteCoordV
|
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_WriteCoordV (progs_t *pr, void *data)
|
2004-02-09 06:55:13 +00:00
|
|
|
{
|
2004-02-09 07:53:05 +00:00
|
|
|
float *coord = P_VECTOR (pr, 1);
|
2004-02-09 06:55:13 +00:00
|
|
|
|
2004-02-09 07:53:05 +00:00
|
|
|
MSG_WriteCoordV (WriteDest (pr), coord);
|
2004-02-09 06:55:13 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (float to, string s) WriteString
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_WriteString (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2003-04-22 18:20:15 +00:00
|
|
|
MSG_WriteString (WriteDest (pr), P_GSTRING (pr, 1));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (float to, entity s) WriteEntity
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_WriteEntity (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-07-24 21:42:33 +00:00
|
|
|
MSG_WriteShort (WriteDest (pr), P_EDICTNUM (pr, 1));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (entity e) makestatic
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_makestatic (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2003-05-29 04:49:34 +00:00
|
|
|
const char *model;
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *ent;
|
2010-08-24 00:53:54 +00:00
|
|
|
int bits = 0;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
ent = P_EDICT (pr, 0);
|
2010-12-16 00:34:29 +00:00
|
|
|
if (SVdata (ent)->alpha == ENTALPHA_ZERO) {
|
|
|
|
//johnfitz -- don't send invisible static entities
|
|
|
|
goto nosend;
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
model = PR_GetString (pr, SVstring (ent, model));
|
2010-08-24 00:53:54 +00:00
|
|
|
if (sv.protocol == PROTOCOL_NETQUAKE) {
|
|
|
|
if (SV_ModelIndex (model) & 0xff00
|
|
|
|
|| (int) SVfloat (ent, frame) & 0xff00)
|
|
|
|
goto nosend;
|
|
|
|
} else {
|
|
|
|
if (SV_ModelIndex (model) & 0xff00)
|
|
|
|
bits |= B_LARGEMODEL;
|
|
|
|
if ((int) SVfloat (ent, frame) & 0xff00)
|
|
|
|
bits |= B_LARGEFRAME;
|
2010-12-16 00:34:29 +00:00
|
|
|
if (SVdata (ent)->alpha != ENTALPHA_DEFAULT)
|
|
|
|
bits |= B_ALPHA;
|
2010-08-24 00:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (bits) {
|
|
|
|
MSG_WriteByte (&sv.signon, svc_spawnstatic2);
|
|
|
|
MSG_WriteByte (&sv.signon, bits);
|
|
|
|
} else {
|
|
|
|
MSG_WriteByte (&sv.signon, svc_spawnstatic);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bits & B_LARGEMODEL)
|
|
|
|
MSG_WriteShort (&sv.signon, SV_ModelIndex (model));
|
|
|
|
else
|
|
|
|
MSG_WriteByte (&sv.signon, SV_ModelIndex (model));
|
|
|
|
|
|
|
|
if (bits & B_LARGEFRAME)
|
|
|
|
MSG_WriteShort (&sv.signon, SVfloat (ent, frame));
|
|
|
|
else
|
|
|
|
MSG_WriteByte (&sv.signon, SVfloat (ent, frame));
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-08 20:28:53 +00:00
|
|
|
MSG_WriteByte (&sv.signon, SVfloat (ent, colormap));
|
|
|
|
MSG_WriteByte (&sv.signon, SVfloat (ent, skin));
|
2001-12-12 21:56:09 +00:00
|
|
|
|
|
|
|
MSG_WriteCoordAngleV (&sv.signon, SVvector (ent, origin),
|
|
|
|
SVvector (ent, angles));
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-12-16 00:34:29 +00:00
|
|
|
if (bits & B_ALPHA)
|
|
|
|
MSG_WriteByte (&sv.signon, SVdata (ent)->alpha);
|
2001-12-12 21:56:09 +00:00
|
|
|
// throw the entity away now
|
2010-08-24 00:53:54 +00:00
|
|
|
nosend:
|
2001-02-26 20:52:14 +00:00
|
|
|
ED_Free (pr, ent);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (entity e) setspawnparms
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_setspawnparms (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2003-05-29 04:49:34 +00:00
|
|
|
client_t *client;
|
2001-02-26 06:48:02 +00:00
|
|
|
edict_t *ent;
|
2022-01-16 13:15:18 +00:00
|
|
|
unsigned i;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
ent = P_EDICT (pr, 0);
|
2001-02-26 20:52:14 +00:00
|
|
|
i = NUM_FOR_EDICT (pr, ent);
|
2001-02-19 21:15:25 +00:00
|
|
|
if (i < 1 || i > svs.maxclients)
|
2001-02-26 20:52:14 +00:00
|
|
|
PR_RunError (pr, "Entity is not a client");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// copy spawn parms out of the client_t
|
2001-02-26 06:48:02 +00:00
|
|
|
client = svs.clients + (i - 1);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
for (i = 0; i < NUM_SPAWN_PARMS; i++)
|
2001-03-03 08:31:58 +00:00
|
|
|
sv_globals.parms[i] = client->spawn_parms[i];
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (string s) changelevel
|
2011-09-04 11:34:21 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_changelevel (progs_t *pr, void *data)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2003-05-29 04:49:34 +00:00
|
|
|
const char *s;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-12-12 21:56:09 +00:00
|
|
|
// make sure we don't issue two changelevels
|
2001-02-19 21:15:25 +00:00
|
|
|
if (svs.changelevel_issued)
|
|
|
|
return;
|
|
|
|
svs.changelevel_issued = true;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2003-04-22 18:20:15 +00:00
|
|
|
s = P_GSTRING (pr, 0);
|
2021-01-31 07:01:20 +00:00
|
|
|
Cbuf_AddText (host_cbuf, va (0, "changelevel %s\n", s));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2011-09-04 11:34:21 +00:00
|
|
|
// entity (entity ent) testentitypos
|
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_testentitypos (progs_t *pr, void *data)
|
2011-09-04 11:34:21 +00:00
|
|
|
{
|
|
|
|
edict_t *ent = P_EDICT (pr, 0);
|
|
|
|
ent = SV_TestEntityPosition (ent);
|
|
|
|
RETURN_EDICT (pr, ent ? ent : sv.edicts);
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-27 22:16:11 +00:00
|
|
|
#define MAX_PF_HULLS 64 // FIXME make dynamic?
|
|
|
|
clip_hull_t *pf_hull_list[MAX_PF_HULLS];
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// integer (entity ent, vector point) hullpointcontents
|
2001-08-27 22:16:11 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_hullpointcontents (progs_t *pr, void *data)
|
2001-08-27 22:16:11 +00:00
|
|
|
{
|
2002-07-24 21:42:33 +00:00
|
|
|
edict_t *edict = P_EDICT (pr, 0);
|
|
|
|
float *mins = P_VECTOR (pr, 1);
|
|
|
|
float *maxs = P_VECTOR (pr, 2);
|
|
|
|
float *point = P_VECTOR (pr, 3);
|
2001-08-27 22:16:11 +00:00
|
|
|
hull_t *hull;
|
|
|
|
vec3_t offset;
|
|
|
|
|
2006-12-24 03:13:29 +00:00
|
|
|
hull = SV_HullForEntity (edict, mins, maxs, 0, offset);
|
2001-08-27 22:16:11 +00:00
|
|
|
VectorSubtract (point, offset, offset);
|
2002-07-24 21:42:33 +00:00
|
|
|
R_INT (pr) = SV_HullPointContents (hull, 0, offset);
|
2001-08-27 22:16:11 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// vector (integer hull, integer max) getboxbounds
|
2001-08-27 22:16:11 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_getboxbounds (progs_t *pr, void *data)
|
2001-08-27 22:16:11 +00:00
|
|
|
{
|
|
|
|
clip_hull_t *ch;
|
2003-05-29 04:49:34 +00:00
|
|
|
int h = P_INT (pr, 0) - 1;
|
2001-08-27 22:16:11 +00:00
|
|
|
|
|
|
|
if (h < 0 || h > MAX_PF_HULLS - 1 || !(ch = pf_hull_list[h]))
|
2003-05-29 04:49:34 +00:00
|
|
|
PR_RunError (pr, "PF_getboxbounds: invalid box hull handle\n");
|
2001-08-27 22:16:11 +00:00
|
|
|
|
2002-07-24 21:42:33 +00:00
|
|
|
if (P_INT (pr, 1)) {
|
|
|
|
VectorCopy (ch->maxs, R_VECTOR (pr));
|
2001-08-27 22:16:11 +00:00
|
|
|
} else {
|
2002-07-24 21:42:33 +00:00
|
|
|
VectorCopy (ch->mins, R_VECTOR (pr));
|
2001-08-27 22:16:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// integer () getboxhull
|
2001-08-27 22:16:11 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_getboxhull (progs_t *pr, void *data)
|
2001-08-27 22:16:11 +00:00
|
|
|
{
|
|
|
|
clip_hull_t *ch = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_PF_HULLS; i++) {
|
|
|
|
if (!pf_hull_list[i]) {
|
|
|
|
ch = MOD_Alloc_Hull (6, 6);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch) {
|
|
|
|
pf_hull_list[i] = ch;
|
2002-07-24 21:42:33 +00:00
|
|
|
R_INT (pr) = i + 1;
|
2001-08-27 22:16:11 +00:00
|
|
|
for (i = 0; i < MAX_MAP_HULLS; i++)
|
|
|
|
SV_InitHull (ch->hulls[i], ch->hulls[i]->clipnodes,
|
|
|
|
ch->hulls[i]->planes);
|
|
|
|
} else {
|
2002-07-24 21:42:33 +00:00
|
|
|
R_INT (pr) = 0;
|
2001-08-27 22:16:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (integer hull) freeboxhull
|
2001-08-27 22:16:11 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_freeboxhull (progs_t *pr, void *data)
|
2001-08-27 22:16:11 +00:00
|
|
|
{
|
2002-07-24 21:42:33 +00:00
|
|
|
int h = P_INT (pr, 0) - 1;
|
2001-08-27 22:16:11 +00:00
|
|
|
clip_hull_t *ch;
|
|
|
|
|
|
|
|
if (h < 0 || h > MAX_PF_HULLS - 1 || !(ch = pf_hull_list[h]))
|
|
|
|
PR_RunError (pr, "PF_freeboxhull: invalid box hull handle\n");
|
|
|
|
pf_hull_list[h] = 0;
|
|
|
|
MOD_Free_Hull (ch);
|
|
|
|
}
|
|
|
|
|
|
|
|
static vec_t
|
|
|
|
calc_dist (vec3_t p, vec3_t n, vec3_t *offsets)
|
|
|
|
{
|
2002-08-20 02:22:40 +00:00
|
|
|
int i;
|
2001-08-27 22:16:11 +00:00
|
|
|
vec_t d = DotProduct (p, n);
|
|
|
|
vec3_t s, v;
|
|
|
|
|
|
|
|
VectorScale (n, d, s);
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
if (s[i] < 0)
|
|
|
|
v[i] = offsets[0][i];
|
|
|
|
else
|
|
|
|
v[i] = offsets[1][i];
|
|
|
|
VectorAdd (p, v, v);
|
|
|
|
return DotProduct (v, n);
|
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// void (integer hull, vector right, vector forward, vector up, vector mins, vector maxs) rotate_bbox
|
2001-08-27 22:16:11 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_rotate_bbox (progs_t *pr, void *data)
|
2001-08-27 22:16:11 +00:00
|
|
|
{
|
2003-05-29 04:49:34 +00:00
|
|
|
clip_hull_t *ch;
|
|
|
|
float l;
|
|
|
|
float *mi = P_VECTOR (pr, 4);
|
|
|
|
float *ma = P_VECTOR (pr, 5);
|
2001-08-27 22:16:11 +00:00
|
|
|
float *dir[3] = {
|
2002-07-24 21:42:33 +00:00
|
|
|
P_VECTOR (pr, 1),
|
|
|
|
P_VECTOR (pr, 2),
|
|
|
|
P_VECTOR (pr, 3),
|
2001-08-27 22:16:11 +00:00
|
|
|
};
|
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
hull_t *hull;
|
|
|
|
int i, j;
|
|
|
|
int h = P_INT (pr, 0) - 1;
|
2001-08-27 22:16:11 +00:00
|
|
|
|
2003-05-29 04:49:34 +00:00
|
|
|
vec3_t mins, maxs, d;
|
|
|
|
float *verts[6] = {maxs, mins, maxs, mins, maxs, mins};
|
|
|
|
vec3_t v[8];
|
2001-08-27 22:16:11 +00:00
|
|
|
vec3_t offsets[3][2] = {
|
|
|
|
{ { 0, 0, 0 }, { 0, 0, 0} },
|
|
|
|
{ { -16, -16, -32 }, { 16, 16, 24} },
|
|
|
|
{ { -32, -32, -64 }, { 32, 32, 24} },
|
|
|
|
};
|
|
|
|
|
|
|
|
if (h < 0 || h > MAX_PF_HULLS - 1 || !(ch = pf_hull_list[h]))
|
2003-05-29 04:49:34 +00:00
|
|
|
PR_RunError (pr, "PF_rotate_bbox: invalid box hull handle\n");
|
2001-08-27 22:16:11 +00:00
|
|
|
|
|
|
|
// set up the rotation matrix. the three orientation vectors form the
|
|
|
|
// columns of the rotation matrix
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
for (j = 0; j < 3; j++) {
|
|
|
|
ch->axis[i][j] = dir[j][i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// rotate the bounding box points
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
mins[i] = DotProduct (ch->axis[i], mi);
|
|
|
|
maxs[i] = DotProduct (ch->axis[i], ma);
|
|
|
|
}
|
|
|
|
// find all 8 corners of the rotated box
|
|
|
|
VectorCopy (mins, v[0]);
|
|
|
|
VectorCopy (maxs, v[1]);
|
|
|
|
VectorSubtract (maxs, mins, d);
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
vec3_t x;
|
|
|
|
|
|
|
|
l = DotProduct (d, dir[i]);
|
|
|
|
VectorScale (dir[i], l, x);
|
|
|
|
VectorAdd (mins, x, v[2 + i * 2]);
|
|
|
|
VectorSubtract (maxs, x, v[3 + i * 2]);
|
|
|
|
}
|
|
|
|
// now find the aligned bounding box
|
|
|
|
VectorCopy (v[0], ch->mins);
|
|
|
|
VectorCopy (v[0], ch->maxs);
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
for (j = 0; j < 3; j++) {
|
|
|
|
ch->mins[j] = min (ch->mins[j], v[i][j]);
|
|
|
|
ch->maxs[j] = max (ch->maxs[j], v[i][j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// set up the 3 size based hulls
|
|
|
|
for (j = 0; j < 3; j++) {
|
|
|
|
hull = ch->hulls[j];
|
|
|
|
VectorScale (offsets[j][1], -1, hull->clip_mins);
|
|
|
|
VectorScale (offsets[j][0], -1, hull->clip_maxs);
|
|
|
|
// set up the clip planes
|
|
|
|
for (i = 0; i < 6; i++) {
|
2001-12-12 21:56:09 +00:00
|
|
|
hull->planes[i].dist = calc_dist (verts[i], dir[i / 2],
|
|
|
|
offsets[j]);
|
2001-08-27 22:16:11 +00:00
|
|
|
hull->planes[i].type = 4;
|
|
|
|
VectorCopy (dir[i / 2], hull->planes[i].normal);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-06 05:51:09 +00:00
|
|
|
// float () checkextension
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2022-02-14 03:28:38 +00:00
|
|
|
PF_checkextension (progs_t *pr, void *data)
|
2001-03-07 10:22:51 +00:00
|
|
|
{
|
2003-04-22 18:20:15 +00:00
|
|
|
R_FLOAT (pr) = 0; // FIXME: make this function actually useful
|
2001-03-07 10:22:51 +00:00
|
|
|
}
|
|
|
|
|
2004-01-06 07:00:39 +00:00
|
|
|
#define QF (PR_RANGE_QF << PR_RANGE_SHIFT) |
|
|
|
|
|
2022-01-23 12:54:03 +00:00
|
|
|
#define bi(x,n,np,params...) {#x, PF_##x, n, np, {params}}
|
|
|
|
#define p(type) PR_PARAM(type)
|
2004-01-06 05:51:09 +00:00
|
|
|
static builtin_t builtins[] = {
|
2022-01-23 12:54:03 +00:00
|
|
|
bi(makevectors, 1, 1, p(vector)),
|
|
|
|
bi(setorigin, 2, 2, p(entity), p(vector)),
|
|
|
|
bi(setmodel, 3, 2, p(entity), p(string)),
|
|
|
|
bi(setsize, 4, 3, p(entity), p(vector), p(vector)),
|
|
|
|
|
|
|
|
bi(sound, 8, 3, p(entity), p(float), p(string)),
|
|
|
|
|
|
|
|
bi(error, 10, -1), // (...)
|
|
|
|
bi(objerror, 11, -1), // (...)
|
|
|
|
bi(spawn, 14, 0), // (void)
|
|
|
|
bi(remove, 15, 1, p(entity)),
|
|
|
|
bi(traceline, 16, 3, p(vector), p(vector), p(float)),
|
|
|
|
bi(checkclient, 17, 0), // (void)
|
|
|
|
|
|
|
|
bi(precache_sound, 19, 1, p(string)),
|
|
|
|
bi(precache_model, 20, 1, p(string)),
|
|
|
|
bi(stuffcmd, 21, 2, p(entity), p(string)),
|
|
|
|
bi(findradius, 22, 2, p(vector), p(float)),
|
|
|
|
bi(bprint, 23, -1), // (...)
|
|
|
|
bi(sprint, 24, -2, p(entity)), // (entity, string...)
|
|
|
|
|
|
|
|
bi(walkmove, 32, 2, p(float), p(float)),
|
|
|
|
|
|
|
|
bi(droptofloor, 34, 0), // (void)
|
|
|
|
bi(lightstyle, 35, 2, p(float), p(string)),
|
|
|
|
|
|
|
|
bi(checkbottom, 40, 1, p(entity)),
|
|
|
|
bi(pointcontents, 41, 1, p(vector)),
|
|
|
|
|
|
|
|
bi(aim, 44, 2, p(entity), p(float)),
|
|
|
|
|
|
|
|
bi(localcmd, 46, 1, p(string)),
|
|
|
|
|
|
|
|
bi(particle, 48, 4, p(vector), p(vector), p(float), p(float)),
|
|
|
|
bi(changeyaw, 49, 0), // (void)
|
|
|
|
|
|
|
|
bi(WriteByte, 52, 2, p(float), p(float)),
|
|
|
|
bi(WriteBytes, -1, -2, p(float)), // (float, float...)
|
|
|
|
bi(WriteChar, 53, 2, p(float), p(float)),
|
|
|
|
bi(WriteShort, 54, 2, p(float), p(float)),
|
|
|
|
bi(WriteLong, 55, 2, p(float), p(float)),
|
|
|
|
bi(WriteCoord, 56, 2, p(float), p(float)),
|
|
|
|
bi(WriteAngle, 57, 2, p(float), p(float)),
|
|
|
|
bi(WriteCoordV, -1, 2, p(float), p(vector)),
|
|
|
|
bi(WriteAngleV, -1, 2, p(float), p(vector)),
|
|
|
|
bi(WriteString, 58, 2, p(float), p(string)),
|
|
|
|
bi(WriteEntity, 59, 2, p(float), p(entity)),
|
|
|
|
#define PF_movetogoal SV_MoveToGoal
|
|
|
|
bi(movetogoal, 67, 0), // (void)
|
|
|
|
#undef PF_movetogoal
|
|
|
|
bi(precache_file, 68, 1, p(string)),
|
|
|
|
bi(makestatic, 69, 1, p(entity)),
|
|
|
|
bi(changelevel, 70, 1, p(string)),
|
|
|
|
|
|
|
|
bi(centerprint, 73, -1), // (...)
|
|
|
|
bi(ambientsound, 74, 4, p(vector), p(string), p(float), p(float)),
|
|
|
|
bi(precache_model2, 75, 1, p(string)),
|
|
|
|
bi(precache_sound2, 76, 1, p(string)),
|
|
|
|
bi(precache_file2, 77, 1, p(string)),
|
|
|
|
bi(setspawnparms, 78, 1, p(entity)),
|
|
|
|
|
|
|
|
bi(testentitypos, QF 92, 1, p(entity)),
|
|
|
|
bi(hullpointcontents, QF 93, 2, p(entity), p(vector)),
|
|
|
|
bi(getboxbounds, QF 94, 2, p(int), p(int)),
|
|
|
|
bi(getboxhull, QF 95, 0), // (void)
|
|
|
|
bi(freeboxhull, QF 96, 1, p(int)),
|
|
|
|
bi(rotate_bbox, QF 97, 6, p(int), p(vector), p(vector), p(vector),
|
|
|
|
p(vector), p(vector)),
|
|
|
|
bi(tracebox, QF 98, 6, p(vector), p(vector), p(vector), p(vector),
|
|
|
|
p(float), p(entity)),
|
|
|
|
bi(checkextension, QF 99, -1, {}), //FIXME correct params?
|
|
|
|
#define PF_EntityParseFunction ED_EntityParseFunction
|
|
|
|
bi(EntityParseFunction, -1, 1, p(func)),
|
|
|
|
#undef PF_EntityParseFunction
|
2004-01-06 05:51:09 +00:00
|
|
|
{0}
|
|
|
|
};
|
|
|
|
|
2001-08-03 06:40:28 +00:00
|
|
|
void
|
|
|
|
SV_PR_Cmds_Init ()
|
|
|
|
{
|
[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 (&sv_aim_cvar, 0, 0);
|
|
|
|
|
2004-01-16 07:03:58 +00:00
|
|
|
RUA_Init (&sv_pr_state, 1);
|
|
|
|
|
|
|
|
PR_Cmds_Init (&sv_pr_state);
|
2001-08-22 03:24:25 +00:00
|
|
|
|
2022-01-23 15:20:05 +00:00
|
|
|
PR_RegisterBuiltins (&sv_pr_state, builtins, 0);
|
2001-08-03 06:40:28 +00:00
|
|
|
}
|