mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-17 01:31:25 +00:00
- copied a few more map information CCMDs to g_ccmd.
This commit is contained in:
parent
aa340145ac
commit
65f3fec283
7 changed files with 117 additions and 111 deletions
|
@ -38,6 +38,8 @@
|
||||||
|
|
||||||
CVAR (Bool, cl_spreaddecals, true, CVAR_ARCHIVE)
|
CVAR (Bool, cl_spreaddecals, true, CVAR_ARCHIVE)
|
||||||
CVAR(Bool, var_pushers, true, CVAR_SERVERINFO);
|
CVAR(Bool, var_pushers, true, CVAR_SERVERINFO);
|
||||||
|
CVAR(Bool, gl_cachenodes, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
||||||
|
CVAR(Float, gl_cachetime, 0.6f, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
||||||
|
|
||||||
|
|
||||||
CUSTOM_CVAR (Bool, gl_lights, true, CVAR_ARCHIVE | CVAR_GLOBALCONFIG | CVAR_NOINITCALL)
|
CUSTOM_CVAR (Bool, gl_lights, true, CVAR_ARCHIVE | CVAR_GLOBALCONFIG | CVAR_NOINITCALL)
|
||||||
|
|
|
@ -126,4 +126,117 @@ CCMD (spray)
|
||||||
Net_WriteString (argv[1]);
|
Net_WriteString (argv[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//==========================================================================
|
||||||
|
//
|
||||||
|
// CCMD mapchecksum
|
||||||
|
//
|
||||||
|
//==========================================================================
|
||||||
|
|
||||||
|
CCMD (mapchecksum)
|
||||||
|
{
|
||||||
|
MapData *map;
|
||||||
|
uint8_t cksum[16];
|
||||||
|
|
||||||
|
if (argv.argc() < 2)
|
||||||
|
{
|
||||||
|
Printf("Usage: mapchecksum <map> ...\n");
|
||||||
|
}
|
||||||
|
for (int i = 1; i < argv.argc(); ++i)
|
||||||
|
{
|
||||||
|
map = P_OpenMapData(argv[i], true);
|
||||||
|
if (map == NULL)
|
||||||
|
{
|
||||||
|
Printf("Cannot load %s as a map\n", argv[i]);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
map->GetChecksum(cksum);
|
||||||
|
const char *wadname = Wads.GetWadName(Wads.GetLumpFile(map->lumpnum));
|
||||||
|
delete map;
|
||||||
|
for (size_t j = 0; j < sizeof(cksum); ++j)
|
||||||
|
{
|
||||||
|
Printf("%02X", cksum[j]);
|
||||||
|
}
|
||||||
|
Printf(" // %s %s\n", wadname, argv[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//==========================================================================
|
||||||
|
//
|
||||||
|
// CCMD hiddencompatflags
|
||||||
|
//
|
||||||
|
//==========================================================================
|
||||||
|
|
||||||
|
CCMD (hiddencompatflags)
|
||||||
|
{
|
||||||
|
for(auto Level : AllLevels())
|
||||||
|
{
|
||||||
|
Printf("%s: %08x %08x %08x\n", Level->MapName.GetChars(), Level->ii_compatflags, Level->ii_compatflags2, Level->ib_compatflags);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CCMD(dumpportals)
|
||||||
|
{
|
||||||
|
for (auto Level : AllLevels())
|
||||||
|
{
|
||||||
|
Printf("Portal groups for %s\n", Level->MapName.GetChars());
|
||||||
|
for (unsigned i = 0; i < Level->portalGroups.Size(); i++)
|
||||||
|
{
|
||||||
|
auto p = Level->portalGroups[i];
|
||||||
|
double xdisp = p->mDisplacement.X;
|
||||||
|
double ydisp = p->mDisplacement.Y;
|
||||||
|
Printf(PRINT_LOG, "Portal #%d, %s, displacement = (%f,%f)\n", i, p->plane == 0 ? "floor" : "ceiling",
|
||||||
|
xdisp, ydisp);
|
||||||
|
Printf(PRINT_LOG, "Coverage:\n");
|
||||||
|
for (auto &sub : Level->subsectors)
|
||||||
|
{
|
||||||
|
auto port = sub.render_sector->GetPortalGroup(p->plane);
|
||||||
|
if (port == p)
|
||||||
|
{
|
||||||
|
Printf(PRINT_LOG, "\tSubsector %d (%d):\n\t\t", sub.Index(), sub.render_sector->sectornum);
|
||||||
|
for (unsigned k = 0; k < sub.numlines; k++)
|
||||||
|
{
|
||||||
|
Printf(PRINT_LOG, "(%.3f,%.3f), ", sub.firstline[k].v1->fX() + xdisp, sub.firstline[k].v1->fY() + ydisp);
|
||||||
|
}
|
||||||
|
Printf(PRINT_LOG, "\n\t\tCovered by subsectors:\n");
|
||||||
|
FPortalCoverage *cov = &sub.portalcoverage[p->plane];
|
||||||
|
for (int l = 0; l < cov->sscount; l++)
|
||||||
|
{
|
||||||
|
subsector_t *csub = &Level->subsectors[cov->subsectors[l]];
|
||||||
|
Printf(PRINT_LOG, "\t\t\t%5d (%4d): ", cov->subsectors[l], csub->render_sector->sectornum);
|
||||||
|
for (unsigned m = 0; m < csub->numlines; m++)
|
||||||
|
{
|
||||||
|
Printf(PRINT_LOG, "(%.3f,%.3f), ", csub->firstline[m].v1->fX(), csub->firstline[m].v1->fY());
|
||||||
|
}
|
||||||
|
Printf(PRINT_LOG, "\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ADD_STAT (interpolations)
|
||||||
|
{
|
||||||
|
FString out;
|
||||||
|
for (auto Level : AllLevels())
|
||||||
|
{
|
||||||
|
if (out.Len() > 0) out << '\n';
|
||||||
|
out.AppendFormat("%s: %d interpolations", Level->MapName.GetChars(), Level->interpolator.CountInterpolations ());
|
||||||
|
|
||||||
|
}
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
|
CCMD(printsections)
|
||||||
|
{
|
||||||
|
void PrintSections(FLevelLocals *Level);
|
||||||
|
for (auto Level : AllLevels())
|
||||||
|
{
|
||||||
|
PrintSections(Level);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -530,53 +530,3 @@ DEFINE_ACTION_FUNCTION(DLevelCompatibility, GetDefaultActor)
|
||||||
|
|
||||||
DEFINE_FIELD(DLevelCompatibility, Level);
|
DEFINE_FIELD(DLevelCompatibility, Level);
|
||||||
|
|
||||||
//==========================================================================
|
|
||||||
//
|
|
||||||
// CCMD mapchecksum
|
|
||||||
//
|
|
||||||
//==========================================================================
|
|
||||||
|
|
||||||
CCMD (mapchecksum)
|
|
||||||
{
|
|
||||||
MapData *map;
|
|
||||||
uint8_t cksum[16];
|
|
||||||
|
|
||||||
if (argv.argc() < 2)
|
|
||||||
{
|
|
||||||
Printf("Usage: mapchecksum <map> ...\n");
|
|
||||||
}
|
|
||||||
for (int i = 1; i < argv.argc(); ++i)
|
|
||||||
{
|
|
||||||
map = P_OpenMapData(argv[i], true);
|
|
||||||
if (map == NULL)
|
|
||||||
{
|
|
||||||
Printf("Cannot load %s as a map\n", argv[i]);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
map->GetChecksum(cksum);
|
|
||||||
const char *wadname = Wads.GetWadName(Wads.GetLumpFile(map->lumpnum));
|
|
||||||
delete map;
|
|
||||||
for (size_t j = 0; j < sizeof(cksum); ++j)
|
|
||||||
{
|
|
||||||
Printf("%02X", cksum[j]);
|
|
||||||
}
|
|
||||||
Printf(" // %s %s\n", wadname, argv[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//==========================================================================
|
|
||||||
//
|
|
||||||
// CCMD hiddencompatflags
|
|
||||||
//
|
|
||||||
//==========================================================================
|
|
||||||
|
|
||||||
CCMD (hiddencompatflags)
|
|
||||||
{
|
|
||||||
for(auto Level : AllLevels())
|
|
||||||
{
|
|
||||||
Printf("%s: %08x %08x %08x\n", Level->MapName.GetChars(), Level->ii_compatflags, Level->ii_compatflags2, Level->ib_compatflags);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
@ -61,8 +61,8 @@
|
||||||
#include "i_time.h"
|
#include "i_time.h"
|
||||||
#include "maploader.h"
|
#include "maploader.h"
|
||||||
|
|
||||||
CVAR(Bool, gl_cachenodes, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
EXTERN_CVAR(Bool, gl_cachenodes)
|
||||||
CVAR(Float, gl_cachetime, 0.6f, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
EXTERN_CVAR(Float, gl_cachetime)
|
||||||
|
|
||||||
// fixed 32 bit gl_vert format v2.0+ (glBsp 1.91)
|
// fixed 32 bit gl_vert format v2.0+ (glBsp 1.91)
|
||||||
struct mapglvertex_t
|
struct mapglvertex_t
|
||||||
|
|
|
@ -466,43 +466,3 @@ void InitPortalGroups(FLevelLocals *Level)
|
||||||
GroupLinePortals(Level);
|
GroupLinePortals(Level);
|
||||||
}
|
}
|
||||||
|
|
||||||
CCMD(dumpportals)
|
|
||||||
{
|
|
||||||
for (auto Level : AllLevels())
|
|
||||||
{
|
|
||||||
Printf("Portal groups for %s\n", Level->MapName.GetChars());
|
|
||||||
for (unsigned i = 0; i < Level->portalGroups.Size(); i++)
|
|
||||||
{
|
|
||||||
auto p = Level->portalGroups[i];
|
|
||||||
double xdisp = p->mDisplacement.X;
|
|
||||||
double ydisp = p->mDisplacement.Y;
|
|
||||||
Printf(PRINT_LOG, "Portal #%d, %s, displacement = (%f,%f)\n", i, p->plane == 0 ? "floor" : "ceiling",
|
|
||||||
xdisp, ydisp);
|
|
||||||
Printf(PRINT_LOG, "Coverage:\n");
|
|
||||||
for (auto &sub : Level->subsectors)
|
|
||||||
{
|
|
||||||
auto port = sub.render_sector->GetPortalGroup(p->plane);
|
|
||||||
if (port == p)
|
|
||||||
{
|
|
||||||
Printf(PRINT_LOG, "\tSubsector %d (%d):\n\t\t", sub.Index(), sub.render_sector->sectornum);
|
|
||||||
for (unsigned k = 0; k < sub.numlines; k++)
|
|
||||||
{
|
|
||||||
Printf(PRINT_LOG, "(%.3f,%.3f), ", sub.firstline[k].v1->fX() + xdisp, sub.firstline[k].v1->fY() + ydisp);
|
|
||||||
}
|
|
||||||
Printf(PRINT_LOG, "\n\t\tCovered by subsectors:\n");
|
|
||||||
FPortalCoverage *cov = &sub.portalcoverage[p->plane];
|
|
||||||
for (int l = 0; l < cov->sscount; l++)
|
|
||||||
{
|
|
||||||
subsector_t *csub = &Level->subsectors[cov->subsectors[l]];
|
|
||||||
Printf(PRINT_LOG, "\t\t\t%5d (%4d): ", cov->subsectors[l], csub->render_sector->sectornum);
|
|
||||||
for (unsigned m = 0; m < csub->numlines; m++)
|
|
||||||
{
|
|
||||||
Printf(PRINT_LOG, "(%.3f,%.3f), ", csub->firstline[m].v1->fX(), csub->firstline[m].v1->fY());
|
|
||||||
}
|
|
||||||
Printf(PRINT_LOG, "\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -186,8 +186,6 @@ IMPLEMENT_CLASS(DPolyobjInterpolation, false, false)
|
||||||
//
|
//
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
||||||
FInterpolator interpolator;
|
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
|
@ -989,11 +987,3 @@ void FPolyObj::StopInterpolation()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
ADD_STAT (interpolations)
|
|
||||||
{
|
|
||||||
FString out;
|
|
||||||
out.Format ("%d interpolations", interpolator.CountInterpolations ());
|
|
||||||
return out;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -875,12 +875,3 @@ void CreateSections(FLevelLocals *Level)
|
||||||
creat.FixMissingReferences();
|
creat.FixMissingReferences();
|
||||||
}
|
}
|
||||||
|
|
||||||
CCMD(printsections)
|
|
||||||
{
|
|
||||||
for (auto Level : AllLevels())
|
|
||||||
{
|
|
||||||
PrintSections(Level);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue