2021-07-25 03:14:04 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "QF/sys.h"
|
|
|
|
|
|
|
|
#include "tools/qfbsp/include/brush.h"
|
|
|
|
#include "tools/qfbsp/include/bsp5.h"
|
|
|
|
#include "tools/qfbsp/include/draw.h"
|
|
|
|
#include "tools/qfbsp/include/options.h"
|
|
|
|
|
|
|
|
typedef struct lumpinfo_s {
|
|
|
|
const char *name;
|
|
|
|
int size;
|
|
|
|
} lumpinfo_t;
|
|
|
|
|
|
|
|
#define S(f) sizeof (*((bsp_t *)0)->f)
|
|
|
|
static lumpinfo_t lump_info[] = {
|
|
|
|
{ "entities", S(entdata) },
|
|
|
|
{ "planes", S(planes) },
|
|
|
|
{ "textures", S(texdata) },
|
|
|
|
{ "vertices", S(vertexes) },
|
|
|
|
{ "visibility", S(visdata) },
|
|
|
|
{ "nodes", S(nodes) },
|
|
|
|
{ "texinfo", S(texinfo) },
|
|
|
|
{ "faces", S(faces) },
|
|
|
|
{ "lighting", S(lightdata) },
|
|
|
|
{ "clipnodes", S(clipnodes) },
|
|
|
|
{ "leafs", S(leafs) },
|
|
|
|
{ "marksurfaces", S(marksurfaces) },
|
|
|
|
{ "edges", S(edges) },
|
|
|
|
{ "surfedges", S(surfedges) },
|
|
|
|
{ "models", S(models) },
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
bspinfo ()
|
|
|
|
{
|
2021-07-26 04:10:06 +00:00
|
|
|
printf ("version: %x\n", bsp->header->version);
|
2021-07-25 03:14:04 +00:00
|
|
|
for (int i = 0; i < HEADER_LUMPS; i++) {
|
|
|
|
lump_t *lump = &bsp->header->lumps[i];
|
|
|
|
lumpinfo_t *info = &lump_info[i];
|
|
|
|
|
|
|
|
printf (" %-12s: %7d %7d %7d\n", info->name,
|
|
|
|
lump->fileofs, lump->filelen, lump->filelen / info->size);
|
|
|
|
|
|
|
|
}
|
2021-08-01 12:54:05 +00:00
|
|
|
for (unsigned i = 0; i < bsp->nummodels; i++) {
|
2021-07-25 03:14:04 +00:00
|
|
|
dmodel_t *model = &bsp->models[i];
|
|
|
|
printf ("model: *%d\n", i);
|
|
|
|
printf (" mins : [%g, %g, %g]\n", VectorExpand (model->mins));
|
|
|
|
printf (" maxs : [%g, %g, %g]\n", VectorExpand (model->maxs));
|
|
|
|
printf (" origin : [%g, %g, %g]\n", VectorExpand (model->origin));
|
|
|
|
printf (" headnode:");
|
|
|
|
for (int j = 0; j < MAX_MAP_HULLS; j++) {
|
|
|
|
printf (" %d", model->headnode[j]);
|
|
|
|
}
|
|
|
|
printf ("\n");
|
|
|
|
printf (" visleafs: %d\n", model->visleafs);
|
|
|
|
printf (" faces : %7d %7d\n", model->firstface, model->numfaces);
|
|
|
|
}
|
|
|
|
}
|