mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-14 10:12:59 +02:00
117 lines
2.9 KiB
C++
117 lines
2.9 KiB
C++
|
/*
|
||
|
* 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"
|
||
|
#include "CMap.h"
|
||
|
|
||
|
VCMI_LIB_NAMESPACE_BEGIN
|
||
|
|
||
|
MapFormatFeaturesH3M MapFormatFeaturesH3M::find(EMapFormat format)
|
||
|
{
|
||
|
switch (format)
|
||
|
{
|
||
|
case EMapFormat::ROE: return getFeaturesROE();
|
||
|
case EMapFormat::AB: return getFeaturesAB();
|
||
|
case EMapFormat::SOD: return getFeaturesSOD();
|
||
|
case EMapFormat::WOG: return getFeaturesWOG();
|
||
|
case EMapFormat::HOTA: return getFeaturesHOTA();
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
MapFormatFeaturesH3M MapFormatFeaturesH3M::getFeaturesHOTA()
|
||
|
{
|
||
|
MapFormatFeaturesH3M result = getFeaturesSOD();
|
||
|
result.levelHOTA = true;
|
||
|
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
VCMI_LIB_NAMESPACE_END
|