2008-06-17 20:48:32 +03:00
|
|
|
#define VCMI_DLL
|
2008-01-09 19:21:31 +02:00
|
|
|
#include "../stdafx.h"
|
2007-06-12 12:33:20 +03:00
|
|
|
#include "CObjectHandler.h"
|
2008-06-13 11:16:51 +03:00
|
|
|
#include "CDefObjInfoHandler.h"
|
2007-08-29 15:18:31 +03:00
|
|
|
#include "CLodHandler.h"
|
2008-11-28 03:36:34 +02:00
|
|
|
#include "CGeneralTextHandler.h"
|
2007-10-26 20:55:33 +03:00
|
|
|
#include "CDefObjInfoHandler.h"
|
2007-11-19 00:58:28 +02:00
|
|
|
#include "CHeroHandler.h"
|
2008-11-11 17:17:58 +02:00
|
|
|
#include "CSpellHandler.h"
|
2008-12-22 19:48:41 +02:00
|
|
|
#include <boost/bind.hpp>
|
2007-11-24 00:33:55 +02:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
2009-02-05 11:49:45 +02:00
|
|
|
#include <boost/lexical_cast.hpp>
|
2008-10-26 22:58:34 +02:00
|
|
|
#include <boost/random/linear_congruential.hpp>
|
2008-04-14 20:45:01 +03:00
|
|
|
#include "CTownHandler.h"
|
2008-06-08 03:58:29 +03:00
|
|
|
#include "CArtHandler.h"
|
2008-06-17 20:48:32 +03:00
|
|
|
#include "../lib/VCMI_Lib.h"
|
2008-12-22 19:48:41 +02:00
|
|
|
#include "../lib/IGameCallback.h"
|
|
|
|
#include "../CGameState.h"
|
|
|
|
#include "../lib/NetPacks.h"
|
2009-02-08 08:42:15 +02:00
|
|
|
#include "../StartInfo.h"
|
2009-02-20 12:36:15 +02:00
|
|
|
#include "../map.h"
|
2008-12-22 19:48:41 +02:00
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
std::map<int,std::map<int, std::vector<int> > > CGTeleport::objs;
|
2008-12-22 19:48:41 +02:00
|
|
|
IGameCallback * IObjectInterface::cb = NULL;
|
2008-06-13 11:16:51 +03:00
|
|
|
DLL_EXPORT void loadToIt(std::string &dest, std::string &src, int &iter, int mode);
|
2008-06-17 20:48:32 +03:00
|
|
|
extern CLodHandler * bitmaph;
|
2008-10-26 22:58:34 +02:00
|
|
|
extern boost::rand48 ran;
|
|
|
|
|
2008-12-22 19:48:41 +02:00
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
void IObjectInterface::onHeroVisit(const CGHeroInstance * h) const
|
2008-12-22 19:48:41 +02:00
|
|
|
{};
|
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
void IObjectInterface::onHeroLeave(const CGHeroInstance * h) const
|
2008-12-22 19:48:41 +02:00
|
|
|
{};
|
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
void IObjectInterface::newTurn () const
|
2008-12-22 19:48:41 +02:00
|
|
|
{};
|
|
|
|
|
|
|
|
IObjectInterface::~IObjectInterface()
|
|
|
|
{}
|
|
|
|
|
|
|
|
IObjectInterface::IObjectInterface()
|
|
|
|
{}
|
|
|
|
|
|
|
|
void IObjectInterface::initObj()
|
|
|
|
{}
|
|
|
|
|
2009-02-20 14:39:27 +02:00
|
|
|
void IObjectInterface::setProperty( ui8 what, ui32 val )
|
|
|
|
{}
|
|
|
|
|
2007-06-11 20:21:27 +03:00
|
|
|
void CObjectHandler::loadObjects()
|
|
|
|
{
|
2008-10-18 14:41:24 +03:00
|
|
|
tlog5 << "\t\tReading cregens \n";
|
2008-02-05 05:56:45 +02:00
|
|
|
cregens.resize(110); //TODO: hardcoded value - change
|
2008-12-23 15:59:03 +02:00
|
|
|
for(size_t i=0; i < cregens.size(); ++i)
|
|
|
|
{
|
2008-02-05 05:56:45 +02:00
|
|
|
cregens[i]=-1;
|
2008-12-23 15:59:03 +02:00
|
|
|
}
|
2008-02-05 05:56:45 +02:00
|
|
|
std::ifstream ifs("config/cregens.txt");
|
|
|
|
while(!ifs.eof())
|
|
|
|
{
|
|
|
|
int dw, cr;
|
|
|
|
ifs >> dw >> cr;
|
|
|
|
cregens[dw]=cr;
|
|
|
|
}
|
2008-03-01 00:14:53 +02:00
|
|
|
ifs.close();
|
|
|
|
ifs.clear();
|
2008-10-18 14:41:24 +03:00
|
|
|
tlog5 << "\t\tDone loading objects!\n";
|
2007-08-09 19:28:01 +03:00
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
int CGObjectInstance::getOwner() const
|
|
|
|
{
|
2007-11-19 00:58:28 +02:00
|
|
|
//if (state)
|
|
|
|
// return state->owner;
|
2008-08-02 18:08:03 +03:00
|
|
|
//else
|
2007-11-19 00:58:28 +02:00
|
|
|
return tempOwner; //won't have owner
|
|
|
|
}
|
|
|
|
|
2008-12-22 19:48:41 +02:00
|
|
|
CGObjectInstance::CGObjectInstance(): animPhaseShift(rand()%0xff)
|
|
|
|
{
|
|
|
|
pos = int3(-1,-1,-1);
|
|
|
|
//std::cout << "Tworze obiekt "<<this<<std::endl;
|
|
|
|
//state = new CLuaObjectScript();
|
|
|
|
ID = subID = id = -1;
|
|
|
|
defInfo = NULL;
|
|
|
|
info = NULL;
|
|
|
|
tempOwner = 254;
|
|
|
|
blockVisit = false;
|
|
|
|
}
|
|
|
|
CGObjectInstance::~CGObjectInstance()
|
|
|
|
{
|
|
|
|
//std::cout << "Usuwam obiekt "<<this<<std::endl;
|
|
|
|
//if (state)
|
|
|
|
// delete state;
|
|
|
|
//state=NULL;
|
|
|
|
}
|
2008-12-31 11:33:46 +02:00
|
|
|
//CGObjectInstance::CGObjectInstance(const CGObjectInstance & right)
|
|
|
|
//{
|
|
|
|
// pos = right.pos;
|
|
|
|
// ID = right.ID;
|
|
|
|
// subID = right.subID;
|
|
|
|
// id = right.id;
|
|
|
|
// defInfo = right.defInfo;
|
|
|
|
// info = right.info;
|
|
|
|
// blockVisit = right.blockVisit;
|
|
|
|
// //state = new CLuaObjectScript(right.state->);
|
|
|
|
// //*state = *right.state;
|
|
|
|
// //state = right.state;
|
|
|
|
// tempOwner = right.tempOwner;
|
|
|
|
//}
|
|
|
|
//CGObjectInstance& CGObjectInstance::operator=(const CGObjectInstance & right)
|
|
|
|
//{
|
|
|
|
// pos = right.pos;
|
|
|
|
// ID = right.ID;
|
|
|
|
// subID = right.subID;
|
|
|
|
// id = right.id;
|
|
|
|
// defInfo = right.defInfo;
|
|
|
|
// info = right.info;
|
|
|
|
// blockVisit = right.blockVisit;
|
|
|
|
// //state = new CLuaObjectScript();
|
|
|
|
// //*state = *right.state;
|
|
|
|
// tempOwner = right.tempOwner;
|
|
|
|
// return *this;
|
|
|
|
//}
|
2008-12-22 19:48:41 +02:00
|
|
|
|
|
|
|
const std::string & CGObjectInstance::getHoverText() const
|
|
|
|
{
|
|
|
|
return hoverName;
|
|
|
|
}
|
2007-11-19 00:58:28 +02:00
|
|
|
void CGObjectInstance::setOwner(int ow)
|
|
|
|
{
|
|
|
|
//if (state)
|
|
|
|
// state->owner = ow;
|
|
|
|
//else
|
|
|
|
tempOwner = ow;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
int CGObjectInstance::getWidth() const//returns width of object graphic in tiles
|
|
|
|
{
|
2008-06-17 20:48:32 +03:00
|
|
|
return defInfo->width;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
int CGObjectInstance::getHeight() const //returns height of object graphic in tiles
|
|
|
|
{
|
2009-03-12 01:25:59 +02:00
|
|
|
return defInfo->height;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
2008-09-26 17:16:01 +03:00
|
|
|
bool CGObjectInstance::visitableAt(int x, int y) const //returns true if object is visitable at location (x, y) form left top tile of image (x, y in tiles)
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2009-03-12 01:25:59 +02:00
|
|
|
if(defInfo==NULL)
|
|
|
|
{
|
|
|
|
tlog2 << "Warning: VisitableAt for obj "<<id<<": NULL defInfo!\n";
|
2007-10-27 22:38:48 +03:00
|
|
|
return false;
|
2009-03-12 01:25:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if((defInfo->visitMap[y] >> (7-x) ) & 1)
|
|
|
|
{
|
2007-08-09 19:28:01 +03:00
|
|
|
return true;
|
2009-03-12 01:25:59 +02:00
|
|
|
}
|
|
|
|
|
2007-10-27 22:38:48 +03:00
|
|
|
return false;
|
|
|
|
}
|
2008-09-26 17:16:01 +03:00
|
|
|
bool CGObjectInstance::blockingAt(int x, int y) const
|
|
|
|
{
|
|
|
|
if(x<0 || y<0 || x>=getWidth() || y>=getHeight() || defInfo==NULL)
|
|
|
|
return false;
|
|
|
|
if((defInfo->blockMap[y+6-getHeight()] >> (7-(8-getWidth()+x) )) & 1)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
bool CGObjectInstance::operator<(const CGObjectInstance & cmp) const //screen printing priority comparing
|
|
|
|
{
|
2007-11-24 00:33:55 +02:00
|
|
|
if(defInfo->printPriority==1 && cmp.defInfo->printPriority==0)
|
2007-10-27 22:38:48 +03:00
|
|
|
return true;
|
2007-11-24 00:33:55 +02:00
|
|
|
if(cmp.defInfo->printPriority==1 && defInfo->printPriority==0)
|
2007-08-09 19:28:01 +03:00
|
|
|
return false;
|
|
|
|
if(this->pos.y<cmp.pos.y)
|
|
|
|
return true;
|
|
|
|
if(this->pos.y>cmp.pos.y)
|
|
|
|
return false;
|
2009-02-06 16:15:45 +02:00
|
|
|
if(cmp.ID==HEROI_TYPE && ID!=HEROI_TYPE)
|
2008-02-23 21:20:41 +02:00
|
|
|
return true;
|
2009-02-06 16:15:45 +02:00
|
|
|
if(cmp.ID!=HEROI_TYPE && ID==HEROI_TYPE)
|
2008-02-23 21:20:41 +02:00
|
|
|
return false;
|
2007-10-28 13:34:33 +02:00
|
|
|
if(!defInfo->isVisitable() && cmp.defInfo->isVisitable())
|
2007-08-09 19:28:01 +03:00
|
|
|
return true;
|
2007-10-28 13:34:33 +02:00
|
|
|
if(!cmp.defInfo->isVisitable() && defInfo->isVisitable())
|
2007-08-09 19:28:01 +03:00
|
|
|
return false;
|
|
|
|
if(this->pos.x<cmp.pos.x)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
2007-10-26 20:55:33 +03:00
|
|
|
|
2008-12-22 19:48:41 +02:00
|
|
|
void CGObjectInstance::initObj()
|
|
|
|
{
|
|
|
|
}
|
2008-08-02 18:08:03 +03:00
|
|
|
|
2009-02-20 14:39:27 +02:00
|
|
|
void CGObjectInstance::setProperty( ui8 what, ui32 val )
|
|
|
|
{
|
|
|
|
switch(what)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
tempOwner = val;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
blockVisit = val;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
ID = val;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
setPropertyDer(what, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGObjectInstance::setPropertyDer( ui8 what, ui32 val )
|
|
|
|
{}
|
|
|
|
|
2009-03-12 01:25:59 +02:00
|
|
|
int3 CGObjectInstance::getSightCenter() const
|
|
|
|
{
|
|
|
|
//return vistiable tile if possible
|
|
|
|
for(int i=0; i < 8; i++)
|
|
|
|
for(int j=0; j < 6; j++)
|
|
|
|
if(visitableAt(i,j))
|
|
|
|
return(pos + int3(i-7, j-5, 0));
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CGObjectInstance::getSightRadious() const
|
|
|
|
{
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
2008-12-22 19:48:41 +02:00
|
|
|
int lowestSpeed(const CGHeroInstance * chi)
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
if(!chi->army.slots.size())
|
|
|
|
{
|
|
|
|
tlog1 << "Error! Hero " << chi->id << " ("<<chi->name<<") has no army!\n";
|
|
|
|
return 20;
|
|
|
|
}
|
|
|
|
std::map<si32,std::pair<ui32,si32> >::const_iterator i = chi->army.slots.begin();
|
|
|
|
ui32 ret = VLC->creh->creatures[(*i++).second.first].speed;
|
|
|
|
for (;i!=chi->army.slots.end();i++)
|
|
|
|
{
|
|
|
|
ret = std::min(ret,VLC->creh->creatures[(*i).second.first].speed);
|
|
|
|
}
|
|
|
|
return ret;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
|
2009-02-12 16:44:58 +02:00
|
|
|
unsigned int CGHeroInstance::getTileCost(const TerrainTile &dest, const TerrainTile &from) const
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2009-02-12 16:44:58 +02:00
|
|
|
//TODO: check if all creatures are on its native terrain and change cost appropriately
|
|
|
|
|
|
|
|
//base move cost
|
|
|
|
unsigned ret = 100;
|
|
|
|
|
|
|
|
//if there is road both on dest and src tiles - use road movement cost
|
|
|
|
if(dest.malle && from.malle)
|
2008-09-28 16:29:37 +03:00
|
|
|
{
|
2009-02-12 16:44:58 +02:00
|
|
|
int road = std::min(dest.malle,from.malle); //used road ID
|
|
|
|
switch(road)
|
2008-09-28 16:29:37 +03:00
|
|
|
{
|
2009-02-12 16:44:58 +02:00
|
|
|
case dirtRoad:
|
|
|
|
ret = 75;
|
2008-09-28 16:29:37 +03:00
|
|
|
break;
|
2009-02-12 16:44:58 +02:00
|
|
|
case grazvelRoad:
|
|
|
|
ret = 65;
|
2008-09-28 16:29:37 +03:00
|
|
|
break;
|
2009-02-12 16:44:58 +02:00
|
|
|
case cobblestoneRoad:
|
|
|
|
ret = 50;
|
2008-09-28 16:29:37 +03:00
|
|
|
break;
|
2009-02-12 16:44:58 +02:00
|
|
|
default:
|
|
|
|
tlog1 << "Unknown road type: " << road << "... Something wrong!\n";
|
2008-09-28 16:29:37 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-02-12 16:44:58 +02:00
|
|
|
else
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2009-02-12 16:44:58 +02:00
|
|
|
ret = std::max(type->heroClass->terrCosts[dest.tertype],type->heroClass->terrCosts[from.tertype]); //take cost of worse of two tiles
|
|
|
|
ret = std::max(ret - 25*unsigned(getSecSkillLevel(0)), 100u); //reduce 25% of terrain penalty for each pathfinding level
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
unsigned int CGHeroInstance::getLowestCreatureSpeed() const
|
2007-10-26 20:55:33 +03:00
|
|
|
{
|
2007-10-27 22:38:48 +03:00
|
|
|
unsigned int sl = 100;
|
2008-12-21 21:17:35 +02:00
|
|
|
for(size_t h=0; h < army.slots.size(); ++h)
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
if(VLC->creh->creatures[army.slots.find(h)->first].speed<sl)
|
|
|
|
sl = VLC->creh->creatures[army.slots.find(h)->first].speed;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
return sl;
|
|
|
|
}
|
|
|
|
int3 CGHeroInstance::convertPosition(int3 src, bool toh3m) //toh3m=true: manifest->h3m; toh3m=false: h3m->manifest
|
|
|
|
{
|
|
|
|
if (toh3m)
|
|
|
|
{
|
|
|
|
src.x+=1;
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
src.x-=1;
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int3 CGHeroInstance::getPosition(bool h3m) const //h3m=true - returns position of hero object; h3m=false - returns position of hero 'manifestation'
|
|
|
|
{
|
2008-12-23 15:59:03 +02:00
|
|
|
if (h3m)
|
|
|
|
{
|
2007-10-27 22:38:48 +03:00
|
|
|
return pos;
|
2008-12-23 15:59:03 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return convertPosition(pos,false);
|
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
2008-10-18 14:41:24 +03:00
|
|
|
|
2008-12-31 11:33:46 +02:00
|
|
|
si32 CGHeroInstance::manaLimit() const
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2008-10-18 14:41:24 +03:00
|
|
|
double modifier = 1.0;
|
|
|
|
switch(getSecSkillLevel(24)) //intelligence level
|
|
|
|
{
|
|
|
|
case 1: modifier+=0.25; break;
|
|
|
|
case 2: modifier+=0.5; break;
|
|
|
|
case 3: modifier+=1.0; break;
|
|
|
|
}
|
2009-03-07 00:25:19 +02:00
|
|
|
return si32(10*getPrimSkillLevel(3)*modifier);
|
2007-10-26 20:55:33 +03:00
|
|
|
}
|
2008-10-18 14:41:24 +03:00
|
|
|
//void CGHeroInstance::setPosition(int3 Pos, bool h3m) //as above, but sets position
|
|
|
|
//{
|
|
|
|
// if (h3m)
|
|
|
|
// pos = Pos;
|
|
|
|
// else
|
|
|
|
// pos = convertPosition(Pos,true);
|
|
|
|
//}
|
2007-10-26 20:55:33 +03:00
|
|
|
|
2007-10-27 22:38:48 +03:00
|
|
|
bool CGHeroInstance::canWalkOnSea() const
|
2007-10-26 20:55:33 +03:00
|
|
|
{
|
2007-10-27 22:38:48 +03:00
|
|
|
//TODO: write it - it should check if hero is flying, or something similiar
|
2007-10-26 20:55:33 +03:00
|
|
|
return false;
|
|
|
|
}
|
2008-09-29 14:03:30 +03:00
|
|
|
int CGHeroInstance::getPrimSkillLevel(int id) const
|
|
|
|
{
|
|
|
|
return primSkills[id];
|
|
|
|
}
|
2008-12-31 11:33:46 +02:00
|
|
|
ui8 CGHeroInstance::getSecSkillLevel(const int & ID) const
|
2008-02-25 01:06:27 +02:00
|
|
|
{
|
2008-12-21 21:17:35 +02:00
|
|
|
for(size_t i=0; i < secSkills.size(); ++i)
|
2008-02-25 01:06:27 +02:00
|
|
|
if(secSkills[i].first==ID)
|
|
|
|
return secSkills[i].second;
|
2008-09-28 16:29:37 +03:00
|
|
|
return 0;
|
2008-02-25 01:06:27 +02:00
|
|
|
}
|
2008-10-26 22:58:34 +02:00
|
|
|
int CGHeroInstance::maxMovePoints(bool onLand) const
|
|
|
|
{
|
|
|
|
int ret = 1270+70*lowestSpeed(this);
|
|
|
|
if (ret>2000)
|
|
|
|
ret=2000;
|
|
|
|
|
2009-03-07 00:25:19 +02:00
|
|
|
double bonus = 0;
|
2008-10-26 22:58:34 +02:00
|
|
|
if(onLand)
|
|
|
|
{
|
|
|
|
//logistics:
|
|
|
|
switch(getSecSkillLevel(2))
|
|
|
|
{
|
|
|
|
case 1:
|
2009-03-07 00:25:19 +02:00
|
|
|
bonus = 0.1;
|
2008-10-26 22:58:34 +02:00
|
|
|
break;
|
|
|
|
case 2:
|
2009-03-07 00:25:19 +02:00
|
|
|
bonus = 0.2;
|
2008-10-26 22:58:34 +02:00
|
|
|
break;
|
|
|
|
case 3:
|
2009-03-07 00:25:19 +02:00
|
|
|
bonus = 0.3;
|
2008-10-26 22:58:34 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//navigation:
|
|
|
|
switch(getSecSkillLevel(2))
|
|
|
|
{
|
|
|
|
case 1:
|
2009-03-07 00:25:19 +02:00
|
|
|
bonus = 0.5;
|
2008-10-26 22:58:34 +02:00
|
|
|
break;
|
|
|
|
case 2:
|
2009-03-07 00:25:19 +02:00
|
|
|
bonus = 1.0;
|
2008-10-26 22:58:34 +02:00
|
|
|
break;
|
|
|
|
case 3:
|
2009-03-07 00:25:19 +02:00
|
|
|
bonus = 1.5;
|
2008-10-26 22:58:34 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-03-07 00:25:19 +02:00
|
|
|
return int(ret + ret*bonus);
|
2008-10-26 22:58:34 +02:00
|
|
|
}
|
2008-08-20 22:02:48 +03:00
|
|
|
ui32 CGHeroInstance::getArtAtPos(ui16 pos) const
|
|
|
|
{
|
|
|
|
if(pos<19)
|
|
|
|
if(vstd::contains(artifWorn,pos))
|
|
|
|
return artifWorn.find(pos)->second;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
else
|
|
|
|
if(pos-19 < artifacts.size())
|
|
|
|
return artifacts[pos-19];
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
void CGHeroInstance::setArtAtPos(ui16 pos, int art)
|
|
|
|
{
|
|
|
|
if(art<0)
|
|
|
|
{
|
|
|
|
if(pos<19)
|
|
|
|
artifWorn.erase(pos);
|
|
|
|
else
|
2008-08-25 13:25:16 +03:00
|
|
|
artifacts -= artifacts[pos-19];
|
2008-08-20 22:02:48 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(pos<19)
|
|
|
|
artifWorn[pos] = art;
|
|
|
|
else
|
|
|
|
if(pos-19 < artifacts.size())
|
|
|
|
artifacts[pos-19] = art;
|
|
|
|
else
|
|
|
|
artifacts.push_back(art);
|
|
|
|
}
|
|
|
|
}
|
2008-09-28 16:29:37 +03:00
|
|
|
const CArtifact * CGHeroInstance::getArt(int pos) const
|
2008-06-08 03:58:29 +03:00
|
|
|
{
|
2008-08-20 22:02:48 +03:00
|
|
|
int id = getArtAtPos(pos);
|
|
|
|
if(id>=0)
|
|
|
|
return &VLC->arth->artifacts[id];
|
|
|
|
else
|
2008-06-11 04:53:57 +03:00
|
|
|
return NULL;
|
2008-06-08 03:58:29 +03:00
|
|
|
}
|
2008-11-11 17:17:58 +02:00
|
|
|
|
|
|
|
int CGHeroInstance::getSpellSecLevel(int spell) const
|
|
|
|
{
|
|
|
|
int bestslvl = 0;
|
|
|
|
if(VLC->spellh->spells[spell].air)
|
|
|
|
if(getSecSkillLevel(15) >= bestslvl)
|
|
|
|
{
|
|
|
|
bestslvl = getSecSkillLevel(15);
|
|
|
|
}
|
|
|
|
if(VLC->spellh->spells[spell].fire)
|
|
|
|
if(getSecSkillLevel(14) >= bestslvl)
|
|
|
|
{
|
|
|
|
bestslvl = getSecSkillLevel(14);
|
|
|
|
}
|
|
|
|
if(VLC->spellh->spells[spell].water)
|
|
|
|
if(getSecSkillLevel(16) >= bestslvl)
|
|
|
|
{
|
|
|
|
bestslvl = getSecSkillLevel(16);
|
|
|
|
}
|
|
|
|
if(VLC->spellh->spells[spell].earth)
|
|
|
|
if(getSecSkillLevel(17) >= bestslvl)
|
|
|
|
{
|
|
|
|
bestslvl = getSecSkillLevel(17);
|
|
|
|
}
|
|
|
|
return bestslvl;
|
|
|
|
}
|
|
|
|
|
2008-12-22 19:48:41 +02:00
|
|
|
CGHeroInstance::CGHeroInstance()
|
|
|
|
{
|
2009-03-12 20:06:02 +02:00
|
|
|
ID = HEROI_TYPE;
|
2008-12-22 19:48:41 +02:00
|
|
|
tacticFormationEnabled = inTownGarrison = false;
|
|
|
|
mana = movement = portrait = level = -1;
|
|
|
|
isStanding = true;
|
|
|
|
moveDir = 4;
|
|
|
|
exp = 0xffffffff;
|
|
|
|
visitedTown = NULL;
|
|
|
|
type = NULL;
|
|
|
|
secSkills.push_back(std::make_pair(-1, -1));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGHeroInstance::initHero(int SUBID)
|
|
|
|
{
|
|
|
|
subID = SUBID;
|
|
|
|
initHero();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGHeroInstance::initHero()
|
|
|
|
{
|
2009-03-12 20:06:02 +02:00
|
|
|
if(ID == HEROI_TYPE)
|
2009-02-14 21:12:40 +02:00
|
|
|
initHeroDefInfo();
|
2008-12-22 19:48:41 +02:00
|
|
|
if(!type)
|
|
|
|
type = VLC->heroh->heroes[subID];
|
|
|
|
artifWorn[16] = 3;
|
|
|
|
if(type->heroType % 2 == 1) //it's a magical hero
|
|
|
|
{
|
|
|
|
artifWorn[17] = 0; //give him spellbook
|
|
|
|
}
|
|
|
|
|
|
|
|
if(portrait < 0 || portrait == 255)
|
|
|
|
portrait = subID;
|
|
|
|
if((!primSkills.size()) || (getPrimSkillLevel(0)<0))
|
|
|
|
{
|
|
|
|
primSkills.resize(4);
|
|
|
|
primSkills[0] = type->heroClass->initialAttack;
|
|
|
|
primSkills[1] = type->heroClass->initialDefence;
|
|
|
|
primSkills[2] = type->heroClass->initialPower;
|
|
|
|
primSkills[3] = type->heroClass->initialKnowledge;
|
|
|
|
}
|
|
|
|
if(secSkills.size() == 1 && secSkills[0] == std::pair<ui8,ui8>(-1, -1)) //set secondary skills to default
|
|
|
|
secSkills = type->secSkillsInit;
|
|
|
|
if(mana < 0)
|
|
|
|
mana = manaLimit();
|
|
|
|
if (!name.length())
|
|
|
|
name = type->name;
|
|
|
|
if (exp == 0xffffffff)
|
|
|
|
{
|
|
|
|
exp=40+ (ran()) % 50;
|
|
|
|
level = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
level = VLC->heroh->level(exp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!army.slots.size()) //standard army//initial army
|
|
|
|
{
|
|
|
|
int pom, pom2=0;
|
|
|
|
for(int x=0;x<3;x++)
|
|
|
|
{
|
|
|
|
pom = (VLC->creh->nameToID[type->refTypeStack[x]]);
|
|
|
|
if(pom>=145 && pom<=149) //war machine
|
|
|
|
{
|
|
|
|
pom2++;
|
|
|
|
switch (pom)
|
|
|
|
{
|
|
|
|
case 145: //catapult
|
|
|
|
artifWorn[16] = 3;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
artifWorn[9+CArtHandler::convertMachineID(pom,true)] = CArtHandler::convertMachineID(pom,true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
army.slots[x-pom2].first = pom;
|
|
|
|
if((pom = (type->highStack[x]-type->lowStack[x])) > 0)
|
|
|
|
army.slots[x-pom2].second = (ran()%pom)+type->lowStack[x];
|
|
|
|
else
|
|
|
|
army.slots[x-pom2].second = +type->lowStack[x];
|
|
|
|
army.formation = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
hoverName = VLC->generaltexth->allTexts[15];
|
|
|
|
boost::algorithm::replace_first(hoverName,"%s",name);
|
|
|
|
boost::algorithm::replace_first(hoverName,"%s", type->heroClass->name);
|
|
|
|
}
|
|
|
|
|
2009-02-01 16:11:41 +02:00
|
|
|
void CGHeroInstance::initHeroDefInfo()
|
|
|
|
{
|
2009-03-12 20:06:02 +02:00
|
|
|
if(!defInfo || defInfo->id != HEROI_TYPE)
|
2009-02-01 16:11:41 +02:00
|
|
|
{
|
|
|
|
defInfo = new CGDefInfo();
|
2009-03-12 20:06:02 +02:00
|
|
|
defInfo->id = HEROI_TYPE;
|
2009-02-01 16:11:41 +02:00
|
|
|
defInfo->subid = subID;
|
|
|
|
defInfo->printPriority = 0;
|
|
|
|
defInfo->visitDir = 0xff;
|
|
|
|
}
|
|
|
|
for(int i=0;i<6;i++)
|
|
|
|
{
|
|
|
|
defInfo->blockMap[i]=255;
|
|
|
|
defInfo->visitMap[i]=0;
|
|
|
|
}
|
|
|
|
defInfo->handler=NULL;
|
|
|
|
defInfo->blockMap[5] = 253;
|
|
|
|
defInfo->visitMap[5] = 2;
|
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
CGHeroInstance::~CGHeroInstance()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CGHeroInstance::needsLastStack() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2008-12-27 03:01:59 +02:00
|
|
|
void CGHeroInstance::onHeroVisit(const CGHeroInstance * h) const
|
2008-12-22 19:48:41 +02:00
|
|
|
{
|
2009-03-12 20:06:02 +02:00
|
|
|
if (ID == HEROI_TYPE) //hero
|
2008-12-22 19:48:41 +02:00
|
|
|
{
|
2009-02-14 21:12:40 +02:00
|
|
|
//TODO: check for allies
|
|
|
|
if(tempOwner == h->tempOwner) //our hero
|
|
|
|
{
|
|
|
|
//exchange
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cb->startBattleI(
|
|
|
|
&h->army,
|
|
|
|
&army,
|
|
|
|
h->pos,
|
|
|
|
h,
|
|
|
|
this,
|
|
|
|
0);
|
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
}
|
2009-02-14 21:12:40 +02:00
|
|
|
else if(ID == 62) //prison
|
2008-12-22 19:48:41 +02:00
|
|
|
{
|
2009-02-14 21:12:40 +02:00
|
|
|
if(cb->getHeroCount(h->tempOwner,false) < 8) //free hero slot
|
|
|
|
{
|
2009-02-20 12:36:15 +02:00
|
|
|
cb->changeObjPos(id,pos+int3(1,0,0),0);
|
2009-03-12 20:06:02 +02:00
|
|
|
cb->setObjProperty(id,6,HEROI_TYPE); //set ID to 34
|
2009-02-14 21:12:40 +02:00
|
|
|
cb->giveHero(id,h->tempOwner); //recreates def and adds hero to player
|
|
|
|
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,102);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
}
|
|
|
|
else //already 8 wandering heroes
|
|
|
|
{
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,103);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string & CGHeroInstance::getBiography() const
|
|
|
|
{
|
|
|
|
if (biography.length())
|
|
|
|
return biography;
|
|
|
|
else
|
|
|
|
return VLC->generaltexth->hTxts[subID].biography;
|
|
|
|
}
|
|
|
|
void CGHeroInstance::initObj()
|
|
|
|
{
|
2008-12-27 03:01:59 +02:00
|
|
|
blockVisit = true;
|
2008-12-22 19:48:41 +02:00
|
|
|
}
|
2009-02-01 16:11:41 +02:00
|
|
|
|
2009-02-03 07:28:05 +02:00
|
|
|
int CGHeroInstance::getCurrentMorale( int stack, bool town ) const
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
std::vector<std::pair<int,std::string> > mods = getCurrentMoraleModifiers(stack,town);
|
|
|
|
for(int i=0; i < mods.size(); i++)
|
|
|
|
ret += mods[i].first;
|
2009-02-04 15:40:54 +02:00
|
|
|
if(ret > 3)
|
|
|
|
return 3;
|
|
|
|
if(ret < -3)
|
|
|
|
return -3;
|
2009-02-03 07:28:05 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::pair<int,std::string> > CGHeroInstance::getCurrentMoraleModifiers( int stack/*=-1*/, bool town/*=false*/ ) const
|
|
|
|
{
|
|
|
|
//TODO: check if stack is undead/mechanic/elemental => always neutrl morale
|
|
|
|
std::vector<std::pair<int,std::string> > ret;
|
|
|
|
|
|
|
|
//various morale bonuses (from buildings, artifacts, etc)
|
2009-02-04 15:40:54 +02:00
|
|
|
for(std::list<HeroBonus>::const_iterator i=bonuses.begin(); i != bonuses.end(); i++)
|
2009-02-05 11:49:45 +02:00
|
|
|
if(i->type == HeroBonus::MORALE || i->type == HeroBonus::MORALE_AND_LUCK)
|
2009-02-03 07:28:05 +02:00
|
|
|
ret.push_back(std::make_pair(i->val, i->description));
|
|
|
|
|
|
|
|
//leadership
|
|
|
|
if(getSecSkillLevel(6))
|
|
|
|
ret.push_back(std::make_pair(getSecSkillLevel(6),VLC->generaltexth->arraytxt[104+getSecSkillLevel(6)]));
|
|
|
|
|
2009-02-04 15:40:54 +02:00
|
|
|
//town structures
|
|
|
|
if(town && visitedTown)
|
|
|
|
{
|
|
|
|
if(visitedTown->subID == 0 && vstd::contains(visitedTown->builtBuildings,22)) //castle, brotherhood of sword built
|
|
|
|
ret.push_back(std::pair<int,std::string>(2,VLC->generaltexth->buildings[0][22].first + " +2"));
|
|
|
|
else if(vstd::contains(visitedTown->builtBuildings,5)) //tavern is built
|
|
|
|
ret.push_back(std::pair<int,std::string>(2,VLC->generaltexth->buildings[0][5].first + " +1"));
|
|
|
|
}
|
2009-02-03 07:28:05 +02:00
|
|
|
|
|
|
|
//number of alignments and presence of undead
|
|
|
|
if(stack>=0)
|
|
|
|
{
|
2009-02-04 15:40:54 +02:00
|
|
|
bool archangelInArmy = false;
|
2009-02-03 07:28:05 +02:00
|
|
|
std::set<si8> factions;
|
|
|
|
for(std::map<si32,std::pair<ui32,si32> >::const_iterator i=army.slots.begin(); i!=army.slots.end(); i++)
|
2009-02-04 15:40:54 +02:00
|
|
|
{
|
2009-02-03 07:28:05 +02:00
|
|
|
factions.insert(VLC->creh->creatures[i->second.first].faction);
|
2009-02-04 15:40:54 +02:00
|
|
|
if(i->second.first == 13)
|
|
|
|
archangelInArmy = true;
|
|
|
|
}
|
2009-02-03 07:28:05 +02:00
|
|
|
|
|
|
|
if(factions.size() == 1)
|
|
|
|
ret.push_back(std::pair<int,std::string>(1,VLC->generaltexth->arraytxt[115])); //All troops of one alignment +1
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(VLC->generaltexth->arraytxt[114].length() <= 100)
|
|
|
|
{
|
|
|
|
char buf[150];
|
|
|
|
std::sprintf(buf,VLC->generaltexth->arraytxt[114].c_str(),factions.size(),2-factions.size());
|
|
|
|
ret.push_back(std::pair<int,std::string>(2-factions.size(),buf)); //Troops of %d alignments %d
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret.push_back(std::pair<int,std::string>(2-factions.size(),"")); //Troops of %d alignments %d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(vstd::contains(factions,4))
|
|
|
|
ret.push_back(std::pair<int,std::string>(-1,VLC->generaltexth->arraytxt[116])); //Undead in group -1
|
2009-02-04 15:40:54 +02:00
|
|
|
|
|
|
|
if(archangelInArmy)
|
|
|
|
{
|
|
|
|
char buf[100];
|
|
|
|
sprintf(buf,VLC->generaltexth->arraytxt[117].c_str(),VLC->creh->creatures[13].namePl);
|
|
|
|
ret.push_back(std::pair<int,std::string>(-1,VLC->generaltexth->arraytxt[116])); //%s in group +1
|
|
|
|
}
|
2009-02-03 07:28:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-02-04 15:40:54 +02:00
|
|
|
int CGHeroInstance::getCurrentLuck( int stack/*=-1*/, bool town/*=false*/ ) const
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
std::vector<std::pair<int,std::string> > mods = getCurrentLuckModifiers(stack,town);
|
|
|
|
for(int i=0; i < mods.size(); i++)
|
|
|
|
ret += mods[i].first;
|
|
|
|
if(ret > 3)
|
|
|
|
return 3;
|
|
|
|
if(ret < -3)
|
|
|
|
return -3;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::pair<int,std::string> > CGHeroInstance::getCurrentLuckModifiers( int stack/*=-1*/, bool town/*=false*/ ) const
|
|
|
|
{
|
|
|
|
std::vector<std::pair<int,std::string> > ret;
|
|
|
|
|
|
|
|
//various morale bonuses (from buildings, artifacts, etc)
|
|
|
|
for(std::list<HeroBonus>::const_iterator i=bonuses.begin(); i != bonuses.end(); i++)
|
2009-02-05 11:49:45 +02:00
|
|
|
if(i->type == HeroBonus::LUCK || i->type == HeroBonus::MORALE_AND_LUCK)
|
2009-02-04 15:40:54 +02:00
|
|
|
ret.push_back(std::make_pair(i->val, i->description));
|
|
|
|
|
|
|
|
//luck skill
|
|
|
|
if(getSecSkillLevel(9))
|
|
|
|
ret.push_back(std::make_pair(getSecSkillLevel(9),VLC->generaltexth->arraytxt[73+getSecSkillLevel(9)]));
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
const HeroBonus * CGHeroInstance::getBonus( int from, int id ) const
|
|
|
|
{
|
|
|
|
for (std::list<HeroBonus>::const_iterator i=bonuses.begin(); i!=bonuses.end(); i++)
|
|
|
|
if(i->source == from && i->id == id)
|
|
|
|
return &*i;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-02-20 14:39:27 +02:00
|
|
|
void CGHeroInstance::setPropertyDer( ui8 what, ui32 val )
|
|
|
|
{
|
|
|
|
if(what == 3)
|
|
|
|
army.slots[0].second = val;
|
|
|
|
}
|
2009-03-12 01:25:59 +02:00
|
|
|
|
|
|
|
int3 CGHeroInstance::getSightCenter() const
|
|
|
|
{
|
|
|
|
return getPosition(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
int CGHeroInstance::getSightRadious() const
|
|
|
|
{
|
|
|
|
return 5 + getSecSkillLevel(3); //default + scouting
|
|
|
|
}
|
|
|
|
|
|
|
|
int CGTownInstance::getSightRadious() const //returns sight distance
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2009-03-12 01:25:59 +02:00
|
|
|
return 5;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
2008-02-18 23:14:28 +02:00
|
|
|
int CGTownInstance::fortLevel() const //0 - none, 1 - fort, 2 - citadel, 3 - castle
|
|
|
|
{
|
|
|
|
if((builtBuildings.find(9))!=builtBuildings.end())
|
|
|
|
return 3;
|
|
|
|
if((builtBuildings.find(8))!=builtBuildings.end())
|
|
|
|
return 2;
|
|
|
|
if((builtBuildings.find(7))!=builtBuildings.end())
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int CGTownInstance::hallLevel() const // -1 - none, 0 - village, 1 - town, 2 - city, 3 - capitol
|
|
|
|
{
|
|
|
|
if ((builtBuildings.find(13))!=builtBuildings.end())
|
|
|
|
return 3;
|
|
|
|
if ((builtBuildings.find(12))!=builtBuildings.end())
|
|
|
|
return 2;
|
|
|
|
if ((builtBuildings.find(11))!=builtBuildings.end())
|
|
|
|
return 1;
|
|
|
|
if ((builtBuildings.find(10))!=builtBuildings.end())
|
|
|
|
return 0;
|
|
|
|
return -1;
|
|
|
|
}
|
2008-08-20 09:57:53 +03:00
|
|
|
int CGTownInstance::mageGuildLevel() const
|
|
|
|
{
|
|
|
|
if ((builtBuildings.find(4))!=builtBuildings.end())
|
|
|
|
return 5;
|
|
|
|
if ((builtBuildings.find(3))!=builtBuildings.end())
|
|
|
|
return 4;
|
|
|
|
if ((builtBuildings.find(2))!=builtBuildings.end())
|
|
|
|
return 3;
|
|
|
|
if ((builtBuildings.find(1))!=builtBuildings.end())
|
|
|
|
return 2;
|
|
|
|
if ((builtBuildings.find(0))!=builtBuildings.end())
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
2008-06-03 16:15:34 +03:00
|
|
|
bool CGTownInstance::creatureDwelling(const int & level, bool upgraded) const
|
2008-04-04 20:30:53 +03:00
|
|
|
{
|
|
|
|
return builtBuildings.find(30+level+upgraded*7)!=builtBuildings.end();
|
|
|
|
}
|
2008-06-03 16:15:34 +03:00
|
|
|
int CGTownInstance::getHordeLevel(const int & HID) const//HID - 0 or 1; returns creature level or -1 if that horde structure is not present
|
2008-04-04 20:30:53 +03:00
|
|
|
{
|
2008-04-14 20:45:01 +03:00
|
|
|
return town->hordeLvl[HID];
|
2008-04-04 20:30:53 +03:00
|
|
|
}
|
2008-06-03 16:15:34 +03:00
|
|
|
int CGTownInstance::creatureGrowth(const int & level) const
|
2008-04-11 20:41:02 +03:00
|
|
|
{
|
2008-06-17 20:48:32 +03:00
|
|
|
int ret = VLC->creh->creatures[town->basicCreatures[level]].growth;
|
2008-04-14 20:45:01 +03:00
|
|
|
switch(fortLevel())
|
|
|
|
{
|
|
|
|
case 3:
|
|
|
|
ret*=2;break;
|
|
|
|
case 2:
|
|
|
|
ret*=(1.5); break;
|
|
|
|
}
|
2008-06-01 16:42:29 +03:00
|
|
|
if(builtBuildings.find(26)!=builtBuildings.end()) //grail
|
2008-06-17 20:48:32 +03:00
|
|
|
ret+=VLC->creh->creatures[town->basicCreatures[level]].growth;
|
2008-04-14 20:45:01 +03:00
|
|
|
if(getHordeLevel(0)==level)
|
|
|
|
if((builtBuildings.find(18)!=builtBuildings.end()) || (builtBuildings.find(19)!=builtBuildings.end()))
|
2008-06-17 20:48:32 +03:00
|
|
|
ret+=VLC->creh->creatures[town->basicCreatures[level]].hordeGrowth;
|
2008-04-14 20:45:01 +03:00
|
|
|
if(getHordeLevel(1)==level)
|
|
|
|
if((builtBuildings.find(24)!=builtBuildings.end()) || (builtBuildings.find(25)!=builtBuildings.end()))
|
2008-06-17 20:48:32 +03:00
|
|
|
ret+=VLC->creh->creatures[town->basicCreatures[level]].hordeGrowth;
|
2008-04-14 20:45:01 +03:00
|
|
|
return ret;
|
2008-04-11 20:41:02 +03:00
|
|
|
}
|
2008-02-18 23:14:28 +02:00
|
|
|
int CGTownInstance::dailyIncome() const
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
if ((builtBuildings.find(26))!=builtBuildings.end())
|
|
|
|
ret+=5000;
|
|
|
|
if ((builtBuildings.find(13))!=builtBuildings.end())
|
|
|
|
ret+=4000;
|
|
|
|
else if ((builtBuildings.find(12))!=builtBuildings.end())
|
|
|
|
ret+=2000;
|
|
|
|
else if ((builtBuildings.find(11))!=builtBuildings.end())
|
|
|
|
ret+=1000;
|
|
|
|
else if ((builtBuildings.find(10))!=builtBuildings.end())
|
|
|
|
ret+=500;
|
|
|
|
return ret;
|
|
|
|
}
|
2008-01-09 19:21:31 +02:00
|
|
|
bool CGTownInstance::hasFort() const
|
|
|
|
{
|
|
|
|
return (builtBuildings.find(7))!=builtBuildings.end();
|
|
|
|
}
|
2008-02-05 05:56:45 +02:00
|
|
|
bool CGTownInstance::hasCapitol() const
|
|
|
|
{
|
|
|
|
return (builtBuildings.find(13))!=builtBuildings.end();
|
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
CGTownInstance::CGTownInstance()
|
|
|
|
{
|
|
|
|
builded=-1;
|
|
|
|
destroyed=-1;
|
|
|
|
garrisonHero=NULL;
|
|
|
|
town=NULL;
|
2008-01-28 16:01:09 +02:00
|
|
|
visitingHero = NULL;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
|
2008-12-22 19:48:41 +02:00
|
|
|
CGTownInstance::~CGTownInstance()
|
|
|
|
{}
|
|
|
|
|
|
|
|
int CGTownInstance::spellsAtLevel(int level, bool checkGuild) const
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
if(checkGuild && mageGuildLevel() < level)
|
|
|
|
return 0;
|
|
|
|
int ret = 6 - level; //how many spells are available at this level
|
|
|
|
if(subID == 2 && vstd::contains(builtBuildings,22)) //magic library in Tower
|
|
|
|
ret++;
|
|
|
|
return ret;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
|
|
|
|
bool CGTownInstance::needsLastStack() const
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
if(garrisonHero)
|
|
|
|
return true;
|
|
|
|
else return false;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
void CGTownInstance::onHeroVisit(const CGHeroInstance * h) const
|
2008-02-07 20:45:22 +02:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
if(getOwner() != h->getOwner())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cb->heroVisitCastle(id,h->id);
|
2008-10-26 22:58:34 +02:00
|
|
|
}
|
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
void CGTownInstance::onHeroLeave(const CGHeroInstance * h) const
|
2008-10-26 22:58:34 +02:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
cb->stopHeroVisitCastle(id,h->id);
|
2008-10-26 22:58:34 +02:00
|
|
|
}
|
|
|
|
|
2008-12-22 19:48:41 +02:00
|
|
|
void CGTownInstance::initObj()
|
2008-10-26 22:58:34 +02:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
MetaString ms;
|
|
|
|
ms << name << ", " << town->Name();
|
2008-12-27 03:01:59 +02:00
|
|
|
hoverName = toString(ms);
|
2008-12-22 19:48:41 +02:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:25:59 +02:00
|
|
|
int3 CGTownInstance::getSightCenter() const
|
|
|
|
{
|
|
|
|
return pos - int3(2,0,0);
|
|
|
|
}
|
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
void CGVisitableOPH::onHeroVisit( const CGHeroInstance * h ) const
|
2008-12-22 19:48:41 +02:00
|
|
|
{
|
|
|
|
if(visitors.find(h->id)==visitors.end())
|
2008-10-26 22:58:34 +02:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
onNAHeroVisit(h->id, false);
|
2009-02-01 16:11:41 +02:00
|
|
|
if(ID != 102 && ID!=4 && ID!=41) //not tree nor arena nor library of enlightenment
|
2008-12-27 03:01:59 +02:00
|
|
|
cb->setObjProperty(id,4,h->id); //add to the visitors
|
2008-10-26 22:58:34 +02:00
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
else
|
2008-10-26 22:58:34 +02:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
onNAHeroVisit(h->id, true);
|
2008-10-26 22:58:34 +02:00
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
}
|
2008-10-26 22:58:34 +02:00
|
|
|
|
2008-12-22 19:48:41 +02:00
|
|
|
void CGVisitableOPH::initObj()
|
|
|
|
{
|
|
|
|
if(ID==102)
|
|
|
|
ttype = ran()%3;
|
|
|
|
else
|
|
|
|
ttype = -1;
|
|
|
|
}
|
2008-10-26 22:58:34 +02:00
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
void CGVisitableOPH::treeSelected( int heroID, int resType, int resVal, int expVal, ui32 result ) const
|
2008-12-22 19:48:41 +02:00
|
|
|
{
|
|
|
|
if(result==0) //player agreed to give res for exp
|
2008-10-26 22:58:34 +02:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
cb->giveResource(cb->getOwner(heroID),resType,-resVal); //take resource
|
|
|
|
cb->changePrimSkill(heroID,4,expVal); //give exp
|
2008-12-27 03:01:59 +02:00
|
|
|
cb->setObjProperty(id,4,heroID); //add to the visitors
|
2008-10-26 22:58:34 +02:00
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
}
|
2008-12-27 03:01:59 +02:00
|
|
|
void CGVisitableOPH::onNAHeroVisit(int heroID, bool alreadyVisited) const
|
2008-12-22 19:48:41 +02:00
|
|
|
{
|
|
|
|
int id=0, subid=0, ot=0, val=1;
|
|
|
|
switch(ID)
|
2008-11-14 20:18:13 +02:00
|
|
|
{
|
2009-01-11 00:08:18 +02:00
|
|
|
case 4:
|
|
|
|
ot = 0;
|
|
|
|
break;
|
2008-12-22 19:48:41 +02:00
|
|
|
case 51:
|
|
|
|
subid=0;
|
|
|
|
ot=80;
|
|
|
|
break;
|
|
|
|
case 23:
|
|
|
|
subid=1;
|
|
|
|
ot=39;
|
|
|
|
break;
|
|
|
|
case 61:
|
|
|
|
subid=2;
|
|
|
|
ot=100;
|
|
|
|
break;
|
|
|
|
case 32:
|
|
|
|
subid=3;
|
|
|
|
ot=59;
|
|
|
|
break;
|
|
|
|
case 100:
|
|
|
|
id=5;
|
|
|
|
ot=143;
|
|
|
|
val=1000;
|
|
|
|
break;
|
|
|
|
case 102:
|
|
|
|
id = 5;
|
|
|
|
subid = 1;
|
|
|
|
ot = 146;
|
|
|
|
val = 1;
|
|
|
|
break;
|
2009-02-01 16:11:41 +02:00
|
|
|
case 41:
|
|
|
|
ot = 66;
|
|
|
|
break;
|
2008-11-14 20:18:13 +02:00
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
if (!alreadyVisited)
|
2008-10-26 22:58:34 +02:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
switch (ID)
|
2008-10-26 22:58:34 +02:00
|
|
|
{
|
2009-01-11 00:08:18 +02:00
|
|
|
case 4: //arena
|
|
|
|
{
|
|
|
|
SelectionDialog sd;
|
|
|
|
sd.text << std::pair<ui8,ui32>(11,ot);
|
|
|
|
sd.components.push_back(Component(0,0,2,0));
|
|
|
|
sd.components.push_back(Component(0,1,2,0));
|
|
|
|
sd.player = cb->getOwner(heroID);
|
|
|
|
cb->showSelectionDialog(&sd,boost::bind(&CGVisitableOPH::arenaSelected,this,heroID,_1));
|
|
|
|
return;
|
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
case 51:
|
|
|
|
case 23:
|
|
|
|
case 61:
|
|
|
|
case 32:
|
2008-10-26 22:58:34 +02:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
cb->changePrimSkill(heroID,subid,val);
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.components.push_back(Component(0,subid,val,0));
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,ot);
|
|
|
|
iw.player = cb->getOwner(heroID);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 100: //give exp
|
|
|
|
{
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.components.push_back(Component(id,subid,val,0));
|
|
|
|
iw.player = cb->getOwner(heroID);
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,ot);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
cb->changePrimSkill(heroID,4,val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 102:
|
|
|
|
{
|
|
|
|
const CGHeroInstance *h = cb->getHero(heroID);
|
|
|
|
val = VLC->heroh->reqExp(h->level+val) - VLC->heroh->reqExp(h->level);
|
|
|
|
if(!ttype)
|
2008-10-26 22:58:34 +02:00
|
|
|
{
|
2009-01-11 00:08:18 +02:00
|
|
|
cb->setObjProperty(this->id,4,heroID); //add to the visitors
|
2008-12-22 19:48:41 +02:00
|
|
|
InfoWindow iw;
|
|
|
|
iw.components.push_back(Component(id,subid,1,0));
|
|
|
|
iw.player = cb->getOwner(heroID);
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,148);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
cb->changePrimSkill(heroID,4,val);
|
2008-10-26 22:58:34 +02:00
|
|
|
break;
|
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
int res, resval;
|
|
|
|
if(ttype==1)
|
|
|
|
{
|
|
|
|
res = 6;
|
|
|
|
resval = 2000;
|
|
|
|
ot = 149;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res = 5;
|
|
|
|
resval = 10;
|
|
|
|
ot = 151;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(cb->getResource(h->tempOwner,res) < resval) //not enough resources
|
|
|
|
{
|
|
|
|
ot++;
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,ot);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
YesNoDialog sd;
|
|
|
|
sd.player = cb->getOwner(heroID);
|
|
|
|
sd.text << std::pair<ui8,ui32>(11,ot);
|
|
|
|
sd.components.push_back(Component(id,subid,val,0));
|
|
|
|
cb->showYesNoDialog(&sd,boost::bind(&CGVisitableOPH::treeSelected,this,heroID,res,resval,val,_1));
|
|
|
|
}
|
|
|
|
break;
|
2008-10-26 22:58:34 +02:00
|
|
|
}
|
2009-02-01 16:11:41 +02:00
|
|
|
case 41:
|
|
|
|
{
|
|
|
|
const CGHeroInstance *h = cb->getHero(heroID);
|
|
|
|
if(h->level < 10 - 2*h->getSecSkillLevel(4)) //not enough level
|
|
|
|
{
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = cb->getOwner(heroID);
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,68);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cb->setObjProperty(this->id,4,heroID); //add to the visitors
|
|
|
|
cb->changePrimSkill(heroID,0,2);
|
|
|
|
cb->changePrimSkill(heroID,1,2);
|
|
|
|
cb->changePrimSkill(heroID,2,2);
|
|
|
|
cb->changePrimSkill(heroID,3,2);
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = cb->getOwner(heroID);
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,66);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-10-26 22:58:34 +02:00
|
|
|
}
|
|
|
|
}
|
2008-12-22 19:48:41 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
ot++;
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = cb->getOwner(heroID);
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,ot);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
}
|
2008-02-07 20:45:22 +02:00
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
|
2008-12-22 19:48:41 +02:00
|
|
|
const std::string & CGVisitableOPH::getHoverText() const
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2009-01-11 00:08:18 +02:00
|
|
|
int pom = -1;
|
2008-12-22 19:48:41 +02:00
|
|
|
switch(ID)
|
|
|
|
{
|
2009-01-11 00:08:18 +02:00
|
|
|
case 4:
|
|
|
|
pom = -1;
|
|
|
|
break;
|
2008-12-22 19:48:41 +02:00
|
|
|
case 51:
|
|
|
|
pom = 8;
|
|
|
|
break;
|
|
|
|
case 23:
|
|
|
|
pom = 7;
|
|
|
|
break;
|
|
|
|
case 61:
|
|
|
|
pom = 11;
|
|
|
|
break;
|
|
|
|
case 32:
|
|
|
|
pom = 4;
|
|
|
|
break;
|
|
|
|
case 100:
|
|
|
|
pom = 5;
|
|
|
|
break;
|
|
|
|
case 102:
|
|
|
|
pom = 18;
|
|
|
|
break;
|
2009-02-01 16:11:41 +02:00
|
|
|
case 41:
|
|
|
|
break;
|
2008-12-22 19:48:41 +02:00
|
|
|
default:
|
2009-01-11 00:08:18 +02:00
|
|
|
throw std::string("Wrong CGVisitableOPH object ID!\n");
|
2008-12-22 19:48:41 +02:00
|
|
|
}
|
2009-01-11 00:08:18 +02:00
|
|
|
hoverName = VLC->generaltexth->names[ID];
|
|
|
|
if(pom >= 0)
|
|
|
|
hoverName += (" " + VLC->generaltexth->xtrainfo[pom]);
|
2008-12-22 19:48:41 +02:00
|
|
|
const CGHeroInstance *h = cb->getSelectedHero(cb->getCurrentPlayer());
|
|
|
|
if(h)
|
|
|
|
{
|
2008-12-27 03:01:59 +02:00
|
|
|
hoverName += ' ';
|
2008-12-22 19:48:41 +02:00
|
|
|
hoverName += (vstd::contains(visitors,h->id))
|
2008-12-27 03:01:59 +02:00
|
|
|
? (VLC->generaltexth->allTexts[352]) //visited
|
|
|
|
: ( VLC->generaltexth->allTexts[353]); //not visited
|
2008-12-22 19:48:41 +02:00
|
|
|
}
|
|
|
|
return hoverName;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
|
2009-01-11 00:08:18 +02:00
|
|
|
void CGVisitableOPH::arenaSelected( int heroID, int primSkill ) const
|
|
|
|
{
|
|
|
|
cb->setObjProperty(id,4,heroID); //add to the visitors
|
|
|
|
cb->changePrimSkill(heroID,primSkill,2);
|
|
|
|
}
|
|
|
|
|
2009-02-20 14:39:27 +02:00
|
|
|
void CGVisitableOPH::setPropertyDer( ui8 what, ui32 val )
|
|
|
|
{
|
|
|
|
if(what == 4)
|
|
|
|
visitors.insert(val);
|
|
|
|
}
|
|
|
|
|
2008-12-22 19:48:41 +02:00
|
|
|
bool CArmedInstance::needsLastStack() const
|
2008-11-15 02:55:19 +02:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
return false;
|
2008-11-15 02:55:19 +02:00
|
|
|
}
|
2008-11-28 03:36:34 +02:00
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
void CGCreature::onHeroVisit( const CGHeroInstance * h ) const
|
2008-11-28 03:36:34 +02:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
cb->startBattleI(h->id,army,pos,boost::bind(&CGCreature::endBattle,this,_1));
|
2008-11-28 03:36:34 +02:00
|
|
|
}
|
2008-09-12 11:51:46 +03:00
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
void CGCreature::endBattle( BattleResult *result ) const
|
2008-09-12 11:51:46 +03:00
|
|
|
{
|
2008-12-22 19:48:41 +02:00
|
|
|
if(result->winner==0)
|
|
|
|
{
|
|
|
|
cb->removeObject(id);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int killedAmount=0;
|
|
|
|
for(std::set<std::pair<ui32,si32> >::iterator i=result->casualties[1].begin(); i!=result->casualties[1].end(); i++)
|
|
|
|
if(i->first == subID)
|
|
|
|
killedAmount += i->second;
|
2008-12-27 03:01:59 +02:00
|
|
|
cb->setAmount(id, army.slots.find(0)->second.second - killedAmount);
|
|
|
|
|
|
|
|
MetaString ms;
|
|
|
|
int pom = CCreature::getQuantityID(army.slots.find(0)->second.second);
|
|
|
|
pom = 174 + 3*pom + 1;
|
|
|
|
ms << std::pair<ui8,ui32>(6,pom) << " " << std::pair<ui8,ui32>(7,subID);
|
|
|
|
cb->setHoverName(id,&ms);
|
2008-12-22 19:48:41 +02:00
|
|
|
}
|
2008-09-12 11:51:46 +03:00
|
|
|
}
|
2008-11-15 02:55:19 +02:00
|
|
|
|
2008-12-22 19:48:41 +02:00
|
|
|
void CGCreature::initObj()
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2008-12-27 03:01:59 +02:00
|
|
|
army.slots[0].first = subID;
|
2008-12-22 19:48:41 +02:00
|
|
|
si32 &amount = army.slots[0].second;
|
|
|
|
CCreature &c = VLC->creh->creatures[subID];
|
|
|
|
if(!amount)
|
|
|
|
if(c.ammMax == c.ammMin)
|
|
|
|
amount = c.ammMax;
|
|
|
|
else
|
|
|
|
amount = c.ammMin + (ran() % (c.ammMax - c.ammMin));
|
2008-12-27 03:01:59 +02:00
|
|
|
|
|
|
|
MetaString ms;
|
|
|
|
int pom = CCreature::getQuantityID(army.slots.find(0)->second.second);
|
|
|
|
pom = 174 + 3*pom + 1;
|
|
|
|
ms << std::pair<ui8,ui32>(6,pom) << " " << std::pair<ui8,ui32>(7,subID);
|
|
|
|
hoverName = toString(ms);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGMine::onHeroVisit( const CGHeroInstance * h ) const
|
|
|
|
{
|
|
|
|
if(subID == 7) //TODO: support for abandoned mine
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(h->tempOwner == tempOwner) //we're visiting our mine
|
|
|
|
return; //TODO: leaving garrison
|
|
|
|
|
|
|
|
//TODO: check if mine is guarded
|
|
|
|
cb->setOwner(id,h->tempOwner); //not ours? flag it!
|
|
|
|
|
|
|
|
MetaString ms;
|
|
|
|
ms << std::pair<ui8,ui32>(9,subID) << " (" << std::pair<ui8,ui32>(6,23+h->tempOwner) << ")";
|
|
|
|
cb->setHoverName(id,&ms);
|
|
|
|
|
|
|
|
int vv=1; //amount of resource per turn
|
|
|
|
if (subID==0 || subID==2)
|
|
|
|
vv++;
|
|
|
|
else if (subID==6)
|
|
|
|
vv = 1000;
|
|
|
|
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.text << std::pair<ui8,ui32>(10,subID);
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
iw.components.push_back(Component(2,subID,vv,-1));
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGMine::newTurn() const
|
|
|
|
{
|
|
|
|
if (tempOwner == NEUTRAL_PLAYER)
|
|
|
|
return;
|
|
|
|
int vv = 1;
|
|
|
|
if (subID==0 || subID==2)
|
|
|
|
vv++;
|
|
|
|
else if (subID==6)
|
|
|
|
vv = 1000;
|
|
|
|
cb->giveResource(tempOwner,subID,vv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGMine::initObj()
|
|
|
|
{
|
|
|
|
MetaString ms;
|
|
|
|
ms << std::pair<ui8,ui32>(9,subID);
|
|
|
|
if(tempOwner >= PLAYER_LIMIT)
|
|
|
|
tempOwner = NEUTRAL_PLAYER;
|
|
|
|
else
|
|
|
|
ms << " (" << std::pair<ui8,ui32>(6,23+tempOwner) << ")";
|
|
|
|
hoverName = toString(ms);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGResource::initObj()
|
|
|
|
{
|
|
|
|
blockVisit = true;
|
2009-01-06 20:42:20 +02:00
|
|
|
hoverName = VLC->generaltexth->restypes[subID];
|
2008-12-27 03:01:59 +02:00
|
|
|
|
|
|
|
if(!amount)
|
|
|
|
{
|
|
|
|
switch(subID)
|
|
|
|
{
|
|
|
|
case 6:
|
|
|
|
amount = 500 + (rand()%6)*100;
|
|
|
|
break;
|
|
|
|
case 0: case 2:
|
|
|
|
amount = 6 + (rand()%5);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
amount = 3 + (rand()%3);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGResource::onHeroVisit( const CGHeroInstance * h ) const
|
|
|
|
{
|
2009-01-11 00:08:18 +02:00
|
|
|
if(army.slots.size())
|
2008-12-27 03:01:59 +02:00
|
|
|
{
|
2009-01-11 00:08:18 +02:00
|
|
|
if(message.size())
|
|
|
|
{
|
|
|
|
YesNoDialog ynd;
|
|
|
|
ynd.player = h->getOwner();
|
|
|
|
ynd.text << message;
|
|
|
|
cb->showYesNoDialog(&ynd,boost::bind(&CGResource::fightForRes,this,_1,h));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-01-12 22:05:56 +02:00
|
|
|
fightForRes(0,h);
|
2009-01-11 00:08:18 +02:00
|
|
|
}
|
2008-12-27 03:01:59 +02:00
|
|
|
}
|
2009-01-11 00:08:18 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if(message.length())
|
|
|
|
{
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
iw.text << message;
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
}
|
|
|
|
collectRes(h->getOwner());
|
|
|
|
}
|
|
|
|
}
|
2008-12-27 03:01:59 +02:00
|
|
|
|
2009-01-11 00:08:18 +02:00
|
|
|
void CGResource::collectRes( int player ) const
|
|
|
|
{
|
|
|
|
cb->giveResource(player,subID,amount);
|
2008-12-27 03:01:59 +02:00
|
|
|
ShowInInfobox sii;
|
2009-01-11 00:08:18 +02:00
|
|
|
sii.player = player;
|
2008-12-27 03:01:59 +02:00
|
|
|
sii.c = Component(2,subID,amount,0);
|
|
|
|
sii.text << std::pair<ui8,ui32>(11,113);
|
2009-01-06 20:42:20 +02:00
|
|
|
sii.text.replacements.push_back(VLC->generaltexth->restypes[subID]);
|
2008-12-27 03:01:59 +02:00
|
|
|
cb->showCompInfo(&sii);
|
|
|
|
cb->removeObject(id);
|
|
|
|
}
|
|
|
|
|
2009-01-12 22:05:56 +02:00
|
|
|
void CGResource::fightForRes(ui32 refusedFight, const CGHeroInstance *h) const
|
2009-01-11 00:08:18 +02:00
|
|
|
{
|
2009-02-03 07:28:05 +02:00
|
|
|
if(!refusedFight)
|
|
|
|
cb->startBattleI(h->id,army,pos,boost::bind(&CGResource::endBattle,this,_1,h));
|
2009-01-11 00:08:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGResource::endBattle( BattleResult *result, const CGHeroInstance *h ) const
|
|
|
|
{
|
|
|
|
if(result->winner == 0) //attacker won
|
|
|
|
collectRes(h->getOwner());
|
|
|
|
}
|
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
void CGVisitableOPW::newTurn() const
|
|
|
|
{
|
|
|
|
if (cb->getDate(1)==1) //first day of week
|
|
|
|
{
|
|
|
|
cb->setObjProperty(id,5,false);
|
|
|
|
MetaString ms; //set text to "not visited"
|
|
|
|
ms << std::pair<ui8,ui32>(3,ID) << " " << std::pair<ui8,ui32>(1,353);
|
|
|
|
cb->setHoverName(id,&ms);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGVisitableOPW::onHeroVisit( const CGHeroInstance * h ) const
|
|
|
|
{
|
|
|
|
int mid;
|
|
|
|
switch (ID)
|
|
|
|
{
|
|
|
|
case 55:
|
|
|
|
mid = 92;
|
|
|
|
break;
|
|
|
|
case 112:
|
|
|
|
mid = 170;
|
|
|
|
break;
|
|
|
|
case 109:
|
|
|
|
mid = 164;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (visited)
|
|
|
|
{
|
|
|
|
if (ID!=112)
|
|
|
|
mid++;
|
|
|
|
else
|
|
|
|
mid--;
|
|
|
|
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,mid);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int type, sub, val;
|
|
|
|
type = 2;
|
|
|
|
switch (ID)
|
|
|
|
{
|
|
|
|
case 55:
|
|
|
|
if (rand()%2)
|
|
|
|
{
|
|
|
|
sub = 5;
|
|
|
|
val = 5;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sub = 6;
|
|
|
|
val = 500;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 112:
|
|
|
|
mid = 170;
|
|
|
|
sub = (rand() % 5) + 1;
|
|
|
|
val = (rand() % 4) + 3;
|
|
|
|
break;
|
|
|
|
case 109:
|
|
|
|
mid = 164;
|
|
|
|
sub = 6;
|
2009-02-15 21:49:23 +02:00
|
|
|
if(cb->getDate(0)<8)
|
2008-12-27 03:01:59 +02:00
|
|
|
val = 500;
|
|
|
|
else
|
|
|
|
val = 1000;
|
|
|
|
}
|
|
|
|
cb->giveResource(h->tempOwner,sub,val);
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
iw.components.push_back(Component(type,sub,val,0));
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,mid);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
cb->setObjProperty(id,5,true);
|
|
|
|
MetaString ms; //set text to "visited"
|
|
|
|
ms << std::pair<ui8,ui32>(3,ID) << " " << std::pair<ui8,ui32>(1,352);
|
|
|
|
cb->setHoverName(id,&ms);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-20 14:39:27 +02:00
|
|
|
void CGVisitableOPW::setPropertyDer( ui8 what, ui32 val )
|
|
|
|
{
|
|
|
|
if(what == 5)
|
|
|
|
visited = val;
|
|
|
|
}
|
|
|
|
|
2008-12-27 03:01:59 +02:00
|
|
|
void CGTeleport::onHeroVisit( const CGHeroInstance * h ) const
|
|
|
|
{
|
|
|
|
int destinationid=-1;
|
|
|
|
switch(ID)
|
|
|
|
{
|
|
|
|
case 43: //one way - find correspong exit monolith
|
|
|
|
if(vstd::contains(objs,44) && vstd::contains(objs[44],subID) && objs[44][subID].size())
|
|
|
|
destinationid = objs[44][subID][rand()%objs[44][subID].size()];
|
|
|
|
else
|
|
|
|
tlog2 << "Cannot find corresponding exit monolith for "<< id << std::endl;
|
|
|
|
break;
|
|
|
|
case 45: //two way monolith - pick any other one
|
|
|
|
if(vstd::contains(objs,45) && vstd::contains(objs[45],subID) && objs[45][subID].size()>1)
|
|
|
|
while ((destinationid = objs[45][subID][rand()%objs[45][subID].size()])==id);
|
|
|
|
else
|
|
|
|
tlog2 << "Cannot find corresponding exit monolith for "<< id << std::endl;
|
|
|
|
break;
|
|
|
|
case 103: //find nearest subterranean gate on the other level
|
|
|
|
{
|
|
|
|
std::pair<int,double> best(-1,150000); //pair<id,dist>
|
|
|
|
for(int i=0; i<objs[103][0].size(); i++)
|
|
|
|
{
|
|
|
|
if(cb->getObj(objs[103][0][i])->pos.z == pos.z) continue; //gates on our level are not interesting
|
|
|
|
double hlp = cb->getObj(objs[103][0][i])->pos.dist2d(pos);
|
|
|
|
if(hlp<best.second)
|
|
|
|
{
|
|
|
|
best.first = objs[103][0][i];
|
|
|
|
best.second = hlp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(best.first<0)
|
|
|
|
return;
|
|
|
|
else
|
|
|
|
destinationid = best.first;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(destinationid < 0)
|
|
|
|
{
|
|
|
|
tlog2 << "Cannot find exit... :( \n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cb->moveHero(h->id,
|
|
|
|
(ID!=103)
|
|
|
|
? (CGHeroInstance::convertPosition(cb->getObj(destinationid)->pos,true))
|
|
|
|
: (cb->getObj(destinationid)->pos),
|
|
|
|
true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGTeleport::initObj()
|
|
|
|
{
|
|
|
|
objs[ID][subID].push_back(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGArtifact::initObj()
|
|
|
|
{
|
|
|
|
blockVisit = true;
|
|
|
|
if(ID == 5)
|
|
|
|
hoverName = VLC->arth->artifacts[subID].Name();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGArtifact::onHeroVisit( const CGHeroInstance * h ) const
|
2009-02-03 07:28:05 +02:00
|
|
|
{
|
|
|
|
if(!army.slots.size())
|
|
|
|
{
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
iw.components.push_back(Component(4,subID,0,0));
|
|
|
|
if(message.length())
|
|
|
|
iw.text << message;
|
|
|
|
else
|
|
|
|
iw.text << std::pair<ui8,ui32>(12,subID);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
pick(h);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(message.size())
|
|
|
|
{
|
|
|
|
YesNoDialog ynd;
|
|
|
|
ynd.player = h->getOwner();
|
|
|
|
ynd.text << message;
|
|
|
|
cb->showYesNoDialog(&ynd,boost::bind(&CGArtifact::fightForArt,this,_1,h));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fightForArt(0,h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGArtifact::pick(const CGHeroInstance * h) const
|
2008-12-27 03:01:59 +02:00
|
|
|
{
|
|
|
|
cb->giveHeroArtifact(subID,h->id,-2);
|
2009-02-01 16:11:41 +02:00
|
|
|
cb->removeObject(id);
|
2008-12-27 03:01:59 +02:00
|
|
|
}
|
|
|
|
|
2009-02-03 07:28:05 +02:00
|
|
|
void CGArtifact::fightForArt( ui32 refusedFight, const CGHeroInstance *h ) const
|
|
|
|
{
|
|
|
|
if(!refusedFight)
|
|
|
|
cb->startBattleI(h->id,army,pos,boost::bind(&CGArtifact::endBattle,this,_1,h));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGArtifact::endBattle( BattleResult *result, const CGHeroInstance *h ) const
|
|
|
|
{
|
|
|
|
if(result->winner == 0) //attacker won
|
|
|
|
pick(h);
|
|
|
|
}
|
2008-12-27 03:01:59 +02:00
|
|
|
void CGPickable::initObj()
|
|
|
|
{
|
|
|
|
blockVisit = true;
|
|
|
|
switch(ID)
|
|
|
|
{
|
|
|
|
case 12: //campfire
|
|
|
|
val2 = (ran()%3) + 4; //4 - 6
|
|
|
|
val1 = val2 * 100;
|
|
|
|
type = ran()%6; //given resource
|
|
|
|
break;
|
|
|
|
case 101: //treasure chest
|
|
|
|
{
|
|
|
|
int hlp = ran()%100;
|
|
|
|
if(hlp >= 95)
|
|
|
|
{
|
|
|
|
type = 1;
|
|
|
|
val1 = VLC->arth->treasures[ran()%VLC->arth->treasures.size()]->id;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (hlp >= 65)
|
|
|
|
{
|
|
|
|
val1 = 2000;
|
|
|
|
}
|
|
|
|
else if(hlp >= 33)
|
|
|
|
{
|
|
|
|
val1 = 1500;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
val1 = 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
val2 = val1 - 500;
|
|
|
|
type = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGPickable::onHeroVisit( const CGHeroInstance * h ) const
|
|
|
|
{
|
|
|
|
|
|
|
|
switch(ID)
|
|
|
|
{
|
|
|
|
case 12: //campfire
|
|
|
|
{
|
|
|
|
cb->giveResource(h->tempOwner,type,val2); //non-gold resource
|
|
|
|
cb->giveResource(h->tempOwner,6,val1);//gold
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
iw.components.push_back(Component(2,6,val1,0));
|
|
|
|
iw.components.push_back(Component(2,type,val2,0));
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,23);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 101: //treasure chest
|
|
|
|
{
|
|
|
|
if (subID) //not OH3 treasure chest
|
|
|
|
{
|
|
|
|
tlog2 << "Not supported WoG treasure chest!\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(type) //there is an artifact
|
|
|
|
{
|
|
|
|
cb->giveHeroArtifact(val1,h->id,-2);
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
iw.components.push_back(Component(4,val1,1,0));
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,145);
|
|
|
|
iw.text.replacements.push_back(VLC->arth->artifacts[val1].Name());
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SelectionDialog sd;
|
|
|
|
sd.player = h->tempOwner;
|
|
|
|
sd.text << std::pair<ui8,ui32>(11,146);
|
|
|
|
sd.components.push_back(Component(2,6,val1,0));
|
|
|
|
sd.components.push_back(Component(5,0,val2,0));
|
|
|
|
boost::function<void(ui32)> fun = boost::bind(&CGPickable::chosen,this,_1,h->id);
|
|
|
|
cb->showSelectionDialog(&sd,fun);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cb->removeObject(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGPickable::chosen( int which, int heroID ) const
|
|
|
|
{
|
|
|
|
switch(which)
|
|
|
|
{
|
|
|
|
case 0: //player pick gold
|
|
|
|
cb->giveResource(cb->getOwner(heroID),6,val1);
|
|
|
|
break;
|
|
|
|
case 1: //player pick exp
|
|
|
|
cb->changePrimSkill(heroID, 4, val2);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw std::string("Unhandled treasure choice");
|
|
|
|
}
|
2009-01-11 00:08:18 +02:00
|
|
|
cb->removeObject(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGWitchHut::initObj()
|
|
|
|
{
|
|
|
|
ability = allowedAbilities[ran()%allowedAbilities.size()];
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGWitchHut::onHeroVisit( const CGHeroInstance * h ) const
|
|
|
|
{
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->getOwner();
|
2009-02-20 14:39:27 +02:00
|
|
|
if(!vstd::contains(playersVisited,h->tempOwner))
|
|
|
|
cb->setObjProperty(id,10,h->tempOwner);
|
2009-01-11 00:08:18 +02:00
|
|
|
|
|
|
|
if(h->getSecSkillLevel(ability)) //you alredy know this skill
|
|
|
|
{
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,172);
|
|
|
|
iw.text.replacements.push_back(VLC->generaltexth->skillName[ability]);
|
|
|
|
}
|
|
|
|
else if(h->secSkills.size() >= SKILL_PER_HERO) //already all skills slots used
|
|
|
|
{
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,173);
|
|
|
|
iw.text.replacements.push_back(VLC->generaltexth->skillName[ability]);
|
|
|
|
}
|
|
|
|
else //give sec skill
|
|
|
|
{
|
|
|
|
iw.components.push_back(Component(1, ability, 1, 0));
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,171);
|
|
|
|
iw.text.replacements.push_back(VLC->generaltexth->skillName[ability]);
|
|
|
|
cb->changeSecSkill(h->id,ability,1,true);
|
|
|
|
}
|
|
|
|
|
|
|
|
cb->showInfoDialog(&iw);
|
2009-02-03 07:28:05 +02:00
|
|
|
}
|
|
|
|
|
2009-02-20 14:39:27 +02:00
|
|
|
const std::string & CGWitchHut::getHoverText() const
|
|
|
|
{
|
|
|
|
hoverName = VLC->generaltexth->names[ID];
|
|
|
|
if(vstd::contains(playersVisited,cb->getCurrentPlayer())) //TODO: use local player, not current
|
|
|
|
{
|
|
|
|
hoverName += "\n" + VLC->generaltexth->allTexts[356]; // + (learn %s)
|
|
|
|
boost::algorithm::replace_first(hoverName,"%s",VLC->generaltexth->skillName[ability]);
|
|
|
|
if(cb->getSelectedHero(cb->getCurrentPlayer())->getSecSkillLevel(ability)) //hero knows that ability
|
|
|
|
hoverName += "\n\n" + VLC->generaltexth->allTexts[357]; // (Already learned)
|
|
|
|
}
|
|
|
|
return hoverName;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGWitchHut::setPropertyDer( ui8 what, ui32 val )
|
|
|
|
{
|
|
|
|
if(what == 10)
|
|
|
|
playersVisited.insert(val);
|
|
|
|
}
|
|
|
|
|
2009-02-03 07:28:05 +02:00
|
|
|
void CGDwelling::onHeroVisit( const CGHeroInstance * h ) const
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGDwelling::initObj()
|
|
|
|
{
|
|
|
|
|
2009-02-04 15:40:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGBonusingObject::onHeroVisit( const CGHeroInstance * h ) const
|
|
|
|
{
|
|
|
|
bool visited = h->getBonus(HeroBonus::OBJECT,ID);
|
|
|
|
int messageID, bonusType, bonusVal;
|
2009-02-05 11:49:45 +02:00
|
|
|
int bonusMove = 0;
|
2009-02-04 15:40:54 +02:00
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
2009-02-05 11:49:45 +02:00
|
|
|
GiveBonus gbonus;
|
|
|
|
gbonus.hid = h->id;
|
|
|
|
gbonus.bonus.duration = HeroBonus::ONE_BATTLE;
|
|
|
|
gbonus.bonus.source = HeroBonus::OBJECT;
|
|
|
|
gbonus.bonus.id = ID;
|
2009-02-04 15:40:54 +02:00
|
|
|
|
|
|
|
switch(ID)
|
|
|
|
{
|
|
|
|
case 14: //swan pond
|
|
|
|
messageID = 29;
|
2009-02-05 11:49:45 +02:00
|
|
|
gbonus.bonus.type = HeroBonus::LUCK;
|
|
|
|
gbonus.bonus.val = 2;
|
|
|
|
gbonus.bdescr << std::pair<ui8,ui32>(6,67);
|
|
|
|
bonusMove = -h->movement;
|
|
|
|
break;
|
2009-02-04 15:40:54 +02:00
|
|
|
case 28: //Faerie Ring
|
|
|
|
messageID = 49;
|
2009-02-05 11:49:45 +02:00
|
|
|
gbonus.bonus.type = HeroBonus::LUCK;
|
|
|
|
gbonus.bonus.val = 1;
|
|
|
|
gbonus.bdescr << std::pair<ui8,ui32>(6,71);
|
2009-02-04 15:40:54 +02:00
|
|
|
break;
|
|
|
|
case 30: //fountain of fortune
|
|
|
|
messageID = 55;
|
2009-02-05 11:49:45 +02:00
|
|
|
gbonus.bonus.type = HeroBonus::LUCK;
|
|
|
|
gbonus.bonus.val = rand()%5 - 1;
|
|
|
|
gbonus.bdescr << std::pair<ui8,ui32>(6,69);
|
|
|
|
gbonus.bdescr.replacements.push_back((gbonus.bonus.val<0 ? "-" : "+") + boost::lexical_cast<std::string>(gbonus.bonus.val));
|
2009-02-04 15:40:54 +02:00
|
|
|
break;
|
|
|
|
case 38: //idol of fortune
|
|
|
|
messageID = 62;
|
2009-02-05 11:49:45 +02:00
|
|
|
if(cb->getDate(1) == 7) //7th day of week
|
|
|
|
gbonus.bonus.type = HeroBonus::MORALE_AND_LUCK;
|
|
|
|
else
|
|
|
|
gbonus.bonus.type = (cb->getDate(1)%2) ? HeroBonus::LUCK : HeroBonus::MORALE;
|
|
|
|
gbonus.bonus.val = 1;
|
|
|
|
gbonus.bdescr << std::pair<ui8,ui32>(6,68);
|
|
|
|
break;
|
|
|
|
case 64: //Rally Flag
|
|
|
|
messageID = 111;
|
|
|
|
gbonus.bonus.type = HeroBonus::MORALE_AND_LUCK;
|
|
|
|
gbonus.bonus.val = 1;
|
|
|
|
gbonus.bdescr << std::pair<ui8,ui32>(6,102);
|
|
|
|
bonusMove = 400;
|
|
|
|
break;
|
|
|
|
case 56: //oasis
|
|
|
|
messageID = 95;
|
|
|
|
gbonus.bonus.type = HeroBonus::MORALE;
|
|
|
|
gbonus.bonus.val = 1;
|
|
|
|
gbonus.bdescr << std::pair<ui8,ui32>(6,95);
|
|
|
|
bonusMove = 800;
|
|
|
|
break;
|
|
|
|
case 96: //temple
|
|
|
|
messageID = 140;
|
|
|
|
gbonus.bonus.type = HeroBonus::MORALE;
|
|
|
|
if(cb->getDate(1)==7) //sunday
|
|
|
|
{
|
|
|
|
gbonus.bonus.val = 2;
|
|
|
|
gbonus.bdescr << std::pair<ui8,ui32>(6,97);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gbonus.bonus.val = 1;
|
|
|
|
gbonus.bdescr << std::pair<ui8,ui32>(6,96);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 110://Watering Hole
|
|
|
|
messageID = 166;
|
|
|
|
gbonus.bonus.type = HeroBonus::MORALE;
|
|
|
|
gbonus.bonus.val = 1;
|
|
|
|
gbonus.bdescr << std::pair<ui8,ui32>(6,100);
|
|
|
|
bonusMove = 400;
|
|
|
|
break;
|
|
|
|
case 31: //Fountain of Youth
|
|
|
|
messageID = 57;
|
|
|
|
gbonus.bonus.type = HeroBonus::MORALE;
|
|
|
|
gbonus.bonus.val = 1;
|
|
|
|
gbonus.bdescr << std::pair<ui8,ui32>(6,103);
|
|
|
|
bonusMove = 400;
|
2009-02-04 15:40:54 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(visited)
|
|
|
|
{
|
2009-02-05 11:49:45 +02:00
|
|
|
if(ID==64 || ID==96 || ID==56)
|
|
|
|
messageID--;
|
|
|
|
else
|
|
|
|
messageID++;
|
2009-02-04 15:40:54 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-02-05 11:49:45 +02:00
|
|
|
if(gbonus.bonus.type == HeroBonus::MORALE || gbonus.bonus.type == HeroBonus::MORALE_AND_LUCK)
|
|
|
|
iw.components.push_back(Component(8,0,gbonus.bonus.val,0));
|
|
|
|
if(gbonus.bonus.type == HeroBonus::LUCK || gbonus.bonus.type == HeroBonus::MORALE_AND_LUCK)
|
|
|
|
iw.components.push_back(Component(9,0,gbonus.bonus.val,0));
|
2009-02-04 15:40:54 +02:00
|
|
|
cb->giveHeroBonus(&gbonus);
|
2009-02-05 11:49:45 +02:00
|
|
|
if(bonusMove) //swan pond - take all move points
|
2009-02-04 15:40:54 +02:00
|
|
|
{
|
|
|
|
SetMovePoints smp;
|
|
|
|
smp.hid = h->id;
|
2009-02-05 11:49:45 +02:00
|
|
|
smp.val = h->movement + bonusMove;
|
2009-02-04 15:40:54 +02:00
|
|
|
cb->setMovePoints(&smp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,messageID);
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string & CGBonusingObject::getHoverText() const
|
2009-02-06 13:15:39 +02:00
|
|
|
{
|
|
|
|
const CGHeroInstance *h = cb->getSelectedHero(cb->getCurrentPlayer());
|
|
|
|
hoverName = VLC->generaltexth->names[ID];
|
|
|
|
if(h)
|
|
|
|
{
|
|
|
|
if(!h->getBonus(HeroBonus::OBJECT,ID))
|
|
|
|
hoverName += " " + VLC->generaltexth->allTexts[353]; //not visited
|
|
|
|
else
|
|
|
|
hoverName += " " + VLC->generaltexth->allTexts[352]; //visited
|
|
|
|
}
|
|
|
|
return hoverName;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGMagicWell::onHeroVisit( const CGHeroInstance * h ) const
|
|
|
|
{
|
|
|
|
int message;
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
if(h->getBonus(HeroBonus::OBJECT,ID)) //has already visited Well today
|
|
|
|
{
|
|
|
|
message = 78;
|
|
|
|
}
|
|
|
|
else if(h->mana < h->manaLimit())
|
|
|
|
{
|
|
|
|
GiveBonus gbonus;
|
|
|
|
gbonus.bonus.type = HeroBonus::NONE;
|
|
|
|
gbonus.hid = h->id;
|
|
|
|
gbonus.bonus.duration = HeroBonus::ONE_DAY;
|
|
|
|
gbonus.bonus.source = HeroBonus::OBJECT;
|
|
|
|
gbonus.bonus.id = ID;
|
|
|
|
cb->giveHeroBonus(&gbonus);
|
|
|
|
cb->setManaPoints(h->id,h->manaLimit());
|
|
|
|
message = 77;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
message = 79;
|
|
|
|
}
|
|
|
|
iw.text << std::pair<ui8,ui32>(11,message); //"A second drink at the well in one day will not help you."
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string & CGMagicWell::getHoverText() const
|
2009-02-04 15:40:54 +02:00
|
|
|
{
|
|
|
|
const CGHeroInstance *h = cb->getSelectedHero(cb->getCurrentPlayer());
|
|
|
|
hoverName = VLC->generaltexth->names[ID];
|
|
|
|
if(h)
|
|
|
|
{
|
|
|
|
if(!h->getBonus(HeroBonus::OBJECT,ID))
|
|
|
|
hoverName += " " + VLC->generaltexth->allTexts[353]; //not visited
|
|
|
|
else
|
|
|
|
hoverName += " " + VLC->generaltexth->allTexts[352]; //visited
|
|
|
|
}
|
|
|
|
return hoverName;
|
2009-02-08 08:42:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGEvent::onHeroVisit( const CGHeroInstance * h ) const
|
|
|
|
{
|
|
|
|
/*if(!(availableFor & (1 << h->tempOwner)))
|
|
|
|
return;
|
|
|
|
if(cb->getPlayerSettings(h->tempOwner)->human)
|
|
|
|
{
|
|
|
|
if(humanActivate)
|
|
|
|
activated(h);
|
|
|
|
}
|
|
|
|
else if(computerActivate)
|
|
|
|
activated(h);*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGEvent::endBattle( BattleResult *result ) const
|
|
|
|
{
|
|
|
|
if(result->winner)
|
|
|
|
return;
|
|
|
|
//give
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGEvent::activated( const CGHeroInstance * h ) const
|
|
|
|
{
|
|
|
|
InfoWindow iw;
|
|
|
|
iw.player = h->tempOwner;
|
|
|
|
iw.text << message;
|
|
|
|
cb->showInfoDialog(&iw);
|
|
|
|
if(guarders)
|
|
|
|
cb->startBattleI(h->id,guarders,pos,boost::bind(&CGEvent::endBattle,this,_1));
|
|
|
|
cb->removeObject(id);
|
2008-12-22 19:48:41 +02:00
|
|
|
}
|