Files
vcmi/CCallback.cpp
T

711 lines
19 KiB
C++
Raw Normal View History

2007-08-27 14:15:03 +00:00
#include "stdafx.h"
#include "CCallback.h"
2009-05-20 10:08:56 +00:00
#include "client/CGameInfo.h"
#include "lib/CGameState.h"
#include "client/CPlayerInterface.h"
#include "client/Client.h"
2009-05-20 10:08:56 +00:00
#include "lib/map.h"
#include "hch/CBuildingHandler.h"
#include "hch/CDefObjInfoHandler.h"
#include "hch/CHeroHandler.h"
#include "hch/CObjectHandler.h"
#include "lib/Connection.h"
#include "lib/NetPacks.h"
#include "mapHandler.h"
#include <boost/foreach.hpp>
#include <boost/thread.hpp>
#include <boost/thread/shared_mutex.hpp>
#ifdef min
#undef min
#endif
#ifdef max
#undef max
#endif
/*
* CCallback.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
*
*/
static int gcd(int x, int y)
2008-09-07 03:38:37 +00:00
{
int temp;
if (y > x)
std::swap(x,y);
2008-09-07 03:38:37 +00:00
while (y != 0)
{
temp = y;
y = x-y;
x = temp;
if (y > x)
std::swap(x,y);
2008-09-07 03:38:37 +00:00
}
return x;
}
HeroMoveDetails::HeroMoveDetails(int3 Src, int3 Dst, CGHeroInstance*Ho)
:src(Src),dst(Dst),ho(Ho)
{
owner = ho->getOwner();
};
2009-03-06 22:11:17 +00:00
template <ui16 N> bool isType(CPack *pack)
{
return pack->getType() == N;
}
2009-03-12 18:50:36 +00:00
bool CCallback::moveHero(const CGHeroInstance *h, int3 dst) const
2007-08-27 14:15:03 +00:00
{
MoveHero pack(dst,h->id);
*cl->serv << &pack;
2007-08-30 10:11:53 +00:00
return true;
2007-08-29 12:18:31 +00:00
}
2007-12-25 16:25:53 +00:00
void CCallback::selectionMade(int selection, int asker)
{
QueryReply pack(asker,selection);
*cl->serv << &pack;
2007-12-25 16:25:53 +00:00
}
2008-08-10 04:46:16 +00:00
void CCallback::recruitCreatures(const CGObjectInstance *obj, ui32 ID, ui32 amount)
{
2008-08-10 04:46:16 +00:00
if(player!=obj->tempOwner) return;
RecruitCreatures pack(obj->id,ID,amount);
*cl->serv << &pack;
}
2007-09-14 13:11:10 +00:00
bool CCallback::dismissCreature(const CArmedInstance *obj, int stackPos)
{
2009-04-14 14:19:46 +00:00
if(((player>=0) && obj->tempOwner != player) || (obj->army.slots.size()<2 && obj->needsLastStack()))
2008-05-31 20:37:54 +00:00
return false;
DisbandCreature pack(stackPos,obj->id);
*cl->serv << &pack;
2008-05-31 20:37:54 +00:00
return true;
}
2008-05-31 20:37:54 +00:00
bool CCallback::upgradeCreature(const CArmedInstance *obj, int stackPos, int newID)
{
UpgradeCreature pack(stackPos,obj->id,newID);
*cl->serv << &pack;
return false;
}
void CCallback::endTurn()
{
tlog5 << "Player " << (unsigned)player << " end his turn." << std::endl;
EndTurn pack;
*cl->serv << &pack; //report that we ended turn
}
UpgradeInfo CCallback::getUpgradeInfo(const CArmedInstance *obj, int stackPos) const
{
2008-08-20 19:02:48 +00:00
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2008-08-15 12:11:42 +00:00
return gs->getUpgradeInfo(const_cast<CArmedInstance*>(obj),stackPos);
}
const StartInfo * CCallback::getStartInfo() const
{
2008-08-20 19:02:48 +00:00
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
return gs->scenarioOps;
}
int CCallback::howManyTowns() const
2007-09-18 13:30:26 +00:00
{
2008-08-20 19:02:48 +00:00
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
return gs->players[player].towns.size();
2007-09-18 13:30:26 +00:00
}
const CGTownInstance * CCallback::getTownInfo(int val, bool mode) const //mode = 0 -> val = serial; mode = 1 -> val = ID
2007-09-18 13:30:26 +00:00
{
2008-08-20 19:02:48 +00:00
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2007-09-18 13:30:26 +00:00
if (!mode)
return gs->players[gs->currentPlayer].towns[val];
else
{
//TODO: add some smart ID to the CTownInstance
//for (int i=0; i<gs->players[gs->currentPlayer].towns.size();i++)
//{
// if (gs->players[gs->currentPlayer].towns[i]->someID==val)
// return gs->players[gs->currentPlayer].towns[i];
//}
return NULL;
}
return NULL;
}
int CCallback::howManyHeroes(bool includeGarrisoned) const
2007-09-14 13:11:10 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
return cl->getHeroCount(player,includeGarrisoned);
2007-09-14 13:11:10 +00:00
}
const CGHeroInstance * CCallback::getHeroInfo(int val, int mode) const //mode = 0 -> val = serial; mode = 1 -> val = ID
2007-09-14 13:11:10 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx); //TODO use me?
//if (gs->currentPlayer!=player) //TODO: checking if we are allowed to give that info
// return NULL;
if (!mode) //esrial id
2008-12-23 13:59:03 +00:00
{
if(val<gs->players[player].heroes.size())
{
2008-01-20 16:24:03 +00:00
return gs->players[player].heroes[val];
2008-12-23 13:59:03 +00:00
}
else
{
return NULL;
}
}
else if(mode==1) //it's hero type id
2007-09-14 13:11:10 +00:00
{
for (size_t i=0; i < gs->players[player].heroes.size(); ++i)
2007-09-14 13:11:10 +00:00
{
2008-12-23 13:59:03 +00:00
if (gs->players[player].heroes[i]->type->ID==val)
{
2007-09-14 13:11:10 +00:00
return gs->players[player].heroes[i];
2008-12-23 13:59:03 +00:00
}
2007-09-14 13:11:10 +00:00
}
}
else //object id
{
2009-06-16 11:18:14 +00:00
return static_cast<const CGHeroInstance*>(gs->map->objects[val]);
}
2007-09-14 13:11:10 +00:00
return NULL;
2007-09-16 17:21:23 +00:00
}
2007-09-18 13:30:26 +00:00
int CCallback::getResourceAmount(int type) const
2007-09-16 17:21:23 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2007-12-01 12:50:33 +00:00
return gs->players[player].resources[type];
2007-09-18 13:30:26 +00:00
}
std::vector<si32> CCallback::getResourceAmount() const
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
return gs->players[player].resources;
}
int CCallback::getDate(int mode) const
2007-09-18 13:30:26 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2008-07-25 17:28:28 +00:00
return gs->getDate(mode);
2007-10-05 18:10:33 +00:00
}
std::vector < std::string > CCallback::getObjDescriptions(int3 pos) const
2008-07-29 09:53:27 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2008-07-29 09:53:27 +00:00
std::vector<std::string> ret;
2008-09-12 08:51:46 +00:00
if(!isVisible(pos,player))
return ret;
2008-07-30 17:51:19 +00:00
BOOST_FOREACH(const CGObjectInstance * obj, gs->map->terrain[pos.x][pos.y][pos.z].blockingObjects)
2008-12-22 17:48:41 +00:00
ret.push_back(obj->getHoverText());
2008-07-29 09:53:27 +00:00
return ret;
}
bool CCallback::verifyPath(CPath * path, bool blockSea) const
2007-10-05 18:16:22 +00:00
{
for (size_t i=0; i < path->nodes.size(); ++i)
2007-10-05 18:16:22 +00:00
{
2008-07-29 09:53:27 +00:00
if ( CGI->mh->ttiles[path->nodes[i].coord.x][path->nodes[i].coord.y][path->nodes[i].coord.z].tileInfo->blocked
&& (! (CGI->mh->ttiles[path->nodes[i].coord.x][path->nodes[i].coord.y][path->nodes[i].coord.z].tileInfo->visitable)))
2007-10-05 18:16:22 +00:00
return false; //path is wrong - one of the tiles is blocked
if (blockSea)
{
if (i==0)
continue;
if (
((CGI->mh->ttiles[path->nodes[i].coord.x][path->nodes[i].coord.y][path->nodes[i].coord.z].tileInfo->tertype==TerrainTile::water)
2007-10-05 18:16:22 +00:00
&&
(CGI->mh->ttiles[path->nodes[i-1].coord.x][path->nodes[i-1].coord.y][path->nodes[i-1].coord.z].tileInfo->tertype!=TerrainTile::water))
2007-10-05 18:16:22 +00:00
||
((CGI->mh->ttiles[path->nodes[i].coord.x][path->nodes[i].coord.y][path->nodes[i].coord.z].tileInfo->tertype!=TerrainTile::water)
2007-10-05 18:16:22 +00:00
&&
(CGI->mh->ttiles[path->nodes[i-1].coord.x][path->nodes[i-1].coord.y][path->nodes[i-1].coord.z].tileInfo->tertype==TerrainTile::water))
2007-10-05 20:38:14 +00:00
||
(CGI->mh->ttiles[path->nodes[i-1].coord.x][path->nodes[i-1].coord.y][path->nodes[i-1].coord.z].tileInfo->tertype==TerrainTile::rock)
2007-10-05 18:16:22 +00:00
)
return false;
}
}
return true;
}
2007-10-05 18:10:33 +00:00
std::vector< std::vector< std::vector<unsigned char> > > & CCallback::getVisibilityMap() const
2007-10-16 17:46:01 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2007-10-16 17:46:01 +00:00
return gs->players[player].fogOfWarMap;
2007-10-19 21:12:37 +00:00
}
bool CCallback::isVisible(int3 pos, int Player) const
2007-10-19 21:12:37 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2007-10-19 21:12:37 +00:00
return gs->players[Player].fogOfWarMap[pos.x][pos.y][pos.z];
}
std::vector < const CGTownInstance *> CCallback::getTownsInfo(bool onlyOur) const
2008-02-18 21:14:28 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2008-02-18 21:14:28 +00:00
std::vector < const CGTownInstance *> ret = std::vector < const CGTownInstance *>();
2008-07-25 17:28:28 +00:00
for ( std::map<ui8, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
2008-02-18 21:14:28 +00:00
{
for (size_t j=0; j < (*i).second.towns.size(); ++j)
2008-02-18 21:14:28 +00:00
{
if ( ( isVisible((*i).second.towns[j],player) ) || (*i).first==player)
2008-02-18 21:14:28 +00:00
{
ret.push_back((*i).second.towns[j]);
}
}
} // for ( std::map<int, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
return ret;
}
std::vector < const CGHeroInstance *> CCallback::getHeroesInfo(bool onlyOur) const
2007-10-19 21:12:37 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2008-08-01 21:41:38 +00:00
std::vector < const CGHeroInstance *> ret;
for(size_t i=0;i<gs->map->heroes.size();i++)
2007-10-19 21:12:37 +00:00
{
2008-08-01 21:41:38 +00:00
if( (gs->map->heroes[i]->tempOwner==player) ||
(isVisible(gs->map->heroes[i]->getPosition(false),player) && !onlyOur) )
2007-10-19 21:12:37 +00:00
{
2008-08-01 21:41:38 +00:00
ret.push_back(gs->map->heroes[i]);
2007-10-19 21:12:37 +00:00
}
2008-08-01 21:41:38 +00:00
}
2007-10-19 21:12:37 +00:00
return ret;
}
bool CCallback::isVisible(int3 pos) const
2007-10-19 21:12:37 +00:00
{
2008-08-20 19:02:48 +00:00
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2007-10-19 21:12:37 +00:00
return isVisible(pos,player);
2007-10-24 19:54:35 +00:00
}
bool CCallback::isVisible( CGObjectInstance *obj, int Player ) const
{
//object is visible when at least one blocked tile is visible
for(int fx=0; fx<8; ++fx)
{
for(int fy=0; fy<6; ++fy)
{
int3 pos = obj->pos + int3(fx-7,fy-5,0);
if(gs->map->isInTheMap(pos)
&& !((obj->defInfo->blockMap[fy] >> (7 - fx)) & 1)
&& isVisible(pos,Player) )
return true;
}
}
return false;
}
int CCallback::getMyColor() const
2007-12-01 12:50:33 +00:00
{
return player;
}
int CCallback::getHeroSerial(const CGHeroInstance * hero) const
2007-12-06 19:06:07 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
for (size_t i=0; i<gs->players[player].heroes.size();i++)
2007-12-06 19:06:07 +00:00
{
if (gs->players[player].heroes[i]==hero)
return i;
}
return -1;
}
const CCreatureSet* CCallback::getGarrison(const CGObjectInstance *obj) const
2008-01-26 19:36:31 +00:00
{
2008-08-20 19:02:48 +00:00
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
const CArmedInstance *armi = dynamic_cast<const CArmedInstance*>(obj);
if(!armi)
2008-01-28 20:58:19 +00:00
return NULL;
else
return &armi->army;
2008-01-28 14:01:09 +00:00
}
int CCallback::swapCreatures(const CArmedInstance *s1, const CArmedInstance *s2, int p1, int p2)
2008-01-28 14:01:09 +00:00
{
ArrangeStacks pack(1,p1,p2,s1->id,s2->id,0);
*cl->serv << &pack;
2008-04-13 11:05:39 +00:00
return 0;
2008-01-26 19:36:31 +00:00
}
int CCallback::mergeStacks(const CArmedInstance *s1, const CArmedInstance *s2, int p1, int p2)
{
ArrangeStacks pack(2,p1,p2,s1->id,s2->id,0);
*cl->serv << &pack;
2008-04-13 11:05:39 +00:00
return 0;
2008-01-29 22:47:43 +00:00
}
int CCallback::splitStack(const CArmedInstance *s1, const CArmedInstance *s2, int p1, int p2, int val)
2008-01-29 22:47:43 +00:00
{
ArrangeStacks pack(3,p1,p2,s1->id,s2->id,val);
*cl->serv << &pack;
2008-04-19 16:15:04 +00:00
return 0;
2008-01-29 22:47:43 +00:00
}
bool CCallback::dismissHero(const CGHeroInstance *hero)
{
2008-08-01 21:41:38 +00:00
if(player!=hero->tempOwner) return false;
DismissHero pack(hero->id);
*cl->serv << &pack;
2008-08-01 21:41:38 +00:00
return true;
}
int CCallback::getMySerial() const
2007-12-01 12:50:33 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2007-12-01 12:50:33 +00:00
return gs->players[player].serial;
}
2009-03-29 12:02:37 +00:00
bool CCallback::swapArtifacts(const CGHeroInstance * hero1, ui16 pos1, const CGHeroInstance * hero2, ui16 pos2)
{
2008-08-20 19:02:48 +00:00
if(player!=hero1->tempOwner || player!=hero2->tempOwner)
return false;
2009-03-29 12:02:37 +00:00
ExchangeArtifacts ea(hero1->id, hero2->id, pos1, pos2);
2009-03-29 12:02:37 +00:00
*cl->serv << &ea;
return true;
}
bool CCallback::buildBuilding(const CGTownInstance *town, si32 buildingID)
2008-03-21 00:03:31 +00:00
{
CGTownInstance * t = const_cast<CGTownInstance *>(town);
2008-05-03 15:30:11 +00:00
if(town->tempOwner!=player)
2008-03-23 01:01:17 +00:00
return false;
CBuilding *b = CGI->buildh->buildings[t->subID][buildingID];
2008-03-21 00:03:31 +00:00
for(int i=0;i<7;i++)
if(b->resources[i] > gs->players[player].resources[i])
return false; //lack of resources
BuildStructure pack(town->id,buildingID);
*cl->serv << &pack;
2008-03-21 00:03:31 +00:00
return true;
}
2008-03-10 20:19:41 +00:00
int CCallback::battleGetBattlefieldType()
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
return gs->battleGetBattlefieldType();
2008-03-10 20:19:41 +00:00
}
2008-04-13 11:05:39 +00:00
int CCallback::battleGetObstaclesAtTile(int tile) //returns bitfield
{
//TODO - write
return -1;
}
std::vector<CObstacleInstance> CCallback::battleGetAllObstacles()
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
if(gs->curB)
return gs->curB->obstacles;
else
return std::vector<CObstacleInstance>();
}
2008-04-07 17:51:46 +00:00
int CCallback::battleGetStack(int pos)
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
return gs->battleGetStack(pos);
2008-04-07 17:51:46 +00:00
}
2008-07-02 08:39:56 +00:00
CStack* CCallback::battleGetStackByID(int ID)
2008-04-07 17:51:46 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
if(!gs->curB) return NULL;
return gs->curB->getStack(ID);
2008-04-07 17:51:46 +00:00
}
2008-09-28 21:01:49 +00:00
int CCallback::battleMakeAction(BattleAction* action)
{
MakeCustomAction mca(*action);
*cl->serv << &mca;
2008-09-28 21:01:49 +00:00
return 0;
}
2008-07-02 08:39:56 +00:00
CStack* CCallback::battleGetStackByPos(int pos)
2008-06-11 01:58:18 +00:00
{
2008-08-20 19:02:48 +00:00
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2008-06-11 01:58:18 +00:00
return battleGetStackByID(battleGetStack(pos));
}
2008-03-29 10:59:18 +00:00
int CCallback::battleGetPos(int stack)
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
if(!gs->curB)
{
tlog2<<"battleGetPos called when there is no battle!"<<std::endl;
return -1;
}
for(size_t g=0; g<gs->curB->stacks.size(); ++g)
2008-03-29 10:59:18 +00:00
{
if(gs->curB->stacks[g]->ID == stack)
return gs->curB->stacks[g]->position;
2008-03-29 10:59:18 +00:00
}
2008-04-07 17:51:46 +00:00
return -1;
}
std::map<int, CStack> CCallback::battleGetStacks()
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
std::map<int, CStack> ret;
2008-09-05 16:08:25 +00:00
if(!gs->curB) //there is no battle
{
return ret;
}
for(size_t g=0; g<gs->curB->stacks.size(); ++g)
{
ret[gs->curB->stacks[g]->ID] = *(gs->curB->stacks[g]);
}
return ret;
}
2008-12-20 17:08:51 +00:00
std::vector<CStack> CCallback::battleGetStackQueue()
{
if(!gs->curB)
{
tlog2<<"battleGetStackQueue called when there is not battle!"<<std::endl;
return std::vector<CStack>();
}
2008-12-20 17:08:51 +00:00
return gs->curB->getStackQueue();
}
2008-03-23 17:25:38 +00:00
CCreature CCallback::battleGetCreature(int number)
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx); //TODO use me?
if(!gs->curB)
{
tlog2<<"battleGetCreature called when there is no battle!"<<std::endl;
}
for(size_t h=0; h<gs->curB->stacks.size(); ++h)
2008-03-24 13:25:11 +00:00
{
if(gs->curB->stacks[h]->ID == number) //creature found
return *(gs->curB->stacks[h]->creature);
2008-03-24 13:25:11 +00:00
}
#ifndef __GNUC__
throw new std::exception("Cannot find the creature");
#else
throw new std::exception();
#endif
2008-03-23 17:25:38 +00:00
}
std::vector<int> CCallback::battleGetAvailableHexes(int ID, bool addOccupiable)
2008-03-29 10:59:18 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
if(!gs->curB)
{
tlog2<<"battleGetAvailableHexes called when there is no battle!"<<std::endl;
return std::vector<int>();
}
return gs->curB->getAccessibility(ID, addOccupiable);
2008-08-05 23:33:08 +00:00
//return gs->battleGetRange(ID);
2008-03-29 10:59:18 +00:00
}
2008-04-07 17:51:46 +00:00
bool CCallback::battleIsStackMine(int ID)
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
if(!gs->curB)
{
tlog2<<"battleIsStackMine called when there is no battle!"<<std::endl;
return false;
}
for(size_t h=0; h<gs->curB->stacks.size(); ++h)
2008-04-07 17:51:46 +00:00
{
if(gs->curB->stacks[h]->ID == ID) //creature found
return gs->curB->stacks[h]->owner == player;
2008-04-07 17:51:46 +00:00
}
return false;
}
2008-10-31 22:41:22 +00:00
bool CCallback::battleCanShoot(int ID, int dest)
2008-08-02 15:08:03 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2008-11-17 18:47:43 +00:00
CStack *our = battleGetStackByID(ID), *dst = battleGetStackByPos(dest);
if(!our || !dst || !gs->curB) return false;
2008-11-17 18:47:43 +00:00
2009-05-16 14:49:06 +00:00
//for(size_t g=0; g<our->effects.size(); ++g)
//{
// if(61 == our->effects[g].id) //forgetfulness
// return false;
//}
if(our->hasFeatureOfType(StackFeature::FORGETFULL)) //forgetfulness
return false;
2008-11-17 18:47:43 +00:00
if(our->hasFeatureOfType(StackFeature::SHOOTER)//it's shooter
2008-10-11 13:14:52 +00:00
&& our->owner != dst->owner
&& dst->alive()
&& !gs->curB->isStackBlocked(ID)
2008-10-31 22:41:22 +00:00
&& our->shots
2008-10-11 13:14:52 +00:00
)
2008-08-02 15:08:03 +00:00
return true;
return false;
}
bool CCallback::battleCanCastSpell()
{
if(!gs->curB) //there is no battle
return false;
if(gs->curB->side1 == player)
2009-05-12 03:35:51 +00:00
return gs->curB->castSpells[0] == 0 && gs->getHero(gs->curB->hero1)->getArt(17);
else
2009-05-12 03:35:51 +00:00
return gs->curB->castSpells[1] == 0 && gs->getHero(gs->curB->hero2)->getArt(17);
}
void CCallback::swapGarrisonHero( const CGTownInstance *town )
{
if(town->tempOwner != player) return;
GarrisonHeroSwap pack(town->id);
*cl->serv << &pack;
}
void CCallback::buyArtifact(const CGHeroInstance *hero, int aid)
{
if(hero->tempOwner != player) return;
BuyArtifact pack(hero->id,aid);
*cl->serv << &pack;
2008-08-28 17:36:34 +00:00
}
std::vector < const CGObjectInstance * > CCallback::getBlockingObjs( int3 pos ) const
2008-08-28 17:36:34 +00:00
{
std::vector<const CGObjectInstance *> ret;
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2009-02-01 14:11:41 +00:00
if(!gs->map->isInTheMap(pos) || !isVisible(pos))
return ret;
2008-08-28 17:36:34 +00:00
BOOST_FOREACH(const CGObjectInstance * obj, gs->map->terrain[pos.x][pos.y][pos.z].blockingObjects)
ret.push_back(obj);
return ret;
}
std::vector < const CGObjectInstance * > CCallback::getVisitableObjs( int3 pos ) const
2008-08-28 17:36:34 +00:00
{
std::vector<const CGObjectInstance *> ret;
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2009-02-01 14:11:41 +00:00
if(!gs->map->isInTheMap(pos) || !isVisible(pos))
return ret;
2008-08-28 17:36:34 +00:00
BOOST_FOREACH(const CGObjectInstance * obj, gs->map->terrain[pos.x][pos.y][pos.z].visitableObjects)
ret.push_back(obj);
return ret;
2008-09-07 03:38:37 +00:00
}
void CCallback::getMarketOffer( int t1, int t2, int &give, int &rec, int mode/*=0*/ ) const
2008-09-07 03:38:37 +00:00
{
if(mode) return; //TODO - support
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
//if(gs->resVals[t1] >= gs->resVals[t2])
float r = gs->resVals[t1], //price of given resource
g = gs->resVals[t2] / gs->getMarketEfficiency(player,mode); //price of wanted resource
if(r>g) //if given resource is more expensive than wanted
2008-09-07 03:38:37 +00:00
{
rec = ceil(r / g);
2008-09-07 03:38:37 +00:00
give = 1;
}
else //if wanted resource is more expensive
2008-09-07 03:38:37 +00:00
{
give = ceil(g / r);
2008-09-07 03:38:37 +00:00
rec = 1;
}
}
std::vector < const CGObjectInstance * > CCallback::getFlaggableObjects(int3 pos) const
{
2009-02-01 14:11:41 +00:00
if(!isVisible(pos))
return std::vector < const CGObjectInstance * >();
std::vector < const CGObjectInstance * > ret;
std::vector < std::pair<const CGObjectInstance*,SDL_Rect> > & objs = CGI->mh->ttiles[pos.x][pos.y][pos.z].objects;
for(size_t b=0; b<objs.size(); ++b)
{
if(objs[b].first->tempOwner!=254 && !((objs[b].first->defInfo->blockMap[pos.y - objs[b].first->pos.y + 5] >> (objs[b].first->pos.x - pos.x)) & 1))
ret.push_back(CGI->mh->ttiles[pos.x][pos.y][pos.z].objects[b].first);
}
return ret;
}
int3 CCallback::getMapSize() const
{
return CGI->mh->sizes;
}
2008-09-07 03:38:37 +00:00
void CCallback::trade( int mode, int id1, int id2, int val1 )
{
int p1, p2;
getMarketOffer(id1,id2,p1,p2,mode);
TradeOnMarketplace pack(player,mode,id1,id2,val1);
*cl->serv << &pack;
2008-09-18 13:54:54 +00:00
}
void CCallback::setFormation(const CGHeroInstance * hero, bool tight)
2008-09-18 13:54:54 +00:00
{
const_cast<CGHeroInstance*>(hero)->army.formation = tight;
SetFormation pack(hero->id,tight);
*cl->serv << &pack;
}
void CCallback::setSelection(const CArmedInstance * obj)
{
SetSelection ss;
ss.player = player;
ss.id = obj->id;
*cl->serv << &ss;
}
void CCallback::recruitHero(const CGTownInstance *town, const CGHeroInstance *hero)
{
ui8 i=0;
for(; i<gs->players[player].availableHeroes.size(); i++)
{
if(gs->players[player].availableHeroes[i] == hero)
{
HireHero pack(i,town->id);
*cl->serv << &pack;
return;
}
}
}
std::vector<const CGHeroInstance *> CCallback::getAvailableHeroes(const CGTownInstance * town) const
{
std::vector<const CGHeroInstance *> ret(gs->players[player].availableHeroes.size());
std::copy(gs->players[player].availableHeroes.begin(),gs->players[player].availableHeroes.end(),ret.begin());
return ret;
2009-02-20 15:44:49 +00:00
}
const TerrainTile * CCallback::getTileInfo( int3 tile ) const
2009-02-20 15:44:49 +00:00
{
2009-05-22 19:20:30 +00:00
if(!gs->map->isInTheMap(tile))
{
tlog1 << tile << "is outside the map! (call to getTileInfo)\n";
return NULL;
}
if(!isVisible(tile, player)) return NULL;
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
2009-02-20 15:44:49 +00:00
return &gs->map->getTile(tile);
}
int CCallback::canBuildStructure( const CGTownInstance *t, int ID )
{
return gs->canBuildStructure(t,ID);
2009-03-19 14:17:19 +00:00
}
bool CCallback::getPath(int3 src, int3 dest, const CGHeroInstance * hero, CPath &ret)
2009-03-19 14:17:19 +00:00
{
boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
return gs->getPath(src,dest,hero, ret);
}
void CCallback::save( const std::string &fname )
{
cl->save(fname);
2009-04-04 19:26:41 +00:00
}
2009-04-05 14:37:14 +00:00
void CCallback::sendMessage(const std::string &mess)
{
PlayerMessage pm(player, mess);
*cl->serv << &pm;
2009-05-12 03:35:51 +00:00
}