2023-04-02 18:56:10 +02:00
|
|
|
/*
|
|
|
|
* MapFeaturesH3M.cpp, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "StdInc.h"
|
|
|
|
#include "MapFeaturesH3M.h"
|
2023-04-03 14:02:15 +02:00
|
|
|
|
2023-04-02 18:56:10 +02:00
|
|
|
#include "CMap.h"
|
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2023-04-03 19:51:02 +02:00
|
|
|
MapFormatFeaturesH3M MapFormatFeaturesH3M::find(EMapFormat format, uint8_t hotaVersion)
|
2023-04-02 18:56:10 +02:00
|
|
|
{
|
2023-04-03 14:02:15 +02:00
|
|
|
switch(format)
|
2023-04-02 18:56:10 +02:00
|
|
|
{
|
2023-04-03 14:02:15 +02:00
|
|
|
case EMapFormat::ROE:
|
|
|
|
return getFeaturesROE();
|
|
|
|
case EMapFormat::AB:
|
|
|
|
return getFeaturesAB();
|
|
|
|
case EMapFormat::SOD:
|
|
|
|
return getFeaturesSOD();
|
|
|
|
case EMapFormat::WOG:
|
|
|
|
return getFeaturesWOG();
|
2023-04-03 17:56:49 +02:00
|
|
|
//case EMapFormat::HOTA1: //TODO: find such maps? Not present in current HotA release (1.6)
|
|
|
|
//case EMapFormat::HOTA2:
|
|
|
|
case EMapFormat::HOTA3:
|
2023-04-03 19:51:02 +02:00
|
|
|
return getFeaturesHOTA(hotaVersion);
|
2023-04-02 18:56:10 +02:00
|
|
|
default:
|
|
|
|
throw std::runtime_error("Invalid map format!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MapFormatFeaturesH3M MapFormatFeaturesH3M::getFeaturesROE()
|
|
|
|
{
|
|
|
|
MapFormatFeaturesH3M result;
|
|
|
|
result.levelROE = true;
|
|
|
|
|
|
|
|
result.factionsBytes = 1;
|
|
|
|
result.heroesBytes = 16;
|
|
|
|
result.artifactsBytes = 16;
|
|
|
|
result.skillsBytes = 4;
|
|
|
|
result.resourcesBytes = 4;
|
|
|
|
result.spellsBytes = 9;
|
|
|
|
result.buildingsBytes = 6;
|
|
|
|
|
|
|
|
result.factionsCount = 8;
|
|
|
|
result.heroesCount = 128;
|
|
|
|
result.heroesPortraitsCount = 128;
|
|
|
|
result.artifactsCount = 127;
|
|
|
|
result.resourcesCount = 7;
|
|
|
|
result.creaturesCount = 118;
|
|
|
|
result.spellsCount = 70;
|
|
|
|
result.skillsCount = 28;
|
|
|
|
result.terrainsCount = 10;
|
|
|
|
result.artifactSlotsCount = 18;
|
|
|
|
result.buildingsCount = 40;
|
|
|
|
|
|
|
|
result.heroIdentifierInvalid = 0xff;
|
|
|
|
result.artifactIdentifierInvalid = 0xff;
|
|
|
|
result.creatureIdentifierInvalid = 0xff;
|
|
|
|
result.spellIdentifierInvalid = 0xff;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
MapFormatFeaturesH3M MapFormatFeaturesH3M::getFeaturesAB()
|
|
|
|
{
|
|
|
|
MapFormatFeaturesH3M result = getFeaturesROE();
|
|
|
|
result.levelAB = true;
|
|
|
|
|
|
|
|
result.factionsBytes = 2; // + Conflux
|
|
|
|
result.factionsCount = 9;
|
|
|
|
|
|
|
|
result.creaturesCount = 144; // + Conflux and new neutrals
|
|
|
|
|
|
|
|
result.heroesCount = 156; // + Conflux and campaign heroes
|
|
|
|
result.heroesPortraitsCount = 163;
|
|
|
|
result.heroesBytes = 20;
|
|
|
|
|
|
|
|
result.artifactsCount = 129; // + Armaggedon Blade and Vial of Dragon Blood
|
|
|
|
result.artifactsBytes = 17;
|
|
|
|
|
|
|
|
result.artifactIdentifierInvalid = 0xffff; // Now uses 2 bytes / object
|
|
|
|
result.creatureIdentifierInvalid = 0xffff; // Now uses 2 bytes / object
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
MapFormatFeaturesH3M MapFormatFeaturesH3M::getFeaturesSOD()
|
|
|
|
{
|
|
|
|
MapFormatFeaturesH3M result = getFeaturesAB();
|
|
|
|
result.levelSOD = true;
|
|
|
|
|
|
|
|
result.artifactsCount = 141; // + Combined artifacts
|
|
|
|
result.artifactsBytes = 18;
|
|
|
|
|
|
|
|
result.artifactSlotsCount = 19; // + MISC_5 slot
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
MapFormatFeaturesH3M MapFormatFeaturesH3M::getFeaturesWOG()
|
|
|
|
{
|
|
|
|
MapFormatFeaturesH3M result = getFeaturesSOD();
|
|
|
|
result.levelWOG = true;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-03 19:51:02 +02:00
|
|
|
MapFormatFeaturesH3M MapFormatFeaturesH3M::getFeaturesHOTA(uint8_t hotaVersion)
|
2023-04-02 18:56:10 +02:00
|
|
|
{
|
|
|
|
MapFormatFeaturesH3M result = getFeaturesSOD();
|
|
|
|
result.levelHOTA = true;
|
2023-04-03 19:51:02 +02:00
|
|
|
result.levelHOTA3 = hotaVersion == 3;
|
2023-04-02 18:56:10 +02:00
|
|
|
|
2023-04-03 19:51:02 +02:00
|
|
|
result.artifactsBytes = 21;
|
|
|
|
|
|
|
|
result.terrainsCount = 12; // +Highlands +Wasteland
|
|
|
|
result.skillsCount = 29; // + Interference
|
2023-04-03 17:56:49 +02:00
|
|
|
result.factionsCount = 10; // + Cove
|
|
|
|
result.creaturesCount = 162; // + Cove + neutrals
|
|
|
|
result.artifactsCount = 161; // + HotA artifacts
|
|
|
|
|
|
|
|
result.heroesBytes = 24;
|
|
|
|
result.heroesCount = 179; // + Cove
|
|
|
|
result.heroesPortraitsCount = 186; // + Cove
|
|
|
|
|
2023-04-02 18:56:10 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|