IGameCallback.cpp 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. /*
  2. * IGameCallback.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "IGameCallback.h"
  12. #include "CHeroHandler.h" // for CHeroHandler
  13. #include "spells/CSpellHandler.h"// for CSpell
  14. #include "CSkillHandler.h"// for CSkill
  15. #include "NetPacks.h"
  16. #include "CBonusTypeHandler.h"
  17. #include "CModHandler.h"
  18. #include "BattleFieldHandler.h"
  19. #include "serializer/CSerializer.h" // for SAVEGAME_MAGIC
  20. #include "serializer/BinaryDeserializer.h"
  21. #include "serializer/BinarySerializer.h"
  22. #include "serializer/CLoadIntegrityValidator.h"
  23. #include "rmg/CMapGenOptions.h"
  24. #include "mapping/CCampaignHandler.h"
  25. #include "mapObjects/CObjectClassesHandler.h"
  26. #include "StartInfo.h"
  27. #include "CGameState.h"
  28. #include "mapping/CMap.h"
  29. #include "CPlayerState.h"
  30. #include "CSkillHandler.h"
  31. #include "ScriptHandler.h"
  32. #include "serializer/Connection.h"
  33. void CPrivilegedInfoCallback::getFreeTiles(std::vector<int3> & tiles) const
  34. {
  35. std::vector<int> floors;
  36. for (int b = 0; b < (gs->map->twoLevel ? 2 : 1); ++b)
  37. {
  38. floors.push_back(b);
  39. }
  40. const TerrainTile *tinfo;
  41. for (auto zd : floors)
  42. {
  43. for (int xd = 0; xd < gs->map->width; xd++)
  44. {
  45. for (int yd = 0; yd < gs->map->height; yd++)
  46. {
  47. tinfo = getTile(int3 (xd,yd,zd));
  48. if (tinfo->terType.isLand() && tinfo->terType.isPassable() && !tinfo->blocked) //land and free
  49. tiles.push_back (int3 (xd,yd,zd));
  50. }
  51. }
  52. }
  53. }
  54. void CPrivilegedInfoCallback::getTilesInRange(std::unordered_set<int3, ShashInt3> & tiles, int3 pos, int radious, boost::optional<PlayerColor> player, int mode, int3::EDistanceFormula distanceFormula) const
  55. {
  56. if(!!player && *player >= PlayerColor::PLAYER_LIMIT)
  57. {
  58. logGlobal->error("Illegal call to getTilesInRange!");
  59. return;
  60. }
  61. if(radious == CBuilding::HEIGHT_SKYSHIP) //reveal entire map
  62. getAllTiles (tiles, player, -1, 0);
  63. else
  64. {
  65. const TeamState * team = !player ? nullptr : gs->getPlayerTeam(*player);
  66. for (int xd = std::max<int>(pos.x - radious , 0); xd <= std::min<int>(pos.x + radious, gs->map->width - 1); xd++)
  67. {
  68. for (int yd = std::max<int>(pos.y - radious, 0); yd <= std::min<int>(pos.y + radious, gs->map->height - 1); yd++)
  69. {
  70. int3 tilePos(xd,yd,pos.z);
  71. double distance = pos.dist(tilePos, distanceFormula);
  72. if(distance <= radious)
  73. {
  74. if(!player
  75. || (mode == 1 && team->fogOfWarMap[xd][yd][pos.z]==0)
  76. || (mode == -1 && team->fogOfWarMap[xd][yd][pos.z]==1)
  77. )
  78. tiles.insert(int3(xd,yd,pos.z));
  79. }
  80. }
  81. }
  82. }
  83. }
  84. void CPrivilegedInfoCallback::getAllTiles(std::unordered_set<int3, ShashInt3> & tiles, boost::optional<PlayerColor> Player, int level, int surface) const
  85. {
  86. if(!!Player && *Player >= PlayerColor::PLAYER_LIMIT)
  87. {
  88. logGlobal->error("Illegal call to getAllTiles !");
  89. return;
  90. }
  91. bool water = surface == 0 || surface == 2,
  92. land = surface == 0 || surface == 1;
  93. std::vector<int> floors;
  94. if(level == -1)
  95. {
  96. for(int b = 0; b < (gs->map->twoLevel ? 2 : 1); ++b)
  97. {
  98. floors.push_back(b);
  99. }
  100. }
  101. else
  102. floors.push_back(level);
  103. for (auto zd : floors)
  104. {
  105. for (int xd = 0; xd < gs->map->width; xd++)
  106. {
  107. for (int yd = 0; yd < gs->map->height; yd++)
  108. {
  109. if ((getTile (int3 (xd,yd,zd))->terType.isWater() && water)
  110. || (getTile (int3 (xd,yd,zd))->terType.isLand() && land))
  111. tiles.insert(int3(xd,yd,zd));
  112. }
  113. }
  114. }
  115. }
  116. void CPrivilegedInfoCallback::pickAllowedArtsSet(std::vector<const CArtifact *> & out, CRandomGenerator & rand)
  117. {
  118. for (int j = 0; j < 3 ; j++)
  119. out.push_back(VLC->arth->objects[VLC->arth->pickRandomArtifact(rand, CArtifact::ART_TREASURE)]);
  120. for (int j = 0; j < 3 ; j++)
  121. out.push_back(VLC->arth->objects[VLC->arth->pickRandomArtifact(rand, CArtifact::ART_MINOR)]);
  122. out.push_back(VLC->arth->objects[VLC->arth->pickRandomArtifact(rand, CArtifact::ART_MAJOR)]);
  123. }
  124. void CPrivilegedInfoCallback::getAllowedSpells(std::vector<SpellID> & out, ui16 level)
  125. {
  126. for (ui32 i = 0; i < gs->map->allowedSpell.size(); i++) //spellh size appears to be greater (?)
  127. {
  128. const spells::Spell * spell = SpellID(i).toSpell();
  129. if(isAllowed(0, spell->getIndex()) && spell->getLevel() == level)
  130. {
  131. out.push_back(spell->getId());
  132. }
  133. }
  134. }
  135. CGameState * CPrivilegedInfoCallback::gameState()
  136. {
  137. return gs;
  138. }
  139. template<typename Loader>
  140. void CPrivilegedInfoCallback::loadCommonState(Loader & in)
  141. {
  142. logGlobal->info("Loading lib part of game...");
  143. in.checkMagicBytes(SAVEGAME_MAGIC);
  144. CMapHeader dum;
  145. StartInfo *si;
  146. logGlobal->info("\tReading header");
  147. in.serializer & dum;
  148. logGlobal->info("\tReading options");
  149. in.serializer & si;
  150. logGlobal->info("\tReading handlers");
  151. in.serializer & *VLC;
  152. logGlobal->info("\tReading gamestate");
  153. in.serializer & gs;
  154. }
  155. template<typename Saver>
  156. void CPrivilegedInfoCallback::saveCommonState(Saver & out) const
  157. {
  158. logGlobal->info("Saving lib part of game...");
  159. out.putMagicBytes(SAVEGAME_MAGIC);
  160. logGlobal->info("\tSaving header");
  161. out.serializer & static_cast<CMapHeader&>(*gs->map);
  162. logGlobal->info("\tSaving options");
  163. out.serializer & gs->scenarioOps;
  164. logGlobal->info("\tSaving handlers");
  165. out.serializer & *VLC;
  166. logGlobal->info("\tSaving gamestate");
  167. out.serializer & gs;
  168. }
  169. // hardly memory usage for `-gdwarf-4` flag
  170. template DLL_LINKAGE void CPrivilegedInfoCallback::loadCommonState<CLoadIntegrityValidator>(CLoadIntegrityValidator &);
  171. template DLL_LINKAGE void CPrivilegedInfoCallback::loadCommonState<CLoadFile>(CLoadFile &);
  172. template DLL_LINKAGE void CPrivilegedInfoCallback::saveCommonState<CSaveFile>(CSaveFile &) const;
  173. TerrainTile * CNonConstInfoCallback::getTile( int3 pos )
  174. {
  175. if(!gs->map->isInTheMap(pos))
  176. return nullptr;
  177. return &gs->map->getTile(pos);
  178. }
  179. CGHeroInstance *CNonConstInfoCallback::getHero(ObjectInstanceID objid)
  180. {
  181. return const_cast<CGHeroInstance*>(CGameInfoCallback::getHero(objid));
  182. }
  183. CGTownInstance *CNonConstInfoCallback::getTown(ObjectInstanceID objid)
  184. {
  185. return const_cast<CGTownInstance*>(CGameInfoCallback::getTown(objid));
  186. }
  187. TeamState *CNonConstInfoCallback::getTeam(TeamID teamID)
  188. {
  189. return const_cast<TeamState*>(CGameInfoCallback::getTeam(teamID));
  190. }
  191. TeamState *CNonConstInfoCallback::getPlayerTeam(PlayerColor color)
  192. {
  193. return const_cast<TeamState*>(CGameInfoCallback::getPlayerTeam(color));
  194. }
  195. PlayerState * CNonConstInfoCallback::getPlayerState( PlayerColor color, bool verbose )
  196. {
  197. return const_cast<PlayerState*>(CGameInfoCallback::getPlayerState(color, verbose));
  198. }
  199. CArtifactInstance * CNonConstInfoCallback::getArtInstance( ArtifactInstanceID aid )
  200. {
  201. return gs->map->artInstances.at(aid.num);
  202. }
  203. CGObjectInstance * CNonConstInfoCallback::getObjInstance( ObjectInstanceID oid )
  204. {
  205. return gs->map->objects.at(oid.num);
  206. }
  207. CArmedInstance * CNonConstInfoCallback::getArmyInstance(ObjectInstanceID oid)
  208. {
  209. return dynamic_cast<CArmedInstance *>(getObjInstance(oid));
  210. }
  211. bool IGameCallback::isVisitCoveredByAnotherQuery(const CGObjectInstance *obj, const CGHeroInstance *hero)
  212. {
  213. //only server knows
  214. logGlobal->error("isVisitCoveredByAnotherQuery call on client side");
  215. return false;
  216. }