2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
locs.c
|
|
|
|
|
|
|
|
Parsing and handling of location files.
|
|
|
|
|
|
|
|
Copyright (C) 2000 Anton Gavrilov (tonik@quake.ru)
|
|
|
|
|
|
|
|
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-02-19 21:15:25 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
2002-08-20 19:16:11 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
# define _POSIX_
|
|
|
|
#endif
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
#include <limits.h>
|
|
|
|
|
2021-03-11 02:38:33 +00:00
|
|
|
#include "QF/mathlib.h"
|
|
|
|
#include "QF/render.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/qtypes.h"
|
2002-08-27 07:16:28 +00:00
|
|
|
#include "QF/quakefs.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/sys.h"
|
2010-08-24 07:20:07 +00:00
|
|
|
#include "QF/va.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2021-03-11 07:19:49 +00:00
|
|
|
#include "QF/simd/vec4f.h"
|
|
|
|
|
2021-03-11 02:38:33 +00:00
|
|
|
#include "QF/plugin/vid_render.h" //FIXME
|
|
|
|
|
2001-08-29 02:12:57 +00:00
|
|
|
#include "compat.h"
|
2021-03-11 02:38:33 +00:00
|
|
|
#include "d_iface.h" //FIXME part_tex_smoke and part_tex_dot
|
2001-05-09 17:57:57 +00:00
|
|
|
|
2021-12-19 04:08:39 +00:00
|
|
|
#include "client/effects.h"
|
2021-03-11 02:38:33 +00:00
|
|
|
#include "client/locs.h"
|
2021-12-19 04:08:39 +00:00
|
|
|
#include "client/particles.h"
|
2020-06-21 14:15:17 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
#define LOCATION_BLOCK 128 // 128 locations per block.
|
|
|
|
|
|
|
|
location_t **locations = NULL;
|
2001-08-29 02:12:57 +00:00
|
|
|
int locations_alloced = 0;
|
|
|
|
int locations_count = 0;
|
|
|
|
int location_blocks = 0;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
int
|
2021-03-11 07:19:49 +00:00
|
|
|
locs_nearest (vec4f_t loc)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
float best_distance = 9999999, distance;
|
|
|
|
int i, j = -1;
|
2001-08-29 02:12:57 +00:00
|
|
|
location_t *cur;
|
2012-05-21 23:23:22 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
for (i = 0; i < locations_count; i++) {
|
|
|
|
cur = locations[i];
|
2021-03-11 07:19:49 +00:00
|
|
|
vec4f_t d = loc - cur->loc;
|
|
|
|
distance = dotf (d, d)[0];
|
2001-02-19 21:15:25 +00:00
|
|
|
if ((distance < best_distance)) {
|
|
|
|
best_distance = distance;
|
|
|
|
j = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (j);
|
|
|
|
}
|
2012-05-21 23:23:22 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
location_t *
|
2021-03-11 07:19:49 +00:00
|
|
|
locs_find (vec4f_t target)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
int i;
|
2001-08-29 02:12:57 +00:00
|
|
|
|
2003-03-21 21:25:44 +00:00
|
|
|
i = locs_nearest (target);
|
2012-05-21 23:23:22 +00:00
|
|
|
if (i == -1)
|
2001-02-19 21:15:25 +00:00
|
|
|
return NULL;
|
|
|
|
return locations[i];
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2002-11-05 19:12:51 +00:00
|
|
|
locs_more (void)
|
|
|
|
{
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
location_blocks++;
|
|
|
|
locations_alloced += LOCATION_BLOCK;
|
|
|
|
size = (sizeof (location_t *) * LOCATION_BLOCK * location_blocks);
|
|
|
|
|
|
|
|
if (locations)
|
|
|
|
locations = realloc (locations, size);
|
|
|
|
else
|
|
|
|
locations = malloc (size);
|
|
|
|
|
|
|
|
if (!locations)
|
|
|
|
Sys_Error ("ERROR! Can not alloc memory for location block!");
|
|
|
|
}
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
void
|
2021-03-11 07:19:49 +00:00
|
|
|
locs_add (vec4f_t location, const char *name)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
int num;
|
|
|
|
|
|
|
|
locations_count++;
|
|
|
|
if (locations_count >= locations_alloced)
|
|
|
|
locs_more ();
|
|
|
|
|
|
|
|
num = locations_count - 1;
|
|
|
|
|
|
|
|
locations[num] = malloc (sizeof (location_t));
|
2002-05-14 06:37:28 +00:00
|
|
|
SYS_CHECKMEM (locations[num]);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
locations[num]->loc[0] = location[0];
|
|
|
|
locations[num]->loc[1] = location[1];
|
|
|
|
locations[num]->loc[2] = location[2];
|
|
|
|
locations[num]->name = strdup (name);
|
|
|
|
if (!locations[num]->name)
|
|
|
|
Sys_Error ("locs_add: Can't strdup name!");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
locs_load (const char *filename)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2012-08-18 12:44:02 +00:00
|
|
|
const char *tmp;
|
2001-07-15 07:04:17 +00:00
|
|
|
char *t1, *t2;
|
2001-08-29 02:12:57 +00:00
|
|
|
const char *line;
|
2021-03-19 11:18:45 +00:00
|
|
|
vec4f_t loc = { 0, 0, 0, 1 };
|
2002-08-27 07:16:28 +00:00
|
|
|
QFile *file;
|
2012-05-21 23:23:22 +00:00
|
|
|
|
2021-01-31 07:01:20 +00:00
|
|
|
tmp = va (0, "maps/%s", filename);
|
2014-01-23 02:57:57 +00:00
|
|
|
file = QFS_FOpenFile (tmp);
|
2001-02-19 21:15:25 +00:00
|
|
|
if (!file) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Couldn't load %s\n", tmp);
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
while ((line = Qgetline (file))) {
|
|
|
|
if (line[0] == '#')
|
|
|
|
continue;
|
2012-05-21 23:23:22 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
loc[0] = strtol (line, &t1, 0) * (1.0 / 8);
|
|
|
|
if (line == t1)
|
|
|
|
continue;
|
|
|
|
loc[1] = strtol (t1, &t2, 0) * (1.0 / 8);
|
|
|
|
if (t2 == t1)
|
|
|
|
continue;
|
|
|
|
loc[2] = strtol (t2, &t1, 0) * (1.0 / 8);
|
2003-03-21 21:25:44 +00:00
|
|
|
if ((t1 == t2) || (strlen (t1) < 2))
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
|
|
|
t1++;
|
|
|
|
t2 = strrchr (t1, '\n');
|
|
|
|
if (t2) {
|
|
|
|
t2[0] = '\0';
|
2010-01-13 06:42:26 +00:00
|
|
|
// handle dos format lines (QFS_FOpenFile is binary-only)
|
|
|
|
// and unix is effectively binary-only anyway
|
2001-11-26 23:23:29 +00:00
|
|
|
while (t2 > t1 && t2[-1] == '\r') {
|
2001-02-19 21:15:25 +00:00
|
|
|
t2[-1] = '\0';
|
2001-11-26 23:23:29 +00:00
|
|
|
t2--;
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
locs_add (loc, t1);
|
|
|
|
}
|
|
|
|
Qclose (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
locs_reset (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < locations_count; i++) {
|
|
|
|
free ((void *) locations[i]->name);
|
|
|
|
free ((void *) locations[i]);
|
|
|
|
locations[i] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
free (locations);
|
|
|
|
locations_alloced = 0;
|
|
|
|
locations_count = 0;
|
|
|
|
locations = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
locs_save (const char *filename, qboolean gz)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-08-29 02:12:57 +00:00
|
|
|
int i;
|
2002-08-27 07:16:28 +00:00
|
|
|
QFile *locfd;
|
2012-05-21 23:23:22 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (gz) {
|
2010-08-24 07:20:07 +00:00
|
|
|
if (strcmp (QFS_FileExtension (filename), ".gz") != 0)
|
2021-01-31 07:01:20 +00:00
|
|
|
filename = va (0, "%s.gz", filename);
|
2010-08-24 07:20:07 +00:00
|
|
|
locfd = QFS_Open (filename, "z9w+");
|
2001-02-19 21:15:25 +00:00
|
|
|
} else
|
2003-05-23 17:17:01 +00:00
|
|
|
locfd = QFS_Open (filename, "w+");
|
2001-02-19 21:15:25 +00:00
|
|
|
if (locfd == 0) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("ERROR: Unable to open %s\n", filename);
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-05-21 23:23:22 +00:00
|
|
|
for (i = 0; i < locations_count; i++)
|
2003-03-21 21:25:44 +00:00
|
|
|
Qprintf (locfd,"%.0f %.0f %.0f %s\n", locations[i]->loc[0] * 8,
|
|
|
|
locations[i]->loc[1] * 8, locations[i]->loc[2] * 8,
|
|
|
|
locations[i]->name);
|
2001-02-19 21:15:25 +00:00
|
|
|
Qclose (locfd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-03-11 07:19:49 +00:00
|
|
|
locs_mark (vec4f_t loc, const char *desc)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2003-03-21 21:25:44 +00:00
|
|
|
locs_add (loc, desc);
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Marked current location: %s\n", desc);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
locs_edit
|
2001-08-29 02:12:57 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
call with description to modify location description
|
|
|
|
call with NULL description to modify location vectors
|
|
|
|
*/
|
|
|
|
void
|
2021-03-11 07:19:49 +00:00
|
|
|
locs_edit (vec4f_t loc, const char *desc)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
int i;
|
2001-08-29 02:12:57 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (locations_count) {
|
|
|
|
i = locs_nearest (loc);
|
|
|
|
if (!desc) {
|
2021-03-11 07:19:49 +00:00
|
|
|
locations[i]->loc = loc;
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Moving location marker for %s\n",
|
2001-02-19 21:15:25 +00:00
|
|
|
locations[i]->name);
|
|
|
|
} else {
|
|
|
|
free ((void *) locations[i]->name);
|
|
|
|
locations[i]->name = strdup (desc);
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Changing location description to %s\n",
|
2001-02-19 21:15:25 +00:00
|
|
|
locations[i]->name);
|
|
|
|
}
|
2012-05-21 23:23:22 +00:00
|
|
|
} else
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Error: No location markers to modify!\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-03-11 07:19:49 +00:00
|
|
|
locs_del (vec4f_t loc)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
int i;
|
2001-08-29 02:12:57 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (locations_count) {
|
|
|
|
i = locs_nearest (loc);
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Removing location marker for %s\n",
|
2001-02-19 21:15:25 +00:00
|
|
|
locations[i]->name);
|
|
|
|
free ((void *) locations[i]->name);
|
|
|
|
free ((void *) locations[i]);
|
|
|
|
locations_count--;
|
|
|
|
for (; i < locations_count; i++)
|
|
|
|
locations[i] = locations[i+1];
|
|
|
|
locations[locations_count] = NULL;
|
2012-05-21 23:23:22 +00:00
|
|
|
} else
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Error: No location markers to remove\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
map_to_loc (const char *mapname, char *filename)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
char *t1;
|
2012-05-21 23:23:22 +00:00
|
|
|
|
2003-03-21 21:25:44 +00:00
|
|
|
strcpy (filename, mapname);
|
|
|
|
t1 = strrchr (filename, '.');
|
2001-02-19 21:15:25 +00:00
|
|
|
if (!t1)
|
|
|
|
Sys_Error ("Can't find .!");
|
|
|
|
t1++;
|
2003-03-21 21:25:44 +00:00
|
|
|
strcpy (t1, "loc");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2021-03-11 02:38:33 +00:00
|
|
|
|
|
|
|
void
|
2022-02-28 07:57:43 +00:00
|
|
|
locs_draw (double time, vec4f_t simorg)
|
2021-03-11 02:38:33 +00:00
|
|
|
{
|
|
|
|
//FIXME custom ent rendering code would be nice
|
|
|
|
dlight_t *dl;
|
|
|
|
location_t *nearloc;
|
2021-03-11 07:19:49 +00:00
|
|
|
vec4f_t trueloc;
|
2021-12-18 16:21:39 +00:00
|
|
|
vec4f_t zero = {};
|
2021-03-11 02:38:33 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
nearloc = locs_find (simorg);
|
|
|
|
if (nearloc) {
|
|
|
|
dl = r_funcs->R_AllocDlight (4096);
|
|
|
|
if (dl) {
|
|
|
|
VectorCopy (nearloc->loc, dl->origin);
|
|
|
|
dl->radius = 200;
|
2022-02-28 07:57:43 +00:00
|
|
|
dl->die = time + 0.1;
|
2021-03-11 02:38:33 +00:00
|
|
|
dl->color[0] = 0;
|
|
|
|
dl->color[1] = 1;
|
|
|
|
dl->color[2] = 0;
|
|
|
|
dl->color[3] = 0.7;
|
|
|
|
}
|
2021-03-11 07:19:49 +00:00
|
|
|
trueloc = nearloc->loc;
|
2021-12-19 04:08:39 +00:00
|
|
|
clp_funcs->Particle_New (pt_smokecloud, part_tex_smoke, trueloc, 2.0,
|
2022-02-28 07:57:43 +00:00
|
|
|
zero, time + 9.0, 254,
|
2021-03-11 02:38:33 +00:00
|
|
|
0.25 + qfrandom (0.125), 0.0);
|
|
|
|
for (i = 0; i < 15; i++)
|
2021-12-19 04:08:39 +00:00
|
|
|
clp_funcs->Particle_NewRandom (pt_fallfade, part_tex_dot, trueloc,
|
2022-02-28 07:57:43 +00:00
|
|
|
12, 0.7, 96, time + 5.0,
|
2021-03-11 02:38:33 +00:00
|
|
|
104 + (rand () & 7), 1.0, 0.0);
|
|
|
|
}
|
|
|
|
}
|