mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
70 lines
1.7 KiB
C
70 lines
1.7 KiB
C
/*
|
|
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 the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
See file, 'COPYING', for details.
|
|
|
|
$Id$
|
|
*/
|
|
|
|
#define MAX_FACES 256
|
|
typedef struct mface_s
|
|
{
|
|
struct mface_s *next;
|
|
plane_t plane;
|
|
int texinfo;
|
|
} mface_t;
|
|
|
|
typedef struct mbrush_s
|
|
{
|
|
struct mbrush_s *next;
|
|
mface_t *faces;
|
|
qboolean detail; // true if brush is detail brush
|
|
} mbrush_t;
|
|
|
|
typedef struct epair_s
|
|
{
|
|
struct epair_s *next;
|
|
char *key;
|
|
char *value;
|
|
} epair_t;
|
|
|
|
typedef struct
|
|
{
|
|
vec3_t origin;
|
|
mbrush_t *brushes;
|
|
epair_t *epairs;
|
|
} entity_t;
|
|
|
|
extern int nummapbrushes;
|
|
extern mbrush_t mapbrushes[MAX_MAP_BRUSHES];
|
|
|
|
extern int num_entities;
|
|
extern entity_t entities[MAX_MAP_ENTITIES];
|
|
|
|
extern int nummiptex;
|
|
extern char miptex[MAX_MAP_TEXINFO][16];
|
|
|
|
void LoadMapFile (const char *filename);
|
|
|
|
int FindMiptex (const char *name);
|
|
|
|
void PrintEntity (entity_t *ent);
|
|
const char *ValueForKey (entity_t *ent, const char *key);
|
|
void SetKeyValue (entity_t *ent, const char *key, const char *value);
|
|
void GetVectorForKey (entity_t *ent, const char *key, vec3_t vec);
|
|
|
|
void WriteEntitiesToString (void);
|