mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-22 20:51:31 +00:00
Use hunk allocation for CMod_LoadLeafBrushes
This commit is contained in:
parent
c5ed6f6ad8
commit
e276ac80a7
1 changed files with 45 additions and 34 deletions
|
@ -71,6 +71,9 @@ typedef struct
|
||||||
{
|
{
|
||||||
char name[MAX_QPATH];
|
char name[MAX_QPATH];
|
||||||
|
|
||||||
|
unsigned int *map_leafbrushes;
|
||||||
|
int numleafbrushes;
|
||||||
|
|
||||||
cplane_t *map_planes; /* extra 6 for box hull */
|
cplane_t *map_planes; /* extra 6 for box hull */
|
||||||
int numplanes;
|
int numplanes;
|
||||||
|
|
||||||
|
@ -125,13 +128,11 @@ static float *leaf_mins, *leaf_maxs;
|
||||||
static int leaf_count, leaf_maxcount;
|
static int leaf_count, leaf_maxcount;
|
||||||
static int *leaf_list;
|
static int *leaf_list;
|
||||||
static int leaf_topnode;
|
static int leaf_topnode;
|
||||||
static int numleafbrushes;
|
|
||||||
static int numleafs = 1; /* allow leaf funcs to be called without a map */
|
static int numleafs = 1; /* allow leaf funcs to be called without a map */
|
||||||
static int trace_contents;
|
static int trace_contents;
|
||||||
static mapsurface_t nullsurface;
|
static mapsurface_t nullsurface;
|
||||||
static qboolean portalopen[MAX_MAP_AREAPORTALS];
|
static qboolean portalopen[MAX_MAP_AREAPORTALS];
|
||||||
static qboolean trace_ispoint; /* optimized case */
|
static qboolean trace_ispoint; /* optimized case */
|
||||||
static unsigned int map_leafbrushes[MAX_MAP_LEAFBRUSHES];
|
|
||||||
static trace_t trace_trace;
|
static trace_t trace_trace;
|
||||||
static vec3_t trace_start, trace_end;
|
static vec3_t trace_start, trace_end;
|
||||||
static vec3_t trace_mins, trace_maxs;
|
static vec3_t trace_mins, trace_maxs;
|
||||||
|
@ -349,7 +350,7 @@ CM_InitBoxHull(void)
|
||||||
|
|
||||||
if ((cmod.numnodes <= 0) ||
|
if ((cmod.numnodes <= 0) ||
|
||||||
(cmod.numbrushes <= 0) ||
|
(cmod.numbrushes <= 0) ||
|
||||||
(numleafbrushes + 1 > MAX_MAP_LEAFBRUSHES) ||
|
(cmod.numleafbrushes <= 0) ||
|
||||||
(cmod.numbrushsides <= 0) ||
|
(cmod.numbrushsides <= 0) ||
|
||||||
(cmod.numplanes <= 0))
|
(cmod.numplanes <= 0))
|
||||||
{
|
{
|
||||||
|
@ -363,10 +364,10 @@ CM_InitBoxHull(void)
|
||||||
|
|
||||||
box_leaf = &map_leafs[numleafs];
|
box_leaf = &map_leafs[numleafs];
|
||||||
box_leaf->contents = CONTENTS_MONSTER;
|
box_leaf->contents = CONTENTS_MONSTER;
|
||||||
box_leaf->firstleafbrush = numleafbrushes;
|
box_leaf->firstleafbrush = cmod.numleafbrushes;
|
||||||
box_leaf->numleafbrushes = 1;
|
box_leaf->numleafbrushes = 1;
|
||||||
|
|
||||||
map_leafbrushes[numleafbrushes] = cmod.numbrushes;
|
cmod.map_leafbrushes[cmod.numleafbrushes] = cmod.numbrushes;
|
||||||
|
|
||||||
for (i = 0; i < 6; i++)
|
for (i = 0; i < 6; i++)
|
||||||
{
|
{
|
||||||
|
@ -836,12 +837,12 @@ CM_TraceToLeaf(int leafnum)
|
||||||
/* trace line against all brushes in the leaf */
|
/* trace line against all brushes in the leaf */
|
||||||
for (k = 0; k < leaf->numleafbrushes; k++)
|
for (k = 0; k < leaf->numleafbrushes; k++)
|
||||||
{
|
{
|
||||||
if (leaf->firstleafbrush + k > MAX_MAP_LEAFBRUSHES)
|
if (leaf->firstleafbrush + k > cmod.numleafbrushes)
|
||||||
{
|
{
|
||||||
Com_Error(ERR_FATAL, "%s: broken leaf!\n", __func__);
|
Com_Error(ERR_FATAL, "%s: broken leaf!\n", __func__);
|
||||||
}
|
}
|
||||||
|
|
||||||
brushnum = map_leafbrushes[leaf->firstleafbrush + k];
|
brushnum = cmod.map_leafbrushes[leaf->firstleafbrush + k];
|
||||||
b = &cmod.map_brushes[brushnum];
|
b = &cmod.map_brushes[brushnum];
|
||||||
|
|
||||||
if (b->checkcount == checkcount)
|
if (b->checkcount == checkcount)
|
||||||
|
@ -884,7 +885,7 @@ CM_TestInLeaf(int leafnum)
|
||||||
/* trace line against all brushes in the leaf */
|
/* trace line against all brushes in the leaf */
|
||||||
for (k = 0; k < leaf->numleafbrushes; k++)
|
for (k = 0; k < leaf->numleafbrushes; k++)
|
||||||
{
|
{
|
||||||
brushnum = map_leafbrushes[leaf->firstleafbrush + k];
|
brushnum = cmod.map_leafbrushes[leaf->firstleafbrush + k];
|
||||||
b = &cmod.map_brushes[brushnum];
|
b = &cmod.map_brushes[brushnum];
|
||||||
|
|
||||||
if (b->checkcount == checkcount)
|
if (b->checkcount == checkcount)
|
||||||
|
@ -1540,7 +1541,8 @@ CMod_LoadQLeafs(int *numclusters, const byte *cmod_base, const lump_t *l)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
CMod_LoadLeafBrushes(const byte *cmod_base, const lump_t *l)
|
CMod_LoadLeafBrushes(const char *name, unsigned int **map_leafbrushes,
|
||||||
|
int *numleafbrushes, const byte *cmod_base, const lump_t *l)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
unsigned int *out;
|
unsigned int *out;
|
||||||
|
@ -1551,24 +1553,18 @@ CMod_LoadLeafBrushes(const byte *cmod_base, const lump_t *l)
|
||||||
|
|
||||||
if (l->filelen % sizeof(*in))
|
if (l->filelen % sizeof(*in))
|
||||||
{
|
{
|
||||||
Com_Error(ERR_DROP, "%s: funny lump size", __func__);
|
Com_Error(ERR_DROP, "%s: Map %s funny lump size", __func__, name);
|
||||||
}
|
}
|
||||||
|
|
||||||
count = l->filelen / sizeof(*in);
|
count = l->filelen / sizeof(*in);
|
||||||
|
|
||||||
if (count < 1)
|
if (count < 1)
|
||||||
{
|
{
|
||||||
Com_Error(ERR_DROP, "%s: Map with no planes", __func__);
|
Com_Error(ERR_DROP, "%s: Map %s with no planes", __func__, name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* need to save space for box planes */
|
out = *map_leafbrushes = Hunk_Alloc(count * sizeof(*out));
|
||||||
if (count > MAX_MAP_LEAFBRUSHES)
|
*numleafbrushes = count;
|
||||||
{
|
|
||||||
Com_Error(ERR_DROP, "%s: Map has too many leafbrushes", __func__);
|
|
||||||
}
|
|
||||||
|
|
||||||
out = map_leafbrushes;
|
|
||||||
numleafbrushes = count;
|
|
||||||
|
|
||||||
for (i = 0; i < count; i++, in++, out++)
|
for (i = 0; i < count; i++, in++, out++)
|
||||||
{
|
{
|
||||||
|
@ -1577,7 +1573,8 @@ CMod_LoadLeafBrushes(const byte *cmod_base, const lump_t *l)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
CMod_LoadQLeafBrushes(const byte *cmod_base, const lump_t *l)
|
CMod_LoadQLeafBrushes(const char *name, unsigned int **map_leafbrushes,
|
||||||
|
int *numleafbrushes, const byte *cmod_base, const lump_t *l)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
unsigned int *out;
|
unsigned int *out;
|
||||||
|
@ -1588,24 +1585,18 @@ CMod_LoadQLeafBrushes(const byte *cmod_base, const lump_t *l)
|
||||||
|
|
||||||
if (l->filelen % sizeof(*in))
|
if (l->filelen % sizeof(*in))
|
||||||
{
|
{
|
||||||
Com_Error(ERR_DROP, "%s: funny lump size", __func__);
|
Com_Error(ERR_DROP, "%s: Map %s funny lump size", __func__, name);
|
||||||
}
|
}
|
||||||
|
|
||||||
count = l->filelen / sizeof(*in);
|
count = l->filelen / sizeof(*in);
|
||||||
|
|
||||||
if (count < 1)
|
if (count < 1)
|
||||||
{
|
{
|
||||||
Com_Error(ERR_DROP, "%s: Map with no planes", __func__);
|
Com_Error(ERR_DROP, "%s: Map %s with no planes", __func__, name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* need to save space for box planes */
|
out = *map_leafbrushes = Hunk_Alloc(count * sizeof(*out));
|
||||||
if (count > MAX_MAP_LEAFBRUSHES)
|
*numleafbrushes = count;
|
||||||
{
|
|
||||||
Com_Error(ERR_DROP, "%s: Map has too many leafbrushes", __func__);
|
|
||||||
}
|
|
||||||
|
|
||||||
out = map_leafbrushes;
|
|
||||||
numleafbrushes = count;
|
|
||||||
|
|
||||||
for (i = 0; i < count; i++, in++, out++)
|
for (i = 0; i < count; i++, in++, out++)
|
||||||
{
|
{
|
||||||
|
@ -1645,8 +1636,8 @@ CMod_LoadBrushSides(const char *name, cbrushside_t **map_brushsides, int *numbru
|
||||||
{
|
{
|
||||||
int j, num;
|
int j, num;
|
||||||
|
|
||||||
num = LittleLong(in->planenum);
|
num = LittleShort(in->planenum);
|
||||||
j = LittleLong(in->texinfo);
|
j = LittleShort(in->texinfo);
|
||||||
|
|
||||||
if (j >= numtexinfo || num > numplanes)
|
if (j >= numtexinfo || num > numplanes)
|
||||||
{
|
{
|
||||||
|
@ -1935,12 +1926,10 @@ CM_LoadMap(char *name, qboolean clientload, unsigned *checksum)
|
||||||
if (header.ident == IDBSPHEADER)
|
if (header.ident == IDBSPHEADER)
|
||||||
{
|
{
|
||||||
CMod_LoadLeafs(&cmod.numclusters, cmod_base, &header.lumps[LUMP_LEAFS]);
|
CMod_LoadLeafs(&cmod.numclusters, cmod_base, &header.lumps[LUMP_LEAFS]);
|
||||||
CMod_LoadLeafBrushes(cmod_base, &header.lumps[LUMP_LEAFBRUSHES]);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
CMod_LoadQLeafs(&cmod.numclusters, cmod_base, &header.lumps[LUMP_LEAFS]);
|
CMod_LoadQLeafs(&cmod.numclusters, cmod_base, &header.lumps[LUMP_LEAFS]);
|
||||||
CMod_LoadQLeafBrushes(cmod_base, &header.lumps[LUMP_LEAFBRUSHES]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* load into heap */
|
/* load into heap */
|
||||||
|
@ -1948,6 +1937,17 @@ CM_LoadMap(char *name, qboolean clientload, unsigned *checksum)
|
||||||
|
|
||||||
int hunkSize = 0;
|
int hunkSize = 0;
|
||||||
|
|
||||||
|
if (header.ident == IDBSPHEADER)
|
||||||
|
{
|
||||||
|
hunkSize += Mod_CalcLumpHunkSize(&header.lumps[LUMP_LEAFBRUSHES],
|
||||||
|
sizeof(short), sizeof(int), 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
hunkSize += Mod_CalcLumpHunkSize(&header.lumps[LUMP_LEAFBRUSHES],
|
||||||
|
sizeof(int), sizeof(int), 1);
|
||||||
|
}
|
||||||
|
|
||||||
hunkSize += Mod_CalcLumpHunkSize(&header.lumps[LUMP_PLANES],
|
hunkSize += Mod_CalcLumpHunkSize(&header.lumps[LUMP_PLANES],
|
||||||
sizeof(dplane_t), sizeof(cplane_t), 12);
|
sizeof(dplane_t), sizeof(cplane_t), 12);
|
||||||
hunkSize += Mod_CalcLumpHunkSize(&header.lumps[LUMP_BRUSHES],
|
hunkSize += Mod_CalcLumpHunkSize(&header.lumps[LUMP_BRUSHES],
|
||||||
|
@ -1979,6 +1979,17 @@ CM_LoadMap(char *name, qboolean clientload, unsigned *checksum)
|
||||||
|
|
||||||
cmod.extradata = Hunk_Begin(hunkSize);
|
cmod.extradata = Hunk_Begin(hunkSize);
|
||||||
|
|
||||||
|
if (header.ident == IDBSPHEADER)
|
||||||
|
{
|
||||||
|
CMod_LoadLeafBrushes(cmod.name, &cmod.map_leafbrushes, &cmod.numleafbrushes,
|
||||||
|
cmod_base, &header.lumps[LUMP_LEAFBRUSHES]);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
CMod_LoadQLeafBrushes(cmod.name, &cmod.map_leafbrushes, &cmod.numleafbrushes,
|
||||||
|
cmod_base, &header.lumps[LUMP_LEAFBRUSHES]);
|
||||||
|
}
|
||||||
|
|
||||||
Mod_LoadPlanes(cmod.name, &cmod.map_planes, &cmod.numplanes,
|
Mod_LoadPlanes(cmod.name, &cmod.map_planes, &cmod.numplanes,
|
||||||
cmod_base, &header.lumps[LUMP_PLANES]);
|
cmod_base, &header.lumps[LUMP_PLANES]);
|
||||||
CMod_LoadBrushes(cmod.name, &cmod.map_brushes, &cmod.numbrushes,
|
CMod_LoadBrushes(cmod.name, &cmod.map_brushes, &cmod.numbrushes,
|
||||||
|
|
Loading…
Reference in a new issue