1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00
vcmi/lib/CCreatureSet.cpp

542 lines
12 KiB
C++
Raw Normal View History

2010-04-02 05:23:22 +03:00
#define VCMI_DLL
#include "CCreatureSet.h"
#include "CCreatureHandler.h"
2010-04-02 05:23:22 +03:00
#include "VCMI_Lib.h"
#include <assert.h>
#include "CObjectHandler.h"
#include "IGameCallback.h"
#include "CGameState.h"
#include "CGeneralTextHandler.h"
#include <sstream>
2010-04-02 05:23:22 +03:00
const CStackInstance &CCreatureSet::operator[](TSlot slot) const
2010-04-02 05:23:22 +03:00
{
2011-01-21 04:36:30 +02:00
TSlots::const_iterator i = stacks.find(slot);
if (i != stacks.end())
return *i->second;
2010-04-02 05:23:22 +03:00
else
throw std::string("That slot is empty!");
}
const CCreature* CCreatureSet::getCreature(TSlot slot) const
2010-04-02 05:23:22 +03:00
{
2011-01-21 04:36:30 +02:00
TSlots::const_iterator i = stacks.find(slot);
if (i != stacks.end())
return i->second->type;
2010-04-02 05:23:22 +03:00
else
return NULL;
}
bool CCreatureSet::setCreature(TSlot slot, TCreature type, TQuantity quantity) /*slots 0 to 6 */
{
if(slot > 6 || slot < 0)
{
tlog1 << "Cannot set slot " << slot << std::endl;
2010-04-02 05:23:22 +03:00
return false;
}
if(!quantity)
{
tlog2 << "Using set creature to delete stack?\n";
eraseStack(slot);
return true;
}
2011-01-21 04:36:30 +02:00
if(vstd::contains(stacks, slot)) //remove old creature
eraseStack(slot);
putStack(slot, new CStackInstance(type, quantity));
return true;
2010-04-02 05:23:22 +03:00
}
TSlot CCreatureSet::getSlotFor(TCreature creature, ui32 slotsAmount/*=7*/) const /*returns -1 if no slot available */
{
return getSlotFor(VLC->creh->creatures[creature], slotsAmount);
}
TSlot CCreatureSet::getSlotFor(const CCreature *c, ui32 slotsAmount/*=ARMY_SIZE*/) const
{
assert(c->valid());
2011-01-21 04:36:30 +02:00
for(TSlots::const_iterator i=stacks.begin(); i!=stacks.end(); ++i)
2010-04-02 05:23:22 +03:00
{
assert(i->second->type->valid());
if(i->second->type == c)
2010-04-02 05:23:22 +03:00
{
return i->first; //if there is already such creature we return its slot id
}
}
for(ui32 i=0; i<slotsAmount; i++)
{
2011-01-21 04:36:30 +02:00
if(stacks.find(i) == stacks.end())
2010-04-02 05:23:22 +03:00
{
return i; //return first free slot
}
}
return -1; //no slot available
}
int CCreatureSet::getStackCount(TSlot slot) const
2010-04-02 05:23:22 +03:00
{
2011-01-21 04:36:30 +02:00
TSlots::const_iterator i = stacks.find(slot);
if (i != stacks.end())
return i->second->count;
2010-04-02 05:23:22 +03:00
else
return 0; //TODO? consider issuing a warning
}
bool CCreatureSet::mergableStacks(std::pair<TSlot, TSlot> &out, TSlot preferable /*= -1*/) const /*looks for two same stacks, returns slot positions */
2010-04-02 05:23:22 +03:00
{
//try to match creature to our preferred stack
2011-01-21 04:36:30 +02:00
if(preferable >= 0 && vstd::contains(stacks, preferable))
2010-04-02 05:23:22 +03:00
{
2011-01-21 04:36:30 +02:00
const CCreature *cr = stacks.find(preferable)->second->type;
for(TSlots::const_iterator j=stacks.begin(); j!=stacks.end(); ++j)
2010-04-02 05:23:22 +03:00
{
if(cr == j->second->type && j->first != preferable)
2010-04-02 05:23:22 +03:00
{
out.first = preferable;
out.second = j->first;
return true;
}
}
}
2011-01-21 04:36:30 +02:00
for(TSlots::const_iterator i=stacks.begin(); i!=stacks.end(); ++i)
2010-04-02 05:23:22 +03:00
{
2011-01-21 04:36:30 +02:00
for(TSlots::const_iterator j=stacks.begin(); j!=stacks.end(); ++j)
2010-04-02 05:23:22 +03:00
{
if(i->second->type == j->second->type && i->first != j->first)
2010-04-02 05:23:22 +03:00
{
out.first = i->first;
out.second = j->first;
return true;
}
}
}
return false;
}
void CCreatureSet::sweep()
{
2011-01-21 04:36:30 +02:00
for(TSlots::iterator i=stacks.begin(); i!=stacks.end(); ++i)
2010-04-02 05:23:22 +03:00
{
if(!i->second->count)
2010-04-02 05:23:22 +03:00
{
2011-01-21 04:36:30 +02:00
stacks.erase(i);
2010-04-02 05:23:22 +03:00
sweep();
break;
}
}
}
void CCreatureSet::addToSlot(TSlot slot, TCreature cre, TQuantity count, bool allowMerging/* = true*/)
2010-04-02 05:23:22 +03:00
{
const CCreature *c = VLC->creh->creatures[cre];
2011-01-21 04:36:30 +02:00
if(!vstd::contains(stacks, slot))
{
setCreature(slot, cre, count);
}
else if(getCreature(slot) == c && allowMerging) //that slot was empty or contained same type creature
{
setStackCount(slot, getStackCount(slot) + count);
}
else
{
tlog1 << "Failed adding to slot!\n";
}
2010-04-02 05:23:22 +03:00
}
void CCreatureSet::addToSlot(TSlot slot, CStackInstance *stack, bool allowMerging/* = true*/)
2010-04-02 05:23:22 +03:00
{
assert(stack->valid(true));
2011-01-21 04:36:30 +02:00
if(!vstd::contains(stacks, slot))
{
putStack(slot, stack);
}
else if(allowMerging && stack->type == getCreature(slot))
{
joinStack(slot, stack);
}
else
{
tlog1 << "Cannot add to slot " << slot << " stack " << *stack << std::endl;
}
2010-04-02 05:23:22 +03:00
}
bool CCreatureSet::validTypes(bool allowUnrandomized /*= false*/) const
{
2011-01-21 04:36:30 +02:00
for(TSlots::const_iterator i=stacks.begin(); i!=stacks.end(); ++i)
2010-04-02 05:23:22 +03:00
{
if(!i->second->valid(allowUnrandomized))
return false;
2010-04-02 05:23:22 +03:00
}
return true;
}
bool CCreatureSet::slotEmpty(TSlot slot) const
{
2011-01-21 04:36:30 +02:00
return !vstd::contains(stacks, slot);
}
bool CCreatureSet::needsLastStack() const
{
return false;
}
int CCreatureSet::getArmyStrength() const
{
int ret = 0;
2011-01-21 04:36:30 +02:00
for(TSlots::const_iterator i = stacks.begin(); i != stacks.end(); i++)
ret += i->second->type->AIValue * i->second->count;
return ret;
}
ui64 CCreatureSet::getPower (TSlot slot) const
{
return getCreature(slot)->AIValue * getStackCount(slot);
}
std::string CCreatureSet::getRoughAmount (TSlot slot) const
{
return VLC->generaltexth->arraytxt[174 + 3*CCreature::getQuantityID(getStackCount(slot))];
}
int CCreatureSet::stacksCount() const
{
2011-01-21 04:36:30 +02:00
return stacks.size();
}
void CCreatureSet::setFormation(bool tight)
{
formation = tight;
}
void CCreatureSet::setStackCount(TSlot slot, TQuantity count)
{
2011-01-21 04:36:30 +02:00
assert(vstd::contains(stacks, slot));
assert(count > 0);
2011-01-21 04:36:30 +02:00
stacks[slot]->count = count;
}
void CCreatureSet::clear()
{
2011-01-21 04:36:30 +02:00
while(!stacks.empty())
{
2011-01-21 04:36:30 +02:00
eraseStack(stacks.begin()->first);
}
}
const CStackInstance& CCreatureSet::getStack(TSlot slot) const
{
2011-01-21 04:36:30 +02:00
assert(vstd::contains(stacks, slot));
return *stacks.find(slot)->second;
}
void CCreatureSet::eraseStack(TSlot slot)
{
2011-01-21 04:36:30 +02:00
assert(vstd::contains(stacks, slot));
delNull(stacks[slot]);
stacks.erase(slot);
}
bool CCreatureSet::contains(const CStackInstance *stack) const
{
if(!stack)
return false;
2011-01-21 04:36:30 +02:00
for(TSlots::const_iterator i = stacks.begin(); i != stacks.end(); ++i)
if(i->second == stack)
return true;
return false;
}
2010-11-20 19:36:02 +02:00
TSlot CCreatureSet::findStack(const CStackInstance *stack) const
{
if(!stack)
return -1;
2011-01-21 04:36:30 +02:00
for(TSlots::const_iterator i = stacks.begin(); i != stacks.end(); ++i)
if(i->second == stack)
2010-11-20 19:36:02 +02:00
return i->first;
return -1;
}
CArmedInstance * CCreatureSet::castToArmyObj()
{
return dynamic_cast<CArmedInstance *>(this);
}
void CCreatureSet::putStack(TSlot slot, CStackInstance *stack)
{
2011-01-21 04:36:30 +02:00
assert(!vstd::contains(stacks, slot));
stacks[slot] = stack;
stack->setArmyObj(castToArmyObj());
}
void CCreatureSet::joinStack(TSlot slot, CStackInstance * stack)
{
const CCreature *c = getCreature(slot);
assert(c == stack->type);
assert(c);
//TODO move stuff
changeStackCount(slot, stack->count);
delNull(stack);
}
void CCreatureSet::changeStackCount(TSlot slot, TQuantity toAdd)
{
setStackCount(slot, getStackCount(slot) + toAdd);
}
CCreatureSet::CCreatureSet()
{
formation = false;
}
CCreatureSet::CCreatureSet(const CCreatureSet&)
{
assert(0);
}
CCreatureSet::~CCreatureSet()
{
clear();
}
void CCreatureSet::setToArmy(CSimpleArmy &src)
{
clear();
while(src)
{
TSimpleSlots::iterator i = src.army.begin();
assert(i->second.type);
assert(i->second.count);
putStack(i->first, new CStackInstance(i->second.type, i->second.count));
src.army.erase(i);
}
}
CStackInstance * CCreatureSet::detachStack(TSlot slot)
{
2011-01-21 04:36:30 +02:00
assert(vstd::contains(stacks, slot));
CStackInstance *ret = stacks[slot];
if(CArmedInstance *armedObj = castToArmyObj())
{
ret->setArmyObj(NULL); //detaches from current armyobj
}
assert(!ret->armyObj); //we failed detaching?
2011-01-21 04:36:30 +02:00
stacks.erase(slot);
return ret;
}
void CCreatureSet::setStackType(TSlot slot, const CCreature *type)
{
2011-01-21 04:36:30 +02:00
assert(vstd::contains(stacks, slot));
CStackInstance *s = stacks[slot];
s->setType(type->idNumber);
}
bool CCreatureSet::canBeMergedWith(const CCreatureSet &cs, bool allowMergingStacks) const
{
if(!allowMergingStacks)
{
int freeSlots = stacksCount() - ARMY_SIZE;
std::set<const CCreature*> cresToAdd;
2011-01-21 04:36:30 +02:00
for(TSlots::const_iterator i = cs.stacks.begin(); i != cs.stacks.end(); i++)
{
TSlot dest = getSlotFor(i->second->type);
if(dest < 0 || hasStackAtSlot(dest))
cresToAdd.insert(i->second->type);
}
return cresToAdd.size() <= freeSlots;
}
else
{
std::set<const CCreature*> cres;
//get types of creatures that need their own slot
2011-01-21 04:36:30 +02:00
for(TSlots::const_iterator i = cs.stacks.begin(); i != cs.stacks.end(); i++)
cres.insert(i->second->type);
2011-01-21 04:36:30 +02:00
for(TSlots::const_iterator i = stacks.begin(); i != stacks.end(); i++)
cres.insert(i->second->type);
return cres.size() <= ARMY_SIZE;
}
}
bool CCreatureSet::hasStackAtSlot(TSlot slot) const
{
2011-01-21 04:36:30 +02:00
return vstd::contains(stacks, slot);
}
CCreatureSet & CCreatureSet::operator=(const CCreatureSet&cs)
{
assert(0);
2010-12-06 01:26:56 +02:00
return *this;
}
2010-04-02 05:23:22 +03:00
CStackInstance::CStackInstance()
: armyObj(_armyObj)
2010-04-02 05:23:22 +03:00
{
init();
}
CStackInstance::CStackInstance(TCreature id, TQuantity Count)
: armyObj(_armyObj)
2010-04-02 05:23:22 +03:00
{
init();
setType(id);
count = Count;
}
CStackInstance::CStackInstance(const CCreature *cre, TQuantity Count)
: armyObj(_armyObj)
2010-04-02 05:23:22 +03:00
{
init();
setType(cre);
2010-04-02 05:23:22 +03:00
count = Count;
}
void CStackInstance::init()
{
experience = 0;
count = 0;
type = NULL;
idRand = -1;
_armyObj = NULL;
nodeType = STACK;
2010-04-02 05:23:22 +03:00
}
int CStackInstance::getQuantityID() const
{
return CCreature::getQuantityID(count);
}
void CStackInstance::setType(int creID)
{
setType(VLC->creh->creatures[creID]);
}
void CStackInstance::setType(const CCreature *c)
2010-04-02 05:23:22 +03:00
{
if(type)
detachFrom(const_cast<CCreature*>(type));
type = c;
attachTo(const_cast<CCreature*>(type));
}
void CStackInstance::setArmyObj(const CArmedInstance *ArmyObj)
{
if(_armyObj)
detachFrom(const_cast<CArmedInstance*>(_armyObj));
_armyObj = ArmyObj;
if(ArmyObj)
{
attachTo(const_cast<CArmedInstance*>(_armyObj));
}
}
// void CStackInstance::getParents(TCNodes &out, const CBonusSystemNode *source /*= NULL*/) const
// {
// out.insert(type);
//
// if(source && source != this) //we should be root, if not - do not inherit anything
// return;
//
// if(armyObj)
// out.insert(armyObj);
// else
// out.insert(&IObjectInterface::cb->gameState()->globalEffects);
// }
std::string CStackInstance::getQuantityTXT(bool capitalized /*= true*/) const
{
return VLC->generaltexth->arraytxt[174 + getQuantityID()*3 + 2 - capitalized];
}
bool CStackInstance::valid(bool allowUnrandomized) const
{
bool isRand = (idRand != -1);
if(!isRand)
{
return (type && type == VLC->creh->creatures[type->idNumber]);
}
else
return allowUnrandomized;
}
CStackInstance::~CStackInstance()
{
}
std::string CStackInstance::nodeName() const
{
std::ostringstream oss;
oss << "Stack of " << count << " creatures of ";
if(type)
oss << type->namePl;
else if(idRand)
oss << "[no type, idRand=" << idRand << "]";
else
oss << "[UNDEFINED TYPE]";
return oss.str();
}
CStackBasicDescriptor::CStackBasicDescriptor()
{
type = NULL;
count = -1;
}
CStackBasicDescriptor::CStackBasicDescriptor(TCreature id, TQuantity Count)
: type (VLC->creh->creatures[id]), count(Count)
{
}
CStackBasicDescriptor::CStackBasicDescriptor(const CCreature *c, TQuantity Count)
: type(c), count(Count)
{
}
DLL_EXPORT std::ostream & operator<<(std::ostream & str, const CStackInstance & sth)
{
if(!sth.valid(true))
str << "an invalid stack!";
str << "stack with " << sth.count << " of ";
if(sth.type)
str << sth.type->namePl;
else
str << sth.idRand;
return str;
}
void CSimpleArmy::clear()
{
army.clear();
}
CSimpleArmy::operator bool() const
{
return army.size();
}
bool CSimpleArmy::setCreature(TSlot slot, TCreature cre, TQuantity count)
{
assert(!vstd::contains(army, slot));
army[slot] = CStackBasicDescriptor(cre, count);
return true;
2010-04-02 05:23:22 +03:00
}