2020-07-07 11:19:09 +00:00
|
|
|
/*
|
|
|
|
** mapinfo.cpp
|
|
|
|
**
|
|
|
|
** Map record management
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
** Copyright 2020 Christoph Oelckers
|
|
|
|
** All rights reserved.
|
|
|
|
**
|
|
|
|
** Redistribution and use in source and binary forms, with or without
|
|
|
|
** modification, are permitted provided that the following conditions
|
|
|
|
** are met:
|
|
|
|
**
|
|
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer.
|
|
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
|
|
** documentation and/or other materials provided with the distribution.
|
|
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
|
|
** derived from this software without specific prior written permission.
|
|
|
|
**
|
|
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
2020-10-13 22:37:36 +00:00
|
|
|
#include "c_dispatch.h"
|
2020-07-07 11:19:09 +00:00
|
|
|
#include "mapinfo.h"
|
2020-07-07 18:27:21 +00:00
|
|
|
#include "raze_music.h"
|
2020-09-03 21:10:28 +00:00
|
|
|
#include "filesystem.h"
|
|
|
|
#include "printf.h"
|
2021-04-08 14:35:26 +00:00
|
|
|
#include "raze_sound.h"
|
2020-07-07 11:19:09 +00:00
|
|
|
|
2020-10-04 16:31:48 +00:00
|
|
|
FString gSkillNames[MAXSKILLS];
|
|
|
|
int gDefaultVolume = 0, gDefaultSkill = 1;
|
|
|
|
|
2021-04-25 23:45:16 +00:00
|
|
|
GlobalCutscenes globalCutscenes;
|
2021-05-01 20:52:28 +00:00
|
|
|
TArray<ClusterDef> clusters;
|
|
|
|
TArray<VolumeRecord> volumes;
|
|
|
|
TArray<TPointer<MapRecord>> mapList; // must be allocated as pointers because it can whack the currentlLevel pointer if this was a flat array.
|
2021-04-25 23:45:16 +00:00
|
|
|
VolumeRecord volumeList[MAXVOLUMES];
|
|
|
|
MapRecord *currentLevel; // level that is currently played.
|
2020-07-07 11:19:09 +00:00
|
|
|
MapRecord* lastLevel; // Same here, for the last level.
|
|
|
|
|
|
|
|
|
2020-10-13 22:37:36 +00:00
|
|
|
CCMD(listmaps)
|
|
|
|
{
|
2021-04-25 23:45:16 +00:00
|
|
|
for (auto& map : mapList)
|
2020-10-13 22:37:36 +00:00
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
int lump = fileSystem.FindFile(map->fileName);
|
2020-10-13 23:13:36 +00:00
|
|
|
if (lump >= 0)
|
|
|
|
{
|
|
|
|
int rfnum = fileSystem.GetFileContainer(lump);
|
2021-05-01 20:52:28 +00:00
|
|
|
Printf("%s - %s (%s)\n", map->LabelName(), map->DisplayName(), fileSystem.GetResourceFileName(rfnum));
|
2020-10-13 23:13:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
Printf("%s - %s (defined but does not exist)\n", map->fileName.GetChars(), map->DisplayName());
|
2020-10-13 23:13:36 +00:00
|
|
|
}
|
2020-10-13 22:37:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-01 20:52:28 +00:00
|
|
|
CCMD(mapinfo)
|
|
|
|
{
|
|
|
|
const char* mapname = nullptr;
|
|
|
|
if (argv.argc() > 1) mapname = argv[1];
|
|
|
|
|
|
|
|
if (!mapname)
|
|
|
|
{
|
|
|
|
for (auto& vol : volumes)
|
|
|
|
{
|
|
|
|
Printf("Volume %d\n\tName = '%s'\n\tstartmap = '%s'\n}\n", vol.index, vol.name.GetChars(), vol.startmap.GetChars());
|
|
|
|
}
|
|
|
|
for (auto& clus : clusters)
|
|
|
|
{
|
|
|
|
if (clus.intro.isdefined() || clus.outro.isdefined())
|
|
|
|
{
|
|
|
|
Printf("Cluster %d\n\tName = '%s'\n", clus.index, clus.name.GetChars());
|
|
|
|
if (clus.intro.function.IsNotEmpty()) Printf("\tIntro function = %d\n", clus.intro.function.GetChars());
|
|
|
|
if (clus.intro.video.IsNotEmpty()) Printf("\tIntro video = %d\n", clus.intro.video.GetChars());
|
|
|
|
if (clus.outro.function.IsNotEmpty()) Printf("\tOutro function = %d\n", clus.outro.function.GetChars());
|
|
|
|
if (clus.outro.video.IsNotEmpty()) Printf("\tOutro video = %d\n", clus.outro.video.GetChars());
|
|
|
|
Printf("}\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (auto& map : mapList)
|
|
|
|
{
|
|
|
|
if (mapname && map->labelName.CompareNoCase(mapname)) continue;
|
|
|
|
int lump = fileSystem.FindFile(map->fileName);
|
|
|
|
if (lump >= 0)
|
|
|
|
{
|
|
|
|
int rfnum = fileSystem.GetFileContainer(lump);
|
|
|
|
Printf("%s - %s (%s)\n{\n", map->fileName.GetChars(), map->DisplayName(), fileSystem.GetResourceFileName(rfnum));
|
|
|
|
Printf("\tlevel number = %d\n\tCluster = %d\n\tIndex = %d\n", map->levelNumber, map->cluster, map->mapindex);
|
|
|
|
if (map->Author.IsNotEmpty()) Printf("\tAuthor = '%s'\n", map->Author.GetChars());
|
|
|
|
if (map->NextMap.IsNotEmpty()) Printf("\tNext map = '%s'\n", map->NextMap.GetChars());
|
|
|
|
if (map->NextSecret.IsNotEmpty()) Printf("\tNext secret map = '%s'\n", map->NextSecret.GetChars());
|
|
|
|
if (map->music.IsNotEmpty()) Printf("\tMusic = '%s:%d'", map->music.GetChars(), map->musicorder);
|
|
|
|
if (map->cdSongId > 0) Printf("\tCD track = %d\n", map->cdSongId);
|
|
|
|
if (map->parTime) Printf("\tPar Time = %d\n", map->parTime);
|
|
|
|
if (map->designerTime) Printf("\tPar Time = %d\n", map->designerTime);
|
|
|
|
if (map->intro.function.IsNotEmpty()) Printf("\tIntro function = %d\n", map->intro.function.GetChars());
|
|
|
|
if (map->intro.video.IsNotEmpty()) Printf("\tIntro video = %d\n", map->intro.video.GetChars());
|
|
|
|
if (map->outro.function.IsNotEmpty()) Printf("\tOutro function = %d\n", map->outro.function.GetChars());
|
|
|
|
if (map->outro.video.IsNotEmpty()) Printf("\tOutro video = %d\n", map->outro.video.GetChars());
|
|
|
|
Printf("}\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Printf("%s - %s (defined but does not exist)\n", map->fileName.GetChars(), map->DisplayName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-13 22:37:36 +00:00
|
|
|
|
2020-07-07 11:19:09 +00:00
|
|
|
MapRecord *FindMapByName(const char *nm)
|
|
|
|
{
|
2021-04-25 23:45:16 +00:00
|
|
|
for (auto& map : mapList)
|
2020-07-07 11:19:09 +00:00
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
if (map->labelName.CompareNoCase(nm) == 0)
|
2020-07-07 11:19:09 +00:00
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
return map.Data();
|
2020-07-07 11:19:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MapRecord *FindMapByLevelNum(int num)
|
|
|
|
{
|
2021-04-25 23:45:16 +00:00
|
|
|
for (auto& map : mapList)
|
2020-07-07 11:19:09 +00:00
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
if (map->levelNumber == num)
|
2020-07-07 11:19:09 +00:00
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
return map.Data();
|
2020-07-07 11:19:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-04-27 22:51:28 +00:00
|
|
|
// return a map whose cluster and map number matches.
|
|
|
|
// if there's only one map with the given level number return that.
|
|
|
|
MapRecord* FindMapByClusterAndLevelNum(int cluster, int num)
|
|
|
|
{
|
|
|
|
MapRecord* mr = nullptr;
|
|
|
|
int mapfound = 0;
|
|
|
|
for (auto& map : mapList)
|
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
if (map->levelNumber == num)
|
2021-04-27 22:51:28 +00:00
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
if (map->cluster == cluster) return map.Data();
|
2021-04-27 22:51:28 +00:00
|
|
|
else
|
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
mr = map.Data();
|
2021-04-27 22:51:28 +00:00
|
|
|
mapfound++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mapfound == 1) return mr;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2020-07-07 11:19:09 +00:00
|
|
|
MapRecord *FindNextMap(MapRecord *thismap)
|
|
|
|
{
|
2020-11-22 17:46:20 +00:00
|
|
|
if (thismap->nextLevel != -1) return FindMapByLevelNum(thismap->nextLevel);
|
2020-07-07 11:19:09 +00:00
|
|
|
return FindMapByLevelNum(thismap->levelNumber+1);
|
|
|
|
}
|
|
|
|
|
2020-07-07 18:27:21 +00:00
|
|
|
bool SetMusicForMap(const char* mapname, const char* music, bool namehack)
|
2020-07-07 11:19:09 +00:00
|
|
|
{
|
|
|
|
static const char* specials[] = { "intro", "briefing", "loading" };
|
|
|
|
for (int i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
if (!stricmp(mapname, specials[i]))
|
|
|
|
{
|
2021-04-08 14:35:26 +00:00
|
|
|
if (specialmusic.Size() <= i) specialmusic.Resize(i + 1);
|
|
|
|
specialmusic[i] = music;
|
2020-07-07 11:19:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-07 18:27:21 +00:00
|
|
|
auto index = FindMapByName(mapname);
|
2020-07-07 11:19:09 +00:00
|
|
|
|
|
|
|
// This is for the DEFS parser's MUSIC command which never bothered to check for the real map name.
|
2020-07-07 18:27:21 +00:00
|
|
|
if (index == nullptr && namehack)
|
2020-07-07 11:19:09 +00:00
|
|
|
{
|
|
|
|
int lev, ep;
|
|
|
|
signed char b1, b2;
|
|
|
|
|
|
|
|
int numMatches = sscanf(mapname, "%c%d%c%d", &b1, &ep, &b2, &lev);
|
|
|
|
|
|
|
|
if (numMatches != 4 || toupper(b1) != 'E' || toupper(b2) != 'L')
|
|
|
|
return false;
|
|
|
|
|
2021-05-01 20:52:28 +00:00
|
|
|
index = FindMapByLevelNum(makelevelnum(ep - 1, lev - 1));
|
2020-07-07 11:19:09 +00:00
|
|
|
|
|
|
|
}
|
2020-07-07 18:27:21 +00:00
|
|
|
if (index != nullptr)
|
2020-07-07 11:19:09 +00:00
|
|
|
{
|
2020-07-07 18:27:21 +00:00
|
|
|
index->music = music;
|
2020-07-07 11:19:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-07-07 18:27:21 +00:00
|
|
|
MapRecord *AllocateMap()
|
2020-07-07 11:19:09 +00:00
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
auto&p = mapList[mapList.Reserve(1)];
|
|
|
|
p.Alloc();
|
|
|
|
return p.Data();
|
2020-07-07 11:19:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-07 18:27:21 +00:00
|
|
|
MapRecord* SetupUserMap(const char* boardfilename, const char *defaultmusic)
|
2020-07-07 11:19:09 +00:00
|
|
|
{
|
2021-04-25 23:45:16 +00:00
|
|
|
for (auto& map : mapList)
|
2020-07-07 11:19:09 +00:00
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
if (map->fileName.CompareNoCase(boardfilename) == 0)
|
2020-07-07 11:19:09 +00:00
|
|
|
{
|
2021-04-28 20:20:03 +00:00
|
|
|
return map.Data();
|
2020-07-07 11:19:09 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-03 21:10:28 +00:00
|
|
|
|
|
|
|
if (!fileSystem.FileExists(boardfilename))
|
|
|
|
{
|
|
|
|
Printf(TEXTCOLOR_RED "map: file \"%s\" not found.\n", boardfilename);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2020-07-07 18:27:21 +00:00
|
|
|
auto map = AllocateMap();
|
2020-07-07 11:19:09 +00:00
|
|
|
map->name = "";
|
|
|
|
map->SetFileName(boardfilename);
|
|
|
|
map->flags = MI_USERMAP|MI_FORCEEOG;
|
2020-07-07 18:27:21 +00:00
|
|
|
map->music = G_SetupFilenameBasedMusic(boardfilename, defaultmusic);
|
2020-07-07 11:19:09 +00:00
|
|
|
return map;
|
|
|
|
}
|