CCallback.cpp 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. #include "StdInc.h"
  2. #include "CCallback.h"
  3. #include "lib/CCreatureHandler.h"
  4. #include "client/CGameInfo.h"
  5. #include "lib/CGameState.h"
  6. #include "lib/BattleState.h"
  7. #include "client/CPlayerInterface.h"
  8. #include "client/Client.h"
  9. #include "lib/mapping/CMap.h"
  10. #include "lib/CBuildingHandler.h"
  11. #include "lib/mapObjects/CObjectClassesHandler.h"
  12. #include "lib/CGeneralTextHandler.h"
  13. #include "lib/CHeroHandler.h"
  14. #include "lib/Connection.h"
  15. #include "lib/NetPacks.h"
  16. #include "client/mapHandler.h"
  17. #include "lib/spells/CSpellHandler.h"
  18. #include "lib/CArtHandler.h"
  19. #include "lib/GameConstants.h"
  20. #include "lib/CPlayerState.h"
  21. #include "lib/UnlockGuard.h"
  22. /*
  23. * CCallback.cpp, part of VCMI engine
  24. *
  25. * Authors: listed in file AUTHORS in main folder
  26. *
  27. * License: GNU General Public License v2.0 or later
  28. * Full text of license available in license.txt file, in main folder
  29. *
  30. */
  31. template <ui16 N> bool isType(CPack *pack)
  32. {
  33. return pack->getType() == N;
  34. }
  35. bool CCallback::teleportHero(const CGHeroInstance *who, const CGTownInstance *where)
  36. {
  37. CastleTeleportHero pack(who->id, where->id, 1);
  38. sendRequest(&pack);
  39. return true;
  40. }
  41. bool CCallback::moveHero(const CGHeroInstance *h, int3 dst, bool transit)
  42. {
  43. MoveHero pack(dst,h->id,transit);
  44. sendRequest(&pack);
  45. return true;
  46. }
  47. int CCallback::selectionMade(int selection, QueryID queryID)
  48. {
  49. ASSERT_IF_CALLED_WITH_PLAYER
  50. if(queryID == QueryID(-1))
  51. {
  52. logGlobal->errorStream() << "Cannot answer the query -1!";
  53. return false;
  54. }
  55. QueryReply pack(queryID,selection);
  56. pack.player = *player;
  57. return sendRequest(&pack);
  58. }
  59. void CCallback::recruitCreatures(const CGDwelling *obj, const CArmedInstance * dst, CreatureID ID, ui32 amount, si32 level/*=-1*/)
  60. {
  61. if(player!=obj->tempOwner && obj->ID != Obj::WAR_MACHINE_FACTORY)
  62. return;
  63. RecruitCreatures pack(obj->id, dst->id, ID, amount, level);
  64. sendRequest(&pack);
  65. }
  66. bool CCallback::dismissCreature(const CArmedInstance *obj, SlotID stackPos)
  67. {
  68. if((player && obj->tempOwner != player) || (obj->stacksCount()<2 && obj->needsLastStack()))
  69. return false;
  70. DisbandCreature pack(stackPos,obj->id);
  71. sendRequest(&pack);
  72. return true;
  73. }
  74. bool CCallback::upgradeCreature(const CArmedInstance *obj, SlotID stackPos, CreatureID newID)
  75. {
  76. UpgradeCreature pack(stackPos,obj->id,newID);
  77. sendRequest(&pack);
  78. return false;
  79. }
  80. void CCallback::endTurn()
  81. {
  82. logGlobal->traceStream() << "Player " << *player << " ended his turn.";
  83. EndTurn pack;
  84. sendRequest(&pack); //report that we ended turn
  85. }
  86. int CCallback::swapCreatures(const CArmedInstance *s1, const CArmedInstance *s2, SlotID p1, SlotID p2)
  87. {
  88. ArrangeStacks pack(1,p1,p2,s1->id,s2->id,0);
  89. sendRequest(&pack);
  90. return 0;
  91. }
  92. int CCallback::mergeStacks(const CArmedInstance *s1, const CArmedInstance *s2, SlotID p1, SlotID p2)
  93. {
  94. ArrangeStacks pack(2,p1,p2,s1->id,s2->id,0);
  95. sendRequest(&pack);
  96. return 0;
  97. }
  98. int CCallback::splitStack(const CArmedInstance *s1, const CArmedInstance *s2, SlotID p1, SlotID p2, int val)
  99. {
  100. ArrangeStacks pack(3,p1,p2,s1->id,s2->id,val);
  101. sendRequest(&pack);
  102. return 0;
  103. }
  104. bool CCallback::dismissHero(const CGHeroInstance *hero)
  105. {
  106. if(player!=hero->tempOwner) return false;
  107. DismissHero pack(hero->id);
  108. sendRequest(&pack);
  109. return true;
  110. }
  111. // int CCallback::getMySerial() const
  112. // {
  113. // boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  114. // return gs->players[player].serial;
  115. // }
  116. bool CCallback::swapArtifacts(const ArtifactLocation &l1, const ArtifactLocation &l2)
  117. {
  118. ExchangeArtifacts ea;
  119. ea.src = l1;
  120. ea.dst = l2;
  121. sendRequest(&ea);
  122. return true;
  123. }
  124. /**
  125. * Assembles or disassembles a combination artifact.
  126. * @param hero Hero holding the artifact(s).
  127. * @param artifactSlot The worn slot ID of the combination- or constituent artifact.
  128. * @param assemble True for assembly operation, false for disassembly.
  129. * @param assembleTo If assemble is true, this represents the artifact ID of the combination
  130. * artifact to assemble to. Otherwise it's not used.
  131. */
  132. bool CCallback::assembleArtifacts (const CGHeroInstance * hero, ArtifactPosition artifactSlot, bool assemble, ArtifactID assembleTo)
  133. {
  134. if (player != hero->tempOwner)
  135. return false;
  136. AssembleArtifacts aa(hero->id, artifactSlot, assemble, assembleTo);
  137. sendRequest(&aa);
  138. return true;
  139. }
  140. bool CCallback::buildBuilding(const CGTownInstance *town, BuildingID buildingID)
  141. {
  142. if(town->tempOwner!=player)
  143. return false;
  144. if(!canBuildStructure(town, buildingID))
  145. return false;
  146. BuildStructure pack(town->id,buildingID);
  147. sendRequest(&pack);
  148. return true;
  149. }
  150. int CBattleCallback::battleMakeAction(BattleAction* action)
  151. {
  152. assert(action->actionType == Battle::HERO_SPELL);
  153. MakeCustomAction mca(*action);
  154. sendRequest(&mca);
  155. return 0;
  156. }
  157. int CBattleCallback::sendRequest(const CPack *request)
  158. {
  159. int requestID = cl->sendRequest(request, *player);
  160. if(waitTillRealize)
  161. {
  162. logGlobal->traceStream() << boost::format("We'll wait till request %d is answered.\n") % requestID;
  163. auto gsUnlocker = vstd::makeUnlockSharedGuardIf(getGsMutex(), unlockGsWhenWaiting);
  164. cl->waitingRequest.waitWhileContains(requestID);
  165. }
  166. boost::this_thread::interruption_point();
  167. return requestID;
  168. }
  169. void CCallback::swapGarrisonHero( const CGTownInstance *town )
  170. {
  171. if(town->tempOwner == *player
  172. || (town->garrisonHero && town->garrisonHero->tempOwner == *player ))
  173. {
  174. GarrisonHeroSwap pack(town->id);
  175. sendRequest(&pack);
  176. }
  177. }
  178. void CCallback::buyArtifact(const CGHeroInstance *hero, ArtifactID aid)
  179. {
  180. if(hero->tempOwner != player) return;
  181. BuyArtifact pack(hero->id,aid);
  182. sendRequest(&pack);
  183. }
  184. void CCallback::trade(const CGObjectInstance *market, EMarketMode::EMarketMode mode, int id1, int id2, int val1, const CGHeroInstance *hero/* = nullptr*/)
  185. {
  186. TradeOnMarketplace pack;
  187. pack.market = market;
  188. pack.hero = hero;
  189. pack.mode = mode;
  190. pack.r1 = id1;
  191. pack.r2 = id2;
  192. pack.val = val1;
  193. sendRequest(&pack);
  194. }
  195. void CCallback::setFormation(const CGHeroInstance * hero, bool tight)
  196. {
  197. const_cast<CGHeroInstance*>(hero)-> formation = tight;
  198. SetFormation pack(hero->id,tight);
  199. sendRequest(&pack);
  200. }
  201. void CCallback::recruitHero(const CGObjectInstance *townOrTavern, const CGHeroInstance *hero)
  202. {
  203. assert(townOrTavern);
  204. assert(hero);
  205. ui8 i=0;
  206. for(; i<gs->players[*player].availableHeroes.size(); i++)
  207. {
  208. if(gs->players[*player].availableHeroes[i] == hero)
  209. {
  210. HireHero pack(i, townOrTavern->id);
  211. pack.player = *player;
  212. sendRequest(&pack);
  213. return;
  214. }
  215. }
  216. }
  217. void CCallback::save( const std::string &fname )
  218. {
  219. cl->save(fname);
  220. }
  221. void CCallback::sendMessage(const std::string &mess, const CGObjectInstance * currentObject)
  222. {
  223. ASSERT_IF_CALLED_WITH_PLAYER
  224. PlayerMessage pm(*player, mess, currentObject? currentObject->id : ObjectInstanceID(-1));
  225. sendRequest(&(CPackForClient&)pm);
  226. }
  227. void CCallback::buildBoat( const IShipyard *obj )
  228. {
  229. BuildBoat bb;
  230. bb.objid = obj->o->id;
  231. sendRequest(&bb);
  232. }
  233. CCallback::CCallback( CGameState * GS, boost::optional<PlayerColor> Player, CClient *C )
  234. :CBattleCallback(GS, Player, C)
  235. {
  236. waitTillRealize = false;
  237. unlockGsWhenWaiting = false;
  238. }
  239. CCallback::~CCallback()
  240. {
  241. //trivial, but required. Don`t remove.
  242. }
  243. bool CCallback::canMoveBetween(const int3 &a, const int3 &b)
  244. {
  245. //TODO: merge with Pathfinder::canMoveBetween
  246. return gs->checkForVisitableDir(a, b) && gs->checkForVisitableDir(b, a);
  247. }
  248. const CPathsInfo * CCallback::getPathsInfo(const CGHeroInstance *h)
  249. {
  250. return cl->getPathsInfo(h);
  251. }
  252. int3 CCallback::getGuardingCreaturePosition(int3 tile)
  253. {
  254. if (!gs->map->isInTheMap(tile))
  255. return int3(-1,-1,-1);
  256. return gs->map->guardingCreaturePositions[tile.x][tile.y][tile.z];
  257. }
  258. void CCallback::calculatePaths( const CGHeroInstance *hero, CPathsInfo &out)
  259. {
  260. gs->calculatePaths(hero, out);
  261. }
  262. void CCallback::dig( const CGObjectInstance *hero )
  263. {
  264. DigWithHero dwh;
  265. dwh.id = hero->id;
  266. sendRequest(&dwh);
  267. }
  268. void CCallback::castSpell(const CGHeroInstance *hero, SpellID spellID, const int3 &pos)
  269. {
  270. CastAdvSpell cas;
  271. cas.hid = hero->id;
  272. cas.sid = spellID;
  273. cas.pos = pos;
  274. sendRequest(&cas);
  275. }
  276. void CCallback::unregisterAllInterfaces()
  277. {
  278. cl->playerint.clear();
  279. cl->battleints.clear();
  280. }
  281. int CCallback::mergeOrSwapStacks(const CArmedInstance *s1, const CArmedInstance *s2, SlotID p1, SlotID p2)
  282. {
  283. if(s1->getCreature(p1) == s2->getCreature(p2))
  284. return mergeStacks(s1, s2, p1, p2);
  285. else
  286. return swapCreatures(s1, s2, p1, p2);
  287. }
  288. void CCallback::registerGameInterface(std::shared_ptr<IGameEventsReceiver> gameEvents)
  289. {
  290. cl->additionalPlayerInts[*player].push_back(gameEvents);
  291. }
  292. void CCallback::registerBattleInterface(std::shared_ptr<IBattleEventsReceiver> battleEvents)
  293. {
  294. cl->additionalBattleInts[*player].push_back(battleEvents);
  295. }
  296. void CCallback::unregisterGameInterface(std::shared_ptr<IGameEventsReceiver> gameEvents)
  297. {
  298. cl->additionalPlayerInts[*player] -= gameEvents;
  299. }
  300. void CCallback::unregisterBattleInterface(std::shared_ptr<IBattleEventsReceiver> battleEvents)
  301. {
  302. cl->additionalBattleInts[*player] -= battleEvents;
  303. }
  304. CBattleCallback::CBattleCallback(CGameState *GS, boost::optional<PlayerColor> Player, CClient *C )
  305. {
  306. gs = GS;
  307. player = Player;
  308. cl = C;
  309. }
  310. bool CBattleCallback::battleMakeTacticAction( BattleAction * action )
  311. {
  312. assert(cl->gs->curB->tacticDistance);
  313. MakeAction ma;
  314. ma.ba = *action;
  315. sendRequest(&ma);
  316. return true;
  317. }