quakeforge/tools/qflight/source/entities.c

442 lines
11 KiB
C
Raw Normal View History

2002-08-25 23:06:23 +00:00
/*
trace.c
(description)
Copyright (C) 1996-1997 Id Software, Inc.
2002-08-25 23:06:23 +00:00
Copyright (C) 2002 Colin Thompson
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
static __attribute__ ((unused)) const char rcsid[] =
"$Id$";
2002-08-25 23:06:23 +00:00
#ifdef HAVE_IO_H
# include <io.h>
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <stdlib.h>
#include "QF/bspfile.h"
#include "QF/dstring.h"
#include "QF/idparse.h"
#include "QF/mathlib.h"
#include "QF/qtypes.h"
#include "QF/quakefs.h"
2002-08-25 23:06:23 +00:00
#include "QF/sys.h"
#include "light.h"
#include "threads.h"
#include "entities.h"
#include "options.h"
entity_t *entities;
2002-08-25 23:06:23 +00:00
int num_entities;
static int max_entities;
2002-08-25 23:06:23 +00:00
/*
ENTITY FILE PARSING
If a light has a targetname, generate a unique style in the 32-63 range
*/
int numlighttargets;
const char *lighttargets[32];
2002-08-25 23:06:23 +00:00
static int
LightStyleForTargetname (const char *targetname, qboolean alloc)
2002-08-25 23:06:23 +00:00
{
2002-09-19 02:37:52 +00:00
int i;
for (i = 0; i < numlighttargets; i++)
2002-08-25 23:06:23 +00:00
if (!strcmp (lighttargets[i], targetname))
return 32 + i;
2002-09-19 02:37:52 +00:00
if (!alloc)
2002-08-25 23:06:23 +00:00
return -1;
2002-09-19 02:37:52 +00:00
lighttargets[i] = targetname;
2002-09-19 02:37:52 +00:00
numlighttargets++;
return numlighttargets - 1 + 32;
2002-08-25 23:06:23 +00:00
}
static void
2002-08-25 23:06:23 +00:00
MatchTargets (void)
{
2002-09-19 02:37:52 +00:00
int i, j;
2002-08-25 23:06:23 +00:00
2002-09-19 02:37:52 +00:00
for (i = 0; i < num_entities; i++) {
if (!entities[i].target || !entities[i].target[0])
2002-08-25 23:06:23 +00:00
continue;
for (j = 0; j < num_entities; j++)
if (entities[j].targetname
&& !strcmp (entities[j].targetname, entities[i].target)) {
2002-08-25 23:06:23 +00:00
entities[i].targetent = &entities[j];
// set up spotlight values for lighting code to use
VectorSubtract (entities[i].targetent->origin,
entities[i].origin, entities[i].spotdir);
VectorNormalize (entities[i].spotdir);
if (!entities[i].angle)
entities[i].spotcone = -cos(20 * M_PI / 180);
else
entities[i].spotcone = -cos(entities[i].angle * M_PI / 360);
2002-08-25 23:06:23 +00:00
break;
}
if (j == num_entities) {
printf ("WARNING: entity at (%i,%i,%i) (%s) has unmatched "
"target\n",
(int) entities[i].origin[0], (int) entities[i].origin[1],
(int) entities[i].origin[2], entities[i].classname);
continue;
}
// set the style on the source ent for switchable lights
if (entities[j].style) {
char s[16];
entities[i].style = entities[j].style;
sprintf (s, "%i", entities[i].style);
SetKeyValue (&entities[i], "style", s);
}
if (entities[i].spotcone <= 0) {
VectorZero (entities[i].spotdir);
entities[i].spotcone = 0;
}
}
}
static void
WriteLights (void)
{
int i;
FILE *f;
entity_t *e;
if (!options.lightsfilename)
return;
printf ("building .lights file\n");
f = fopen (options.lightsfilename, "wb");
for (i = 0; i < num_entities; i++) {
e = entities + i;
if (e->light)
fprintf(f, "%f %f %f %f %f %f %f %f %f %f %f %f %f %d\n",
e->origin[0], e->origin[1], e->origin[2],
e->falloff,
e->color[0], e->color[1], e->color[2],
e->subbrightness,
e->spotdir[0], e->spotdir[1], e->spotdir[2],
e->spotcone, e->lightoffset, e->style);
2002-09-19 02:37:52 +00:00
}
fclose (f);
2002-08-25 23:06:23 +00:00
}
void
LoadEntities (void)
{
const char *data;
const char *key;
double vec[4];
double temp, color2[3];
entity_t *entity;
epair_t *epair;
int i;
2002-09-19 02:37:52 +00:00
data = bsp->entdata;
2002-08-25 23:06:23 +00:00
// start parsing
max_entities = num_entities = 0;
entities = 0;
2002-08-25 23:06:23 +00:00
// go through all the entities
2002-09-19 02:37:52 +00:00
while (1) {
2002-08-25 23:06:23 +00:00
// parse the opening brace
data = COM_Parse (data);
if (!data)
break;
if (com_token[0] != '{')
fprintf (stderr, "LoadEntities: found %s when expecting {",
com_token);
if (num_entities == max_entities) {
max_entities += 128;
entities = realloc (entities, max_entities * sizeof (entity_t));
}
2002-08-25 23:06:23 +00:00
entity = &entities[num_entities];
num_entities++;
memset (entity, 0, sizeof (*entity));
entity->color[0] = entity->color[1] = entity->color[2] = 1.0f;
color2[0] = color2[1] = color2[2] = 1.0f;
entity->falloff = DEFAULTFALLOFF * DEFAULTFALLOFF;
entity->lightradius = 0;
entity->lightoffset = LIGHTDISTBIAS;
2002-08-25 23:06:23 +00:00
// go through all the keys in this entity
while (1) {
int c;
// parse key
data = COM_Parse (data);
if (!data)
fprintf (stderr, "LoadEntities: EOF without closing brace");
if (!strcmp (com_token, "}"))
break;
key = strdup (com_token);
2002-08-25 23:06:23 +00:00
// parse value
data = COM_Parse (data);
if (!data)
fprintf (stderr, "LoadEntities: EOF without closing brace");
c = com_token[0];
if (c == '}')
fprintf (stderr, "LoadEntities: closing brace without data");
epair = calloc (1, sizeof (epair_t));
epair->key = key;
epair->value = strdup (com_token);
2002-08-25 23:06:23 +00:00
epair->next = entity->epairs;
entity->epairs = epair;
if (!strcmp (key, "classname"))
entity->classname = epair->value;
2002-08-25 23:06:23 +00:00
else if (!strcmp (key, "target"))
entity->target = epair->value;
2002-08-25 23:06:23 +00:00
else if (!strcmp (key, "targetname"))
entity->targetname = epair->value;
2002-08-25 23:06:23 +00:00
else if (!strcmp (key, "origin")) {
// scan into doubles, then assign
// which makes it vec_t size independent
if (sscanf (com_token, "%lf %lf %lf",
2002-09-19 02:37:52 +00:00
&vec[0], &vec[1], &vec[2]) != 3)
2002-08-25 23:06:23 +00:00
fprintf (stderr, "LoadEntities: not 3 values for origin");
VectorCopy (vec, entity->origin);
2002-08-25 23:06:23 +00:00
} else if (!strncmp (key, "light", 5) || !strcmp (key, "_light")) {
i = sscanf (com_token, "%lf %lf %lf %lf",
&vec[0], &vec[1], &vec[2], &vec[3]);
switch (i) {
case 4: // HalfLife light
entity->light = vec[3];
entity->color[0] = vec[0] * (1.0f / 255.0f);
entity->color[1] = vec[1] * (1.0f / 255.0f);
entity->color[2] = vec[2] * (1.0f / 255.0f);
break;
case 3:
entity->light = 1;
entity->color[0] = vec[0];
entity->color[1] = vec[1];
entity->color[2] = vec[2];
break;
case 1:
entity->light = vec[0];
entity->color[0] = 1.0f;
entity->color[1] = 1.0f;
entity->color[2] = 1.0f;
break;
default:
Sys_Error ("LoadEntities: _light (or light) key must "
"be 1 (Quake), 4 (HalfLife), or 3 (HLight) "
"values, \"%s\" is not valid\n", com_token);
}
} else if (!strcmp (key, "wait")) {
entity->falloff = atof (com_token);
entity->falloff *= entity->falloff; // presquared
} else if (!strcmp (key, "_lightradius")) {
entity->lightradius = atof (com_token);
2002-08-25 23:06:23 +00:00
} else if (!strcmp (key, "style")) {
entity->style = atof (com_token);
if ((unsigned) entity->style > 254)
fprintf (stderr, "Bad light style %i (must be 0-254)",
entity->style);
} else if (!strcmp (key, "angle")) {
entity->angle = atof(com_token);
} else if (!strcmp (key, "color") || !strcmp (key, "_color")) {
if (sscanf (com_token, "%lf %lf %lf",
&vec[0], &vec[1], &vec[2]) != 3)
Sys_Error ("LoadEntities: not 3 values for color");
// scale the color to have at least one component at 1.0
temp = vec[0];
if (vec[1] > temp)
temp = vec[1];
if (vec[2] > temp)
temp = vec[2];
if (temp != 0.0)
temp = 1.0 / temp;
VectorScale (vec, temp, color2);
2002-08-25 23:06:23 +00:00
}
}
if (entity->targetname)
printf ("%s %d %d\n", entity->targetname, entity->light, entity->style);
2002-08-25 23:06:23 +00:00
// all fields have been parsed
if (entity->classname && !strncmp (entity->classname, "light", 5))
if (!entity->light)
entity->light = DEFAULTLIGHTLEVEL;
if (entity->light) {
// convert to subtraction to the brightness for the whole light,
// so it will fade nicely, rather than being clipped off
VectorScale (color2,
entity->light * 16384.0 * options.globallightscale,
color2);
entity->color[0] *= color2[0];
entity->color[1] *= color2[1];
entity->color[2] *= color2[2];
if (entity->lightradius)
entity->subbrightness = 1.0 / (entity->lightradius
* entity->lightradius
* entity->falloff
+ LIGHTDISTBIAS);
if (entity->subbrightness < (1.0 / 1048576.0))
entity->subbrightness = (1.0 / 1048576.0);
}
2002-08-25 23:06:23 +00:00
if (entity->classname && !strcmp (entity->classname, "light")) {
if (entity->targetname && entity->targetname[0]
&& !entity->style) {
2002-08-25 23:06:23 +00:00
char s[16];
entity->style = LightStyleForTargetname (entity->targetname,
true);
sprintf (s, "%i", entity->style);
SetKeyValue (entity, "style", s);
}
}
2002-09-19 02:37:52 +00:00
}
2002-08-25 23:06:23 +00:00
if (options.verbosity >= 0)
printf ("%d entities read\n", num_entities);
2002-09-19 02:37:52 +00:00
MatchTargets ();
WriteLights();
novislights = (entity_t **)calloc (num_entities, sizeof (entity_t *));
2002-08-25 23:06:23 +00:00
}
const char *
ValueForKey (entity_t *ent, const char *key)
2002-08-25 23:06:23 +00:00
{
2002-09-19 02:37:52 +00:00
epair_t *ep;
2002-08-25 23:06:23 +00:00
2002-09-19 02:37:52 +00:00
for (ep = ent->epairs; ep; ep = ep->next)
2002-08-25 23:06:23 +00:00
if (!strcmp (ep->key, key))
return ep->value;
2002-09-19 02:37:52 +00:00
return "";
2002-08-25 23:06:23 +00:00
}
void
SetKeyValue (entity_t *ent, const char *key, const char *value)
2002-08-25 23:06:23 +00:00
{
epair_t *ep;
2002-09-19 02:37:52 +00:00
for (ep = ent->epairs; ep; ep = ep->next)
2002-08-25 23:06:23 +00:00
if (!strcmp (ep->key, key)) {
ep->value = strdup (value);
2002-08-25 23:06:23 +00:00
return;
}
2002-09-19 02:37:52 +00:00
ep = malloc (sizeof (*ep));
ep->next = ent->epairs;
ent->epairs = ep;
ep->key = strdup (key);
ep->value = strdup (value);
2002-08-25 23:06:23 +00:00
}
float
FloatForKey (entity_t *ent, const char *key)
2002-08-25 23:06:23 +00:00
{
const char*k;
2002-08-25 23:06:23 +00:00
k = ValueForKey (ent, key);
2002-09-19 02:37:52 +00:00
return atof (k);
2002-08-25 23:06:23 +00:00
}
entity_t *
FindEntityWithKeyPair (const char *key, const char *value)
{
entity_t *ent;
epair_t *ep;
int i;
for (i = 0; i < num_entities; i++) {
ent = &entities[i];
for (ep = ent->epairs; ep; ep = ep->next) {
if (!strcmp (ep->key, key)) {
if (!strcmp (ep->value, value))
return ent;
break;
}
}
}
return 0;
}
2002-08-25 23:06:23 +00:00
void
GetVectorForKey (entity_t *ent, const char *key, vec3_t vec)
2002-08-25 23:06:23 +00:00
{
const char *k;
2002-08-25 23:06:23 +00:00
2002-09-19 02:37:52 +00:00
k = ValueForKey (ent, key);
sscanf (k, "%f %f %f", &vec[0], &vec[1], &vec[2]);
2002-08-25 23:06:23 +00:00
}
void
WriteEntitiesToString (void)
{
dstring_t *buf;
2002-09-19 02:37:52 +00:00
epair_t *ep;
int i;
2002-08-25 23:06:23 +00:00
buf = dstring_newstr ();
2002-08-25 23:06:23 +00:00
if (options.verbosity >= 0)
printf ("%i switchable light styles\n", numlighttargets);
2002-09-19 02:37:52 +00:00
for (i = 0; i < num_entities; i++) {
2002-08-25 23:06:23 +00:00
ep = entities[i].epairs;
if (!ep)
continue; // ent got removed
dstring_appendstr (buf, "{\n");
2002-08-25 23:06:23 +00:00
for (ep = entities[i].epairs; ep; ep = ep->next) {
dasprintf (buf, "\"%s\" \"%s\"\n", ep->key, ep->value);
2002-08-25 23:06:23 +00:00
}
dstring_appendstr (buf, "}\n");
2002-09-19 02:37:52 +00:00
}
BSP_AddEntities (bsp, buf->str, buf->size);
2002-08-25 23:06:23 +00:00
}