2000-06-25 13:00:19 +00:00
|
|
|
/*
|
2000-12-28 06:58:56 +00:00
|
|
|
pr_offs.c
|
2000-06-25 13:00:19 +00:00
|
|
|
|
2000-12-28 06:58:56 +00:00
|
|
|
Quick QuakeC offset access
|
2000-06-25 13:00:19 +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
|
|
|
|
|
2000-12-28 06:58:56 +00:00
|
|
|
$Id$
|
2000-06-25 13:00:19 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2000-12-08 06:51:37 +00:00
|
|
|
# include "config.h"
|
2000-06-25 13:00:19 +00:00
|
|
|
#endif
|
2000-12-28 05:18:38 +00:00
|
|
|
|
2000-06-25 13:00:19 +00:00
|
|
|
#include "progs.h"
|
|
|
|
|
2000-12-08 06:51:37 +00:00
|
|
|
int
|
2000-12-31 07:43:09 +00:00
|
|
|
FindFieldOffset (progs_t *pr, char *field)
|
2000-06-25 13:00:19 +00:00
|
|
|
{
|
2000-12-28 06:58:56 +00:00
|
|
|
ddef_t *d;
|
2000-12-08 06:51:37 +00:00
|
|
|
|
2000-12-31 07:43:09 +00:00
|
|
|
d = ED_FindField (pr, field);
|
2000-06-30 05:54:28 +00:00
|
|
|
if (!d)
|
2000-06-25 13:00:19 +00:00
|
|
|
return 0;
|
2000-06-25 20:53:26 +00:00
|
|
|
|
2000-12-08 06:51:37 +00:00
|
|
|
return d->ofs * 4;
|
2000-06-25 13:00:19 +00:00
|
|
|
}
|
|
|
|
|
2000-12-28 06:58:56 +00:00
|
|
|
eval_t *
|
2000-12-08 06:51:37 +00:00
|
|
|
GETEDICTFIELDVALUE (edict_t *ed, int fieldoffset)
|
2000-06-25 13:00:19 +00:00
|
|
|
{
|
2000-06-30 05:54:28 +00:00
|
|
|
if (!fieldoffset)
|
|
|
|
return NULL;
|
2000-06-25 20:53:26 +00:00
|
|
|
|
2000-12-08 06:51:37 +00:00
|
|
|
return (eval_t *) ((char *) &ed->v + fieldoffset);
|
2000-06-25 13:00:19 +00:00
|
|
|
}
|