2011-12-14 00:23:17 +03:00
|
|
|
#include "StdInc.h"
|
2007-06-10 21:04:15 +03:00
|
|
|
#include "CBuildingHandler.h"
|
2011-12-14 00:23:17 +03:00
|
|
|
|
|
|
|
#include "GameConstants.h"
|
2010-08-02 17:29:30 +03:00
|
|
|
|
2009-04-15 17:03:31 +03:00
|
|
|
/*
|
|
|
|
* CBuildingHandler.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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-08-03 14:36:52 +03:00
|
|
|
int CBuildingHandler::campToERMU( int camp, int townType, std::set<si32> builtBuildings )
|
2010-08-02 17:29:30 +03:00
|
|
|
{
|
|
|
|
using namespace boost::assign;
|
|
|
|
static const std::vector<int> campToERMU = list_of(11)(12)(13)(7)(8)(9)(5)(16)(14)(15)(-1)(0)(1)(2)(3)(4)
|
|
|
|
(6)(26)(17)(21)(22)(23)
|
|
|
|
; //creature generators with banks - handled separately
|
|
|
|
if (camp < campToERMU.size())
|
|
|
|
{
|
|
|
|
return campToERMU[camp];
|
|
|
|
}
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
static const std::vector<int> hordeLvlsPerTType[GameConstants::F_NUMBER] = {list_of(2), list_of(1), list_of(1)(4), list_of(0)(2),
|
2010-08-02 17:29:30 +03:00
|
|
|
list_of(0), list_of(0), list_of(0), list_of(0), list_of(0)};
|
|
|
|
|
|
|
|
int curPos = campToERMU.size();
|
|
|
|
for (int i=0; i<7; ++i)
|
|
|
|
{
|
|
|
|
if(camp == curPos) //non-upgraded
|
|
|
|
return 30 + i;
|
|
|
|
curPos++;
|
|
|
|
if(camp == curPos) //upgraded
|
|
|
|
return 37 + i;
|
|
|
|
curPos++;
|
|
|
|
//horde building
|
|
|
|
if (vstd::contains(hordeLvlsPerTType[townType], i))
|
|
|
|
{
|
|
|
|
if (camp == curPos)
|
|
|
|
{
|
|
|
|
if (hordeLvlsPerTType[townType][0] == i)
|
|
|
|
{
|
2010-08-03 14:36:52 +03:00
|
|
|
if(vstd::contains(builtBuildings, 37 + hordeLvlsPerTType[townType][0])) //if upgraded dwelling is built
|
|
|
|
return 19;
|
|
|
|
else //upgraded dwelling not presents
|
|
|
|
return 18;
|
2010-08-02 17:29:30 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-08-03 14:36:52 +03:00
|
|
|
if(hordeLvlsPerTType[townType].size() > 1)
|
|
|
|
{
|
|
|
|
if(vstd::contains(builtBuildings, 37 + hordeLvlsPerTType[townType][1])) //if upgraded dwelling is built
|
|
|
|
return 25;
|
|
|
|
else //upgraded dwelling not presents
|
|
|
|
return 24;
|
|
|
|
}
|
2010-08-02 17:29:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
curPos++;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
return -1; //not found
|
|
|
|
}
|
|
|
|
|