2007-08-27 17:15:03 +03:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "CCallback.h"
|
2007-08-29 13:05:50 +03:00
|
|
|
#include "CPathfinder.h"
|
2008-07-01 11:01:02 +03:00
|
|
|
#include "hch/CHeroHandler.h"
|
|
|
|
#include "hch/CTownHandler.h"
|
2007-08-29 15:18:31 +03:00
|
|
|
#include "CGameInfo.h"
|
2008-07-01 11:01:02 +03:00
|
|
|
#include "hch/CAmbarCendamo.h"
|
2007-08-29 15:18:31 +03:00
|
|
|
#include "mapHandler.h"
|
2007-08-30 13:11:53 +03:00
|
|
|
#include "CGameState.h"
|
2007-11-19 00:58:28 +02:00
|
|
|
#include "CPlayerInterface.h"
|
2007-10-27 22:38:48 +03:00
|
|
|
#include "CLua.h"
|
2007-11-19 00:58:28 +02:00
|
|
|
#include "hch/CGeneralTextHandler.h"
|
|
|
|
#include "CAdvmapInterface.h"
|
|
|
|
#include "CPlayerInterface.h"
|
2008-03-21 02:03:31 +02:00
|
|
|
#include "hch/CBuildingHandler.h"
|
2008-07-02 11:39:56 +03:00
|
|
|
#include "hch/CObjectHandler.h"
|
2008-07-27 20:07:37 +03:00
|
|
|
#include "lib/Connection.h"
|
|
|
|
#include "client/Client.h"
|
|
|
|
#include <boost/thread.hpp>
|
2008-07-28 15:44:08 +03:00
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include "lib/NetPacks.h"
|
2008-07-25 20:28:28 +03:00
|
|
|
//LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
|
2008-07-28 15:44:08 +03:00
|
|
|
extern CSharedCond<std::set<IPack*> > mess;
|
2008-03-14 20:24:37 +02:00
|
|
|
|
2008-07-28 15:44:08 +03:00
|
|
|
HeroMoveDetails::HeroMoveDetails(int3 Src, int3 Dst, CGHeroInstance*Ho)
|
|
|
|
:src(Src),dst(Dst),ho(Ho)
|
|
|
|
{
|
|
|
|
owner = ho->getOwner();
|
|
|
|
};
|
2007-10-05 21:16:22 +03:00
|
|
|
bool CCallback::moveHero(int ID, CPath * path, int idtype, int pathType)
|
2007-08-27 17:15:03 +03:00
|
|
|
{
|
2007-10-27 22:38:48 +03:00
|
|
|
CGHeroInstance * hero = NULL;
|
2007-10-05 21:16:22 +03:00
|
|
|
|
|
|
|
if (idtype==0)
|
|
|
|
{
|
|
|
|
if (player==-1)
|
|
|
|
hero=gs->players[player+1].heroes[ID];
|
|
|
|
else
|
|
|
|
hero=gs->players[player].heroes[ID];
|
|
|
|
}
|
2007-10-11 23:13:13 +03:00
|
|
|
else if (idtype==1 && player>=0) //looking for it in local area
|
2007-10-05 21:16:22 +03:00
|
|
|
{
|
|
|
|
for (int i=0; i<gs->players[player].heroes.size();i++)
|
|
|
|
{
|
|
|
|
if (gs->players[player].heroes[i]->type->ID == ID)
|
|
|
|
hero = gs->players[player].heroes[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else //idtype==1; player<0
|
2007-10-04 19:40:40 +03:00
|
|
|
{
|
2007-10-05 21:16:22 +03:00
|
|
|
|
2008-07-25 20:28:28 +03:00
|
|
|
for(std::map<ui8, PlayerState>::iterator j=CGI->state->players.begin(); j!=CGI->state->players.end(); ++j)
|
2007-10-05 21:16:22 +03:00
|
|
|
{
|
|
|
|
for (int i=0; i<(*j).second.heroes.size();i++)
|
|
|
|
{
|
|
|
|
if ((*j).second.heroes[i]->type->ID == ID)
|
|
|
|
{
|
|
|
|
hero = (*j).second.heroes[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-10-04 19:40:40 +03:00
|
|
|
}
|
2007-10-05 21:16:22 +03:00
|
|
|
|
|
|
|
if (!hero)
|
|
|
|
return false; //can't find hero
|
|
|
|
if(!verifyPath(path,!hero->canWalkOnSea()))//TODO: not check sea, if hero has flying or walking on water
|
|
|
|
return false; //invalid path
|
|
|
|
|
|
|
|
//check path format
|
|
|
|
if (pathType==0)
|
|
|
|
CPathfinder::convertPath(path,pathType);
|
|
|
|
if (pathType>1)
|
|
|
|
throw std::exception("Unknown path format");
|
|
|
|
|
|
|
|
CPath * ourPath = path;
|
2007-08-29 15:18:31 +03:00
|
|
|
if(!ourPath)
|
|
|
|
return false;
|
2007-09-13 16:34:59 +03:00
|
|
|
for(int i=ourPath->nodes.size()-1; i>0; i--)
|
2007-08-30 13:11:53 +03:00
|
|
|
{
|
2008-07-28 15:44:08 +03:00
|
|
|
int3 stpos(ourPath->nodes[i].coord.x, ourPath->nodes[i].coord.y, hero->pos.z),
|
|
|
|
endpos(ourPath->nodes[i-1].coord.x, ourPath->nodes[i-1].coord.y, hero->pos.z);
|
|
|
|
HeroMoveDetails curd(stpos,endpos,hero);
|
|
|
|
|
|
|
|
*cl->serv << ui16(501) << hero->id << stpos << endpos;
|
|
|
|
{//wait till there is server answer
|
|
|
|
boost::unique_lock<boost::mutex> lock(*mess.mx);
|
|
|
|
while(std::find_if(mess.res->begin(),mess.res->end(),IPack::isType<501>) == mess.res->end())
|
|
|
|
mess.cv->wait(lock);
|
|
|
|
std::set<IPack*>::iterator itr = std::find_if(mess.res->begin(),mess.res->end(),IPack::isType<501>);
|
|
|
|
TryMoveHero tmh = *static_cast<TryMoveHero*>(*itr);
|
|
|
|
mess.res->erase(itr);
|
|
|
|
if(!tmh.result)
|
2007-11-25 15:16:45 +02:00
|
|
|
return false;
|
2007-08-30 13:11:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2007-08-29 15:18:31 +03:00
|
|
|
}
|
2007-09-14 16:11:10 +03:00
|
|
|
|
2007-12-25 18:25:53 +02:00
|
|
|
void CCallback::selectionMade(int selection, int asker)
|
|
|
|
{
|
|
|
|
//todo - jak bedzie multiplayer po sieci, to moze wymagac przerobek zaleznych od obranego modelu
|
|
|
|
IChosen * ask = (IChosen *)asker;
|
|
|
|
ask->chosen(selection);
|
|
|
|
}
|
2008-04-11 20:41:02 +03:00
|
|
|
void CCallback::recruitCreatures(const CGObjectInstance *obj, int ID, int amount)
|
|
|
|
{
|
|
|
|
if(amount<=0) return;
|
2008-06-01 16:42:29 +03:00
|
|
|
if(obj->ID==98) //recruiting from town
|
2008-04-11 20:41:02 +03:00
|
|
|
{
|
2008-06-01 16:42:29 +03:00
|
|
|
int ser=-1; //used dwelling level
|
2008-04-11 20:41:02 +03:00
|
|
|
CGTownInstance *t = const_cast<CGTownInstance*>(static_cast<const CGTownInstance*>(obj));
|
|
|
|
|
|
|
|
//verify
|
|
|
|
bool found = false;
|
|
|
|
typedef std::pair<const int,int> Parka;
|
|
|
|
for(std::map<int,int>::iterator av=t->strInfo.creatures.begin();av!=t->strInfo.creatures.end();av++)
|
|
|
|
{
|
2008-06-01 16:42:29 +03:00
|
|
|
if( ( found = (ID == t->town->basicCreatures[av->first]) ) //creature is available among basic cretures
|
|
|
|
|| (found = (ID == t->town->upgradedCreatures[av->first])) )//creature is available among upgraded cretures
|
2008-04-11 20:41:02 +03:00
|
|
|
{
|
2008-07-27 20:07:37 +03:00
|
|
|
amount = min(amount,av->second); //reduce recruited amount up to available amount
|
2008-04-13 14:05:39 +03:00
|
|
|
ser = av->first;
|
2008-04-11 20:41:02 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!found) //no such creature
|
|
|
|
return;
|
|
|
|
|
2008-05-12 08:46:04 +03:00
|
|
|
if(amount > CGI->creh->creatures[ID].maxAmount(gs->players[player].resources))
|
|
|
|
return; //not enough resources
|
|
|
|
|
2008-06-01 16:42:29 +03:00
|
|
|
//for(int i=0;i<RESOURCE_QUANTITY;i++)
|
|
|
|
// if (gs->players[player].resources[i] < (CGI->creh->creatures[ID].cost[i] * amount))
|
|
|
|
// return; //not enough resources
|
2008-04-11 20:41:02 +03:00
|
|
|
|
|
|
|
if(amount<=0) return;
|
|
|
|
|
|
|
|
//recruit
|
2008-06-01 16:42:29 +03:00
|
|
|
int slot = -1; //slot ID
|
2008-04-11 20:41:02 +03:00
|
|
|
std::pair<int,std::pair<CCreature*,int> > parb;
|
|
|
|
|
2008-06-01 16:42:29 +03:00
|
|
|
for(int i=0;i<7;i++) //TODO: if there is already stack of same creatures it should be used always
|
2008-04-11 20:41:02 +03:00
|
|
|
{
|
2008-05-31 23:37:54 +03:00
|
|
|
if((!t->army.slots[i].first) || (t->army.slots[i].first->idNumber == ID)) //slot is free or there is saem creature
|
2008-04-11 20:41:02 +03:00
|
|
|
{
|
|
|
|
slot = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(slot<0) //no free slot
|
|
|
|
return;
|
|
|
|
|
|
|
|
for(int i=0;i<RESOURCE_QUANTITY;i++)
|
|
|
|
gs->players[player].resources[i] -= (CGI->creh->creatures[ID].cost[i] * amount);
|
2008-04-13 14:05:39 +03:00
|
|
|
|
|
|
|
t->strInfo.creatures[ser] -= amount;
|
2008-05-31 23:37:54 +03:00
|
|
|
if(t->army.slots[slot].first) //add new creatures to the existing stack
|
|
|
|
{
|
|
|
|
t->army.slots[slot].second += amount;
|
|
|
|
}
|
|
|
|
else //create new stack in the garrison
|
|
|
|
{
|
|
|
|
t->army.slots[slot].first = &CGI->creh->creatures[ID];
|
|
|
|
t->army.slots[slot].second = amount;
|
|
|
|
}
|
2008-07-28 15:44:08 +03:00
|
|
|
cl->playerint[player]->garrisonChanged(obj);
|
2008-04-11 20:41:02 +03:00
|
|
|
|
|
|
|
}
|
2008-06-01 16:42:29 +03:00
|
|
|
//TODO: recruit from dwellings on the adventure map
|
2008-04-11 20:41:02 +03:00
|
|
|
}
|
2007-09-14 16:11:10 +03:00
|
|
|
|
2008-05-23 22:50:11 +03:00
|
|
|
|
|
|
|
bool CCallback::dismissCreature(const CArmedInstance *obj, int stackPos)
|
|
|
|
{
|
2008-06-01 16:42:29 +03:00
|
|
|
if((player>=0) && obj->tempOwner != player)
|
2008-05-31 23:37:54 +03:00
|
|
|
return false;
|
|
|
|
CArmedInstance *ob = const_cast<CArmedInstance*>(obj);
|
|
|
|
ob->army.slots.erase(stackPos);
|
2008-07-28 15:44:08 +03:00
|
|
|
cl->playerint[player]->garrisonChanged(obj);
|
2008-05-31 23:37:54 +03:00
|
|
|
return true;
|
2008-05-23 22:50:11 +03:00
|
|
|
}
|
2008-05-31 23:37:54 +03:00
|
|
|
bool CCallback::upgradeCreature(const CArmedInstance *obj, int stackPos, int newID)
|
2008-05-23 22:50:11 +03:00
|
|
|
{
|
2008-06-01 16:42:29 +03:00
|
|
|
//TODO: write
|
2008-05-23 22:50:11 +03:00
|
|
|
return false;
|
|
|
|
}
|
2008-07-27 20:07:37 +03:00
|
|
|
void CCallback::endTurn()
|
|
|
|
{
|
|
|
|
std::cout << "Player "<<(unsigned)player<<" end his turn."<<std::endl;
|
|
|
|
cl->serv->wmx->lock();
|
|
|
|
*cl->serv << ui16(100); //report that we ended turn
|
|
|
|
cl->serv->wmx->unlock();
|
|
|
|
}
|
2008-05-23 22:50:11 +03:00
|
|
|
UpgradeInfo CCallback::getUpgradeInfo(const CArmedInstance *obj, int stackPos)
|
|
|
|
{
|
2008-05-31 23:37:54 +03:00
|
|
|
UpgradeInfo ret;
|
|
|
|
CCreature *base = ((CArmedInstance*)obj)->army.slots[stackPos].first;
|
|
|
|
if((obj->ID == 98) || ((obj->ID == 34) && static_cast<const CGHeroInstance*>(obj)->visitedTown))
|
|
|
|
{
|
|
|
|
CGTownInstance * t;
|
|
|
|
if(obj->ID == 98)
|
|
|
|
t = static_cast<CGTownInstance *>(const_cast<CArmedInstance *>(obj));
|
|
|
|
else
|
|
|
|
t = static_cast<const CGHeroInstance*>(obj)->visitedTown;
|
|
|
|
for(std::set<int>::iterator i=t->builtBuildings.begin(); i!=t->builtBuildings.end(); i++)
|
|
|
|
{
|
|
|
|
if( (*i) >= 37 && (*i) < 44 ) //upgraded creature dwelling
|
|
|
|
{
|
|
|
|
int nid = t->town->upgradedCreatures[(*i)-37]; //upgrade offered by that building
|
|
|
|
if(base->upgrades.find(nid) != base->upgrades.end()) //possible upgrade
|
|
|
|
{
|
|
|
|
ret.newID.push_back(nid);
|
|
|
|
ret.cost.push_back(std::set<std::pair<int,int> >());
|
|
|
|
for(int j=0;j<RESOURCE_QUANTITY;j++)
|
|
|
|
{
|
|
|
|
int dif = CGI->creh->creatures[nid].cost[j] - base->cost[j];
|
|
|
|
if(dif)
|
|
|
|
ret.cost[ret.cost.size()-1].insert(std::make_pair(j,dif));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}//end for
|
|
|
|
}
|
|
|
|
//TODO: check if hero ability makes some upgrades possible
|
|
|
|
|
|
|
|
if(ret.newID.size())
|
|
|
|
ret.oldID = base->idNumber;
|
|
|
|
|
|
|
|
return ret;
|
2008-05-23 22:50:11 +03:00
|
|
|
}
|
|
|
|
|
2008-06-30 03:06:41 +03:00
|
|
|
const StartInfo * CCallback::getStartInfo()
|
|
|
|
{
|
|
|
|
return gs->scenarioOps;
|
|
|
|
}
|
|
|
|
|
2007-09-18 16:30:26 +03:00
|
|
|
int CCallback::howManyTowns()
|
|
|
|
{
|
|
|
|
return gs->players[gs->currentPlayer].towns.size();
|
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
const CGTownInstance * CCallback::getTownInfo(int val, bool mode) //mode = 0 -> val = serial; mode = 1 -> val = ID
|
2007-09-18 16:30:26 +03: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;
|
|
|
|
}
|
2007-10-20 00:12:37 +03:00
|
|
|
int CCallback::howManyHeroes()
|
2007-09-14 16:11:10 +03:00
|
|
|
{
|
|
|
|
return gs->players[player].heroes.size();
|
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
const CGHeroInstance * CCallback::getHeroInfo(int player, int val, bool mode) //mode = 0 -> val = serial; mode = 1 -> val = ID
|
2007-09-14 16:11:10 +03:00
|
|
|
{
|
|
|
|
if (gs->currentPlayer!=player) //TODO: checking if we are allowed to give that info
|
|
|
|
return NULL;
|
|
|
|
if (!mode)
|
2008-01-20 18:24:03 +02:00
|
|
|
if(val<gs->players[player].heroes.size())
|
|
|
|
return gs->players[player].heroes[val];
|
|
|
|
else return NULL;
|
2007-09-14 16:11:10 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
for (int i=0; i<gs->players[player].heroes.size();i++)
|
|
|
|
{
|
|
|
|
if (gs->players[player].heroes[i]->type->ID==val)
|
|
|
|
return gs->players[player].heroes[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
2007-09-16 20:21:23 +03:00
|
|
|
}
|
2007-09-18 16:30:26 +03:00
|
|
|
|
2007-09-16 20:21:23 +03:00
|
|
|
int CCallback::getResourceAmount(int type)
|
|
|
|
{
|
2007-12-01 14:50:33 +02:00
|
|
|
return gs->players[player].resources[type];
|
2007-09-18 16:30:26 +03:00
|
|
|
}
|
2008-05-12 08:46:04 +03:00
|
|
|
std::vector<int> CCallback::getResourceAmount()
|
|
|
|
{
|
|
|
|
return gs->players[player].resources;
|
|
|
|
}
|
2007-09-18 16:30:26 +03:00
|
|
|
int CCallback::getDate(int mode)
|
|
|
|
{
|
2008-07-25 20:28:28 +03:00
|
|
|
return gs->getDate(mode);
|
2007-10-05 21:10:33 +03:00
|
|
|
}
|
2008-07-29 12:53:27 +03:00
|
|
|
std::vector < std::string > CCallback::getObjDescriptions(int3 pos)
|
|
|
|
{
|
|
|
|
std::vector<std::string> ret;
|
|
|
|
//BOOST_FOREACH(const CGObjectInstance * obj, gs->map->terrain[i][j]
|
|
|
|
//{
|
|
|
|
// if( (5-(objs[g].first->pos.y-pos.y)) >= 0 && (5-(objs[g].first->pos.y-pos.y)) < 6 && (objs[g].first->pos.x-pos.x) >= 0 && (objs[g].first->pos.x-pos.x)<7 && objs[g].first->defInfo &&
|
|
|
|
// (((objs[g].first->defInfo->blockMap[5-(objs[g].first->pos.y-pos.y)])>>((objs[g].first->pos.x-pos.x)))&1)==0
|
|
|
|
// ) //checking position blocking
|
|
|
|
// {
|
|
|
|
// //unsigned char * blm = objs[g].first->defInfo->blockMap;
|
|
|
|
// if (objs[g].first->state)
|
|
|
|
// ret.push_back(objs[g].first->state->hoverText(objs[g].first));
|
|
|
|
// else
|
|
|
|
// ret.push_back(CGI->objh->objects[objs[g].first->ID].name);
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
return ret;
|
|
|
|
}
|
2007-10-05 21:16:22 +03:00
|
|
|
bool CCallback::verifyPath(CPath * path, bool blockSea)
|
|
|
|
{
|
|
|
|
for (int i=0;i<path->nodes.size();i++)
|
|
|
|
{
|
2008-07-29 12:53:27 +03: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 21:16:22 +03:00
|
|
|
return false; //path is wrong - one of the tiles is blocked
|
|
|
|
|
|
|
|
if (blockSea)
|
|
|
|
{
|
|
|
|
if (i==0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (
|
2008-07-29 12:53:27 +03:00
|
|
|
((CGI->mh->ttiles[path->nodes[i].coord.x][path->nodes[i].coord.y][path->nodes[i].coord.z].tileInfo->tertype==EterrainType::water)
|
2007-10-05 21:16:22 +03:00
|
|
|
&&
|
2008-07-29 12:53:27 +03:00
|
|
|
(CGI->mh->ttiles[path->nodes[i-1].coord.x][path->nodes[i-1].coord.y][path->nodes[i-1].coord.z].tileInfo->tertype!=EterrainType::water))
|
2007-10-05 21:16:22 +03:00
|
|
|
||
|
2008-07-29 12:53:27 +03:00
|
|
|
((CGI->mh->ttiles[path->nodes[i].coord.x][path->nodes[i].coord.y][path->nodes[i].coord.z].tileInfo->tertype!=EterrainType::water)
|
2007-10-05 21:16:22 +03:00
|
|
|
&&
|
2008-07-29 12:53:27 +03:00
|
|
|
(CGI->mh->ttiles[path->nodes[i-1].coord.x][path->nodes[i-1].coord.y][path->nodes[i-1].coord.z].tileInfo->tertype==EterrainType::water))
|
2007-10-05 23:38:14 +03:00
|
|
|
||
|
2008-07-29 12:53:27 +03:00
|
|
|
(CGI->mh->ttiles[path->nodes[i-1].coord.x][path->nodes[i-1].coord.y][path->nodes[i-1].coord.z].tileInfo->tertype==EterrainType::rock)
|
2007-10-05 21:16:22 +03:00
|
|
|
|
|
|
|
)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2007-10-05 21:10:33 +03:00
|
|
|
|
2008-06-30 03:06:41 +03:00
|
|
|
std::vector< std::vector< std::vector<unsigned char> > > & CCallback::getVisibilityMap()
|
2007-10-16 20:46:01 +03:00
|
|
|
{
|
|
|
|
return gs->players[player].fogOfWarMap;
|
2007-10-20 00:12:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CCallback::isVisible(int3 pos, int Player)
|
|
|
|
{
|
|
|
|
return gs->players[Player].fogOfWarMap[pos.x][pos.y][pos.z];
|
|
|
|
}
|
|
|
|
|
2008-02-18 23:14:28 +02:00
|
|
|
std::vector < const CGTownInstance *> CCallback::getTownsInfo(bool onlyOur)
|
|
|
|
{
|
|
|
|
std::vector < const CGTownInstance *> ret = std::vector < const CGTownInstance *>();
|
2008-07-25 20:28:28 +03:00
|
|
|
for ( std::map<ui8, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
|
2008-02-18 23:14:28 +02:00
|
|
|
{
|
|
|
|
for (int j=0;j<(*i).second.towns.size();j++)
|
|
|
|
{
|
|
|
|
if ( ( isVisible((*i).second.towns[j]->pos,player) ) || (*i).first==player)
|
|
|
|
{
|
|
|
|
ret.push_back((*i).second.towns[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // for ( std::map<int, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
|
|
|
|
return ret;
|
|
|
|
}
|
2007-12-06 20:55:58 +02:00
|
|
|
std::vector < const CGHeroInstance *> CCallback::getHeroesInfo(bool onlyOur)
|
2007-10-20 00:12:37 +03:00
|
|
|
{
|
2007-12-06 20:55:58 +02:00
|
|
|
std::vector < const CGHeroInstance *> ret = std::vector < const CGHeroInstance *>();
|
2008-07-25 20:28:28 +03:00
|
|
|
for ( std::map<ui8, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
|
2007-10-20 00:12:37 +03:00
|
|
|
{
|
|
|
|
for (int j=0;j<(*i).second.heroes.size();j++)
|
|
|
|
{
|
|
|
|
if ( ( isVisible((*i).second.heroes[j]->getPosition(false),player) ) || (*i).first==player)
|
|
|
|
{
|
2007-12-06 20:55:58 +02:00
|
|
|
ret.push_back((*i).second.heroes[j]);
|
2007-10-20 00:12:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // for ( std::map<int, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCallback::isVisible(int3 pos)
|
|
|
|
{
|
|
|
|
return isVisible(pos,player);
|
2007-10-24 22:54:35 +03:00
|
|
|
}
|
2007-11-19 00:58:28 +02:00
|
|
|
|
2007-12-01 14:50:33 +02:00
|
|
|
int CCallback::getMyColor()
|
|
|
|
{
|
|
|
|
return player;
|
|
|
|
}
|
2007-12-06 21:06:07 +02:00
|
|
|
int CCallback::getHeroSerial(const CGHeroInstance * hero)
|
|
|
|
{
|
|
|
|
for (int i=0; i<gs->players[player].heroes.size();i++)
|
|
|
|
{
|
|
|
|
if (gs->players[player].heroes[i]==hero)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
2008-01-28 16:01:09 +02:00
|
|
|
const CCreatureSet* CCallback::getGarrison(const CGObjectInstance *obj)
|
|
|
|
{
|
2008-01-28 22:58:19 +02:00
|
|
|
if(!obj)
|
|
|
|
return NULL;
|
2008-01-28 16:01:09 +02:00
|
|
|
if(obj->ID == 34)
|
|
|
|
return &(dynamic_cast<const CGHeroInstance*>(obj))->army;
|
|
|
|
else if(obj->ID == 98)
|
2008-02-25 01:06:27 +02:00
|
|
|
return &(dynamic_cast<const CGTownInstance*>(obj)->army);
|
2008-01-28 16:01:09 +02:00
|
|
|
else return NULL;
|
|
|
|
}
|
2008-01-26 21:36:31 +02:00
|
|
|
|
2008-01-28 16:01:09 +02:00
|
|
|
int CCallback::swapCreatures(const CGObjectInstance *s1, const CGObjectInstance *s2, int p1, int p2)
|
2008-01-26 21:36:31 +02:00
|
|
|
{
|
2008-01-28 16:01:09 +02:00
|
|
|
CCreatureSet *S1 = const_cast<CCreatureSet*>(getGarrison(s1)), *S2 = const_cast<CCreatureSet*>(getGarrison(s2));
|
2008-01-26 21:36:31 +02:00
|
|
|
if (false)
|
|
|
|
{
|
|
|
|
//TODO: check if we are allowed to swap these creatures
|
|
|
|
return -1;
|
|
|
|
}
|
2008-04-13 14:05:39 +03:00
|
|
|
|
|
|
|
CCreature * pom = S2->slots[p2].first;
|
|
|
|
S2->slots[p2].first = S1->slots[p1].first;
|
|
|
|
S1->slots[p1].first = pom;
|
|
|
|
int pom2 = S2->slots[p2].second;
|
|
|
|
S2->slots[p2].second = S1->slots[p1].second;
|
|
|
|
S1->slots[p1].second = pom2;
|
|
|
|
|
|
|
|
if(!S1->slots[p1].first)
|
|
|
|
S1->slots.erase(p1);
|
|
|
|
if(!S2->slots[p2].first)
|
|
|
|
S2->slots.erase(p2);
|
|
|
|
|
|
|
|
if(s1->tempOwner<PLAYER_LIMIT)
|
2008-07-28 15:44:08 +03:00
|
|
|
cl->playerint[s1->tempOwner]->garrisonChanged(s1);
|
2008-04-13 14:05:39 +03:00
|
|
|
if((s2->tempOwner<PLAYER_LIMIT) && (s2 != s1))
|
2008-07-28 15:44:08 +03:00
|
|
|
cl->playerint[s2->tempOwner]->garrisonChanged(s2);
|
2008-04-13 14:05:39 +03:00
|
|
|
return 0;
|
2008-01-26 21:36:31 +02:00
|
|
|
}
|
2008-01-27 18:07:27 +02:00
|
|
|
|
2008-01-30 00:47:43 +02:00
|
|
|
int CCallback::mergeStacks(const CGObjectInstance *s1, const CGObjectInstance *s2, int p1, int p2)
|
2008-04-13 14:05:39 +03:00
|
|
|
{
|
|
|
|
CCreatureSet *S1 = const_cast<CCreatureSet*>(getGarrison(s1)), *S2 = const_cast<CCreatureSet*>(getGarrison(s2));
|
|
|
|
if ((S1->slots[p1].first != S2->slots[p2].first) && (true /*we are allowed to*/))
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
S2->slots[p2].second += S1->slots[p1].second;
|
|
|
|
S1->slots[p1].first = NULL;
|
|
|
|
S1->slots[p1].second = 0;
|
|
|
|
|
|
|
|
S1->slots.erase(p1);
|
|
|
|
|
|
|
|
if(s1->tempOwner<PLAYER_LIMIT)
|
2008-07-28 15:44:08 +03:00
|
|
|
cl->playerint[s1->tempOwner]->garrisonChanged(s1);
|
|
|
|
|
2008-04-13 14:05:39 +03:00
|
|
|
if((s2->tempOwner<PLAYER_LIMIT) && (s2 != s1))
|
2008-07-28 15:44:08 +03:00
|
|
|
cl->playerint[s2->tempOwner]->garrisonChanged(s2);
|
2008-04-13 14:05:39 +03:00
|
|
|
return 0;
|
2008-01-30 00:47:43 +02:00
|
|
|
}
|
|
|
|
int CCallback::splitStack(const CGObjectInstance *s1, const CGObjectInstance *s2, int p1, int p2, int val)
|
|
|
|
{
|
2008-04-19 19:15:04 +03:00
|
|
|
if(!val)
|
|
|
|
return -1;
|
|
|
|
CCreatureSet *S1 = const_cast<CCreatureSet*>(getGarrison(s1)), *S2 = const_cast<CCreatureSet*>(getGarrison(s2));
|
2008-06-06 15:35:23 +03:00
|
|
|
if ((S1->slots[p1].second<val) && (true /*we are allowed to*/))
|
2008-04-19 19:15:04 +03:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
S2->slots[p2].first = S1->slots[p1].first;
|
|
|
|
S2->slots[p2].second = val;
|
|
|
|
S1->slots[p1].second -= val;
|
2008-06-06 15:35:23 +03:00
|
|
|
if(!S1->slots[p1].second) //if we've moved all creatures
|
|
|
|
S1->slots.erase(p1);
|
2008-04-19 19:15:04 +03:00
|
|
|
|
|
|
|
|
|
|
|
if(s1->tempOwner<PLAYER_LIMIT)
|
|
|
|
{
|
2008-07-28 15:44:08 +03:00
|
|
|
cl->playerint[s1->tempOwner]->garrisonChanged(s1);
|
2008-04-19 19:15:04 +03:00
|
|
|
}
|
|
|
|
if((s2->tempOwner<PLAYER_LIMIT) && (s2 != s1))
|
|
|
|
{
|
2008-07-28 15:44:08 +03:00
|
|
|
cl->playerint[s2->tempOwner]->garrisonChanged(s2);
|
2008-04-19 19:15:04 +03:00
|
|
|
}
|
|
|
|
return 0;
|
2008-01-30 00:47:43 +02:00
|
|
|
}
|
|
|
|
|
2008-01-27 18:07:27 +02:00
|
|
|
bool CCallback::dismissHero(const CGHeroInstance *hero)
|
|
|
|
{
|
|
|
|
CGHeroInstance * Vhero = const_cast<CGHeroInstance *>(hero);
|
|
|
|
CGI->mh->removeObject(Vhero);
|
|
|
|
std::vector<CGHeroInstance*>::iterator nitr = find(CGI->state->players[player].heroes.begin(), CGI->state->players[player].heroes.end(), Vhero);
|
|
|
|
CGI->state->players[player].heroes.erase(nitr);
|
|
|
|
LOCPLINT->adventureInt->heroList.updateHList();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-12-01 14:50:33 +02:00
|
|
|
int CCallback::getMySerial()
|
|
|
|
{
|
|
|
|
return gs->players[player].serial;
|
|
|
|
}
|
2007-11-19 00:58:28 +02:00
|
|
|
|
2008-01-30 12:55:43 +02:00
|
|
|
bool CCallback::swapArifacts(const CGHeroInstance * hero1, bool worn1, int pos1, const CGHeroInstance * hero2, bool worn2, int pos2)
|
|
|
|
{
|
|
|
|
if(!hero1 || !hero2) //incorrect data
|
|
|
|
return false;
|
|
|
|
CGHeroInstance * Uhero1 = const_cast<CGHeroInstance *>(hero1);
|
|
|
|
CGHeroInstance * Uhero2 = const_cast<CGHeroInstance *>(hero2);
|
|
|
|
|
|
|
|
if(worn1 && worn2)
|
|
|
|
{
|
|
|
|
std::swap(Uhero1->artifWorn[pos1], Uhero2->artifWorn[pos2]);
|
|
|
|
}
|
|
|
|
else if(worn1 && !worn2)
|
|
|
|
{
|
|
|
|
std::swap(Uhero1->artifWorn[pos1], Uhero2->artifacts[pos2]);
|
|
|
|
}
|
|
|
|
else if(!worn1 && worn2)
|
|
|
|
{
|
|
|
|
std::swap(Uhero1->artifacts[pos1], Uhero2->artifWorn[pos2]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::swap(Uhero1->artifacts[pos1], Uhero2->artifacts[pos2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2007-11-19 00:58:28 +02:00
|
|
|
|
2008-03-21 02:03:31 +02:00
|
|
|
bool CCallback::buildBuilding(const CGTownInstance *town, int buildingID)
|
|
|
|
{
|
|
|
|
CGTownInstance * t = const_cast<CGTownInstance *>(town);
|
|
|
|
CBuilding *b = CGI->buildh->buildings[t->subID][buildingID];
|
2008-05-03 18:30:11 +03:00
|
|
|
|
2008-03-23 03:01:17 +02:00
|
|
|
if(0/*not allowed*/)//TODO: check if we are allowed to build
|
|
|
|
return false;
|
2008-03-21 02:03:31 +02:00
|
|
|
|
2008-05-03 18:30:11 +03:00
|
|
|
if(buildingID>36) //upg dwelling
|
|
|
|
{
|
|
|
|
if(t->getHordeLevel(0) == (buildingID-37))
|
|
|
|
t->builtBuildings.insert(19);
|
|
|
|
else if(t->getHordeLevel(1) == (buildingID-37))
|
|
|
|
t->builtBuildings.insert(25);
|
|
|
|
}
|
|
|
|
else if(buildingID >= 30) //bas. dwelling
|
|
|
|
{
|
|
|
|
t->strInfo.creatures[buildingID-30] = CGI->creh->creatures[t->town->basicCreatures[buildingID-30]].growth;
|
|
|
|
}
|
|
|
|
|
2008-03-21 02:03:31 +02:00
|
|
|
t->builtBuildings.insert(buildingID);
|
|
|
|
for(int i=0;i<7;i++)
|
|
|
|
gs->players[player].resources[i]-=b->resources[i];
|
|
|
|
t->builded++;
|
2008-07-28 15:44:08 +03:00
|
|
|
cl->playerint[player]->buildChanged(town,buildingID,1);
|
2008-03-21 02:03:31 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-03-10 22:19:41 +02:00
|
|
|
int CCallback::battleGetBattlefieldType()
|
|
|
|
{
|
2008-07-29 12:53:27 +03:00
|
|
|
return CGI->mh->ttiles[CGI->state->curB->tile.x][CGI->state->curB->tile.y][CGI->state->curB->tile.z].tileInfo->tertype;
|
2008-03-10 22:19:41 +02:00
|
|
|
}
|
|
|
|
|
2008-04-13 14:05:39 +03:00
|
|
|
int CCallback::battleGetObstaclesAtTile(int tile) //returns bitfield
|
|
|
|
{
|
|
|
|
//TODO - write
|
|
|
|
return -1;
|
|
|
|
}
|
2008-04-07 20:51:46 +03:00
|
|
|
int CCallback::battleGetStack(int pos)
|
|
|
|
{
|
|
|
|
for(int g=0; g<CGI->state->curB->stacks.size(); ++g)
|
|
|
|
{
|
2008-06-11 04:58:18 +03:00
|
|
|
if(CGI->state->curB->stacks[g]->position == pos ||
|
|
|
|
( CGI->state->curB->stacks[g]->creature->isDoubleWide() &&
|
|
|
|
( (CGI->state->curB->stacks[g]->attackerOwned && CGI->state->curB->stacks[g]->position-1 == pos) ||
|
|
|
|
(!CGI->state->curB->stacks[g]->attackerOwned && CGI->state->curB->stacks[g]->position+1 == pos)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2008-04-07 20:51:46 +03:00
|
|
|
return CGI->state->curB->stacks[g]->ID;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-07-02 11:39:56 +03:00
|
|
|
CStack* CCallback::battleGetStackByID(int ID)
|
2008-04-07 20:51:46 +03:00
|
|
|
{
|
|
|
|
for(int g=0; g<CGI->state->curB->stacks.size(); ++g)
|
|
|
|
{
|
|
|
|
if(CGI->state->curB->stacks[g]->ID == ID)
|
2008-07-02 11:39:56 +03:00
|
|
|
return CGI->state->curB->stacks[g];
|
2008-04-07 20:51:46 +03:00
|
|
|
}
|
2008-07-02 11:39:56 +03:00
|
|
|
return NULL;
|
2008-04-07 20:51:46 +03:00
|
|
|
}
|
|
|
|
|
2008-07-02 11:39:56 +03:00
|
|
|
CStack* CCallback::battleGetStackByPos(int pos)
|
2008-06-11 04:58:18 +03:00
|
|
|
{
|
|
|
|
return battleGetStackByID(battleGetStack(pos));
|
|
|
|
}
|
|
|
|
|
2008-03-29 12:59:18 +02:00
|
|
|
int CCallback::battleGetPos(int stack)
|
|
|
|
{
|
|
|
|
for(int g=0; g<CGI->state->curB->stacks.size(); ++g)
|
|
|
|
{
|
|
|
|
if(CGI->state->curB->stacks[g]->ID == stack)
|
|
|
|
return CGI->state->curB->stacks[g]->position;
|
|
|
|
}
|
2008-04-07 20:51:46 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-03-14 20:24:37 +02:00
|
|
|
std::map<int, CStack> CCallback::battleGetStacks()
|
|
|
|
{
|
|
|
|
std::map<int, CStack> ret;
|
|
|
|
for(int g=0; g<CGI->state->curB->stacks.size(); ++g)
|
|
|
|
{
|
|
|
|
ret[CGI->state->curB->stacks[g]->ID] = *(CGI->state->curB->stacks[g]);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-03-23 19:25:38 +02:00
|
|
|
CCreature CCallback::battleGetCreature(int number)
|
|
|
|
{
|
2008-03-24 15:25:11 +02:00
|
|
|
for(int h=0; h<CGI->state->curB->stacks.size(); ++h)
|
|
|
|
{
|
|
|
|
if(CGI->state->curB->stacks[h]->ID == number) //creature found
|
|
|
|
return *(CGI->state->curB->stacks[h]->creature);
|
|
|
|
}
|
2008-04-11 20:41:02 +03:00
|
|
|
throw new std::exception("Cannot find the creature");
|
2008-03-23 19:25:38 +02:00
|
|
|
}
|
|
|
|
|
2008-03-29 12:59:18 +02:00
|
|
|
std::vector<int> CCallback::battleGetAvailableHexes(int ID)
|
|
|
|
{
|
|
|
|
return CGI->state->battleGetRange(ID);
|
|
|
|
}
|
|
|
|
|
2008-04-07 20:51:46 +03:00
|
|
|
bool CCallback::battleIsStackMine(int ID)
|
|
|
|
{
|
|
|
|
for(int h=0; h<CGI->state->curB->stacks.size(); ++h)
|
|
|
|
{
|
|
|
|
if(CGI->state->curB->stacks[h]->ID == ID) //creature found
|
|
|
|
return CGI->state->curB->stacks[h]->owner == player;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-11-19 00:58:28 +02:00
|
|
|
int3 CScriptCallback::getPos(CGObjectInstance * ob)
|
|
|
|
{
|
|
|
|
return ob->pos;
|
|
|
|
}
|
|
|
|
void CScriptCallback::changePrimSkill(int ID, int which, int val)
|
|
|
|
{
|
2008-07-28 15:44:08 +03:00
|
|
|
CGHeroInstance * hero = gs->map->getHero(ID,0);
|
2007-12-25 18:25:53 +02:00
|
|
|
if (which<PRIMARY_SKILLS)
|
2007-11-19 00:58:28 +02:00
|
|
|
{
|
2007-12-25 18:25:53 +02:00
|
|
|
hero->primSkills[which]+=val;
|
2008-07-28 15:44:08 +03:00
|
|
|
cl->playerint[hero->getOwner()]->heroPrimarySkillChanged(hero, which, val);
|
2007-11-19 00:58:28 +02:00
|
|
|
}
|
2007-12-25 18:25:53 +02:00
|
|
|
else if (which==4)
|
|
|
|
{
|
|
|
|
hero->exp+=val;
|
2008-05-03 18:30:11 +03:00
|
|
|
if(hero->exp >= CGI->heroh->reqExp(hero->level+1)) //new level
|
|
|
|
{
|
|
|
|
hero->level++;
|
|
|
|
std::cout << hero->name <<" got level "<<hero->level<<std::endl;
|
|
|
|
int r = rand()%100, pom=0, x=0;
|
2008-05-12 08:46:04 +03:00
|
|
|
int std::pair<int,int>::*g = (hero->level>9) ? (&std::pair<int,int>::second) : (&std::pair<int,int>::first);
|
2008-05-03 18:30:11 +03:00
|
|
|
for(;x<PRIMARY_SKILLS;x++)
|
|
|
|
{
|
|
|
|
pom += hero->type->heroClass->primChance[x].*g;
|
|
|
|
if(r<pom)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
std::cout << "Bohater dostaje umiejetnosc pierwszorzedna " << x << " (wynik losowania "<<r<<")"<<std::endl;
|
|
|
|
hero->primSkills[x]++;
|
|
|
|
|
|
|
|
//TODO: dac dwie umiejetnosci 2-rzedne to wyboru
|
|
|
|
|
|
|
|
}
|
2007-12-25 18:25:53 +02:00
|
|
|
//TODO - powiadomic interfejsy, sprawdzic czy nie ma awansu itp
|
|
|
|
}
|
2007-11-19 00:58:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int CScriptCallback::getHeroOwner(int heroID)
|
|
|
|
{
|
2008-06-30 03:06:41 +03:00
|
|
|
CGHeroInstance * hero = CGI->state->map->getHero(heroID,0);
|
2007-11-19 00:58:28 +02:00
|
|
|
return hero->getOwner();
|
|
|
|
}
|
|
|
|
void CScriptCallback::showInfoDialog(int player, std::string text, std::vector<SComponent*> * components)
|
|
|
|
{
|
|
|
|
//TODO: upewniac sie ze mozemy to zrzutowac (przy customowych interfejsach cos moze sie kopnac)
|
|
|
|
if (player>=0)
|
|
|
|
{
|
2008-07-28 15:44:08 +03:00
|
|
|
CGameInterface * temp = cl->playerint[player];
|
2007-11-19 00:58:28 +02:00
|
|
|
if (temp->human)
|
|
|
|
((CPlayerInterface*)(temp))->showInfoDialog(text,*components);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-07-28 15:44:08 +03:00
|
|
|
typedef std::pair<const ui8, CGameInterface*> intf;
|
|
|
|
BOOST_FOREACH(intf & i, cl->playerint)
|
2007-11-19 00:58:28 +02:00
|
|
|
{
|
2008-07-28 15:44:08 +03:00
|
|
|
if (i.second->human)
|
|
|
|
((CPlayerInterface*)(i.second))->showInfoDialog(text,*components);
|
2007-11-19 00:58:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-12-25 18:25:53 +02:00
|
|
|
|
2007-12-27 02:11:46 +02:00
|
|
|
void CScriptCallback::showSelDialog(int player, std::string text, std::vector<CSelectableComponent*>*components, IChosen * asker)
|
2007-12-25 18:25:53 +02:00
|
|
|
{
|
2008-07-28 15:44:08 +03:00
|
|
|
CGameInterface * temp = cl->playerint[player];
|
2007-12-25 18:25:53 +02:00
|
|
|
if (temp->human)
|
|
|
|
((CPlayerInterface*)(temp))->showSelDialog(text,*components,(int)asker);
|
|
|
|
return;
|
|
|
|
}
|
2007-11-19 00:58:28 +02:00
|
|
|
int CScriptCallback::getSelectedHero()
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
if (LOCPLINT->adventureInt->selection.type == HEROI_TYPE)
|
|
|
|
ret = ((CGHeroInstance*)(LOCPLINT->adventureInt->selection.selected))->subID;
|
|
|
|
else
|
|
|
|
ret = -1;;
|
|
|
|
return ret;
|
|
|
|
}
|
2007-11-24 00:33:55 +02:00
|
|
|
int CScriptCallback::getDate(int mode)
|
|
|
|
{
|
|
|
|
int temp;
|
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
return gs->day;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
temp = (gs->day)%7;
|
|
|
|
if (temp)
|
|
|
|
return temp;
|
|
|
|
else return 7;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
temp = ((gs->day-1)/7)+1;
|
|
|
|
if (!(temp%4))
|
|
|
|
return 4;
|
|
|
|
else
|
|
|
|
return (temp%4);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
return ((gs->day-1)/28)+1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
void CScriptCallback::giveResource(int player, int which, int val)
|
|
|
|
{
|
|
|
|
gs->players[player].resources[which]+=val;
|
2008-07-28 15:44:08 +03:00
|
|
|
cl->playerint[player]->receivedResource(which,val);
|
2007-11-24 00:33:55 +02:00
|
|
|
}
|
2007-12-22 16:40:27 +02:00
|
|
|
void CScriptCallback::showCompInfo(int player, SComponent * comp)
|
|
|
|
{
|
2008-07-28 15:44:08 +03:00
|
|
|
CPlayerInterface * i = dynamic_cast<CPlayerInterface*>(cl->playerint[player]);
|
2007-12-22 16:40:27 +02:00
|
|
|
if(i)
|
|
|
|
i->showComp(*comp);
|
|
|
|
}
|
2008-01-28 16:01:09 +02:00
|
|
|
void CScriptCallback::heroVisitCastle(CGObjectInstance * ob, int heroID)
|
|
|
|
{
|
|
|
|
CGTownInstance * n;
|
|
|
|
if(n = dynamic_cast<CGTownInstance*>(ob))
|
|
|
|
{
|
2008-06-30 03:06:41 +03:00
|
|
|
n->visitingHero = CGI->state->map->getHero(heroID,0);
|
2008-07-28 15:44:08 +03:00
|
|
|
gs->map->getHero(heroID,0)->visitedTown = n;
|
|
|
|
cl->playerint[getHeroOwner(heroID)]->heroVisitsTown(CGI->state->map->getHero(heroID,0),n);
|
2008-01-28 16:01:09 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
}
|
2007-12-22 16:40:27 +02:00
|
|
|
|
2008-01-28 16:01:09 +02:00
|
|
|
void CScriptCallback::stopHeroVisitCastle(CGObjectInstance * ob, int heroID)
|
|
|
|
{
|
|
|
|
CGTownInstance * n;
|
|
|
|
if(n = dynamic_cast<CGTownInstance*>(ob))
|
|
|
|
{
|
2008-06-30 03:06:41 +03:00
|
|
|
CGI->state->map->getHero(heroID,0)->visitedTown = NULL;
|
2008-02-23 21:20:41 +02:00
|
|
|
if(n->visitingHero && n->visitingHero->type->ID == heroID)
|
2008-01-28 16:01:09 +02:00
|
|
|
n->visitingHero = NULL;
|
2008-02-23 21:20:41 +02:00
|
|
|
return;
|
2008-01-28 16:01:09 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
}
|
2008-02-07 20:45:22 +02:00
|
|
|
void CScriptCallback::giveHeroArtifact(int artid, int hid, int position) //pos==-1 - first free slot in backpack
|
|
|
|
{
|
2008-06-30 03:06:41 +03:00
|
|
|
CGHeroInstance* h = gs->map->getHero(hid,0);
|
2008-02-07 20:45:22 +02:00
|
|
|
if(position<0)
|
|
|
|
{
|
|
|
|
for(int i=0;i<h->artifacts.size();i++)
|
|
|
|
{
|
|
|
|
if(!h->artifacts[i])
|
|
|
|
{
|
2008-06-08 03:58:29 +03:00
|
|
|
h->artifacts[i] = artid;
|
2008-02-07 20:45:22 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2008-06-08 03:58:29 +03:00
|
|
|
h->artifacts.push_back(artid);
|
2008-02-07 20:45:22 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(h->artifWorn[position]) //slot is occupied
|
|
|
|
{
|
2008-06-08 03:58:29 +03:00
|
|
|
giveHeroArtifact(h->artifWorn[position],hid,-1);
|
2008-02-07 20:45:22 +02:00
|
|
|
}
|
2008-06-08 03:58:29 +03:00
|
|
|
h->artifWorn[position] = artid;
|
2008-02-07 20:45:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-25 01:06:27 +02:00
|
|
|
void CScriptCallback::startBattle(CCreatureSet * army1, CCreatureSet * army2, int3 tile, CGHeroInstance *hero1, CGHeroInstance *hero2) //use hero=NULL for no hero
|
|
|
|
{
|
|
|
|
gs->battle(army1,army2,tile,hero1,hero2);
|
|
|
|
}
|
|
|
|
void CScriptCallback::startBattle(int heroID, CCreatureSet * army, int3 tile) //for hero<=>neutral army
|
|
|
|
{
|
2008-06-30 03:06:41 +03:00
|
|
|
CGHeroInstance* h = gs->map->getHero(heroID,0);
|
2008-02-25 01:06:27 +02:00
|
|
|
gs->battle(&h->army,army,tile,h,NULL);
|
|
|
|
}
|
2007-11-19 00:58:28 +02:00
|
|
|
void CLuaCallback::registerFuncs(lua_State * L)
|
|
|
|
{
|
2008-07-25 20:28:28 +03:00
|
|
|
// lua_newtable(L);
|
|
|
|
//
|
|
|
|
//#define REGISTER_C_FUNC(x) \
|
|
|
|
// lua_pushstring(L, #x); \
|
|
|
|
// lua_pushcfunction(L, x); \
|
|
|
|
// lua_rawset(L, -3)
|
|
|
|
//
|
|
|
|
// REGISTER_C_FUNC(getPos);
|
|
|
|
// REGISTER_C_FUNC(changePrimSkill);
|
|
|
|
// REGISTER_C_FUNC(getGnrlText);
|
|
|
|
// REGISTER_C_FUNC(getSelectedHero);
|
|
|
|
//
|
|
|
|
// lua_setglobal(L, "vcmi");
|
|
|
|
// #undef REGISTER_C_FUNC
|
2007-11-19 00:58:28 +02:00
|
|
|
}
|
|
|
|
int CLuaCallback::getPos(lua_State * L)//(CGObjectInstance * object);
|
|
|
|
{
|
2008-07-25 20:28:28 +03:00
|
|
|
//const int args = lua_gettop(L); // number of arguments
|
|
|
|
//if ((args < 1) || !lua_isnumber(L, 1) )
|
|
|
|
// luaL_error(L,
|
|
|
|
// "Incorrect arguments to getPos([Object address])");
|
|
|
|
//CGObjectInstance * object = (CGObjectInstance *)(lua_tointeger(L, 1));
|
|
|
|
//lua_pushinteger(L,object->pos.x);
|
|
|
|
//lua_pushinteger(L,object->pos.y);
|
|
|
|
//lua_pushinteger(L,object->pos.z);
|
2007-11-19 00:58:28 +02:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
int CLuaCallback::changePrimSkill(lua_State * L)//(int ID, int which, int val);
|
|
|
|
{
|
2008-07-25 20:28:28 +03:00
|
|
|
//const int args = lua_gettop(L); // number of arguments
|
|
|
|
//if ((args < 1) || !lua_isnumber(L, 1) ||
|
|
|
|
// ((args >= 2) && !lua_isnumber(L, 2)) ||
|
|
|
|
// ((args >= 3) && !lua_isnumber(L, 3)) )
|
|
|
|
//{
|
|
|
|
// luaL_error(L,
|
|
|
|
// "Incorrect arguments to changePrimSkill([Hero ID], [Which Primary skill], [Change by])");
|
|
|
|
//}
|
|
|
|
//int ID = lua_tointeger(L, 1),
|
|
|
|
// which = lua_tointeger(L, 2),
|
|
|
|
// val = lua_tointeger(L, 3);
|
|
|
|
|
|
|
|
//CScriptCallback::changePrimSkill(ID,which,val);
|
2007-11-19 00:58:28 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int CLuaCallback::getGnrlText(lua_State * L) //(int which),returns string
|
|
|
|
{
|
2008-07-25 20:28:28 +03:00
|
|
|
//const int args = lua_gettop(L); // number of arguments
|
|
|
|
//if ((args < 1) || !lua_isnumber(L, 1) )
|
|
|
|
// luaL_error(L,
|
|
|
|
// "Incorrect arguments to getGnrlText([Text ID])");
|
|
|
|
//int which = lua_tointeger(L,1);
|
|
|
|
//lua_pushstring(L,CGI->generaltexth->allTexts[which].c_str());
|
2007-11-19 00:58:28 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
int CLuaCallback::getSelectedHero(lua_State * L) //(),returns int (ID of hero, -1 if no hero is seleceted)
|
|
|
|
{
|
2008-07-25 20:28:28 +03:00
|
|
|
//int ret;
|
|
|
|
//if (LOCPLINT->adventureInt->selection.type == HEROI_TYPE)
|
|
|
|
// ret = ((CGHeroInstance*)(LOCPLINT->adventureInt->selection.selected))->subID;
|
|
|
|
//else
|
|
|
|
// ret = -1;
|
|
|
|
//lua_pushinteger(L,ret);
|
2007-11-19 00:58:28 +02:00
|
|
|
return 1;
|
2008-04-11 20:41:02 +03:00
|
|
|
}
|