IGameCallback.cpp 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  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 "CBonusTypeHandler.h"
  16. #include "BattleFieldHandler.h"
  17. #include "ObstacleHandler.h"
  18. #include "bonuses/Limiters.h"
  19. #include "bonuses/Propagators.h"
  20. #include "bonuses/Updaters.h"
  21. #include "serializer/CLoadFile.h"
  22. #include "serializer/CSaveFile.h"
  23. #include "rmg/CMapGenOptions.h"
  24. #include "mapObjectConstructors/AObjectTypeHandler.h"
  25. #include "mapObjectConstructors/CObjectClassesHandler.h"
  26. #include "mapObjects/CGTownInstance.h"
  27. #include "mapObjects/CObjectHandler.h"
  28. #include "mapObjects/CQuest.h"
  29. #include "mapObjects/MiscObjects.h"
  30. #include "mapObjects/ObjectTemplate.h"
  31. #include "campaign/CampaignState.h"
  32. #include "StartInfo.h"
  33. #include "gameState/CGameState.h"
  34. #include "gameState/CGameStateCampaign.h"
  35. #include "gameState/TavernHeroesPool.h"
  36. #include "gameState/QuestInfo.h"
  37. #include "mapping/CMap.h"
  38. #include "modding/CModHandler.h"
  39. #include "modding/CModInfo.h"
  40. #include "modding/IdentifierStorage.h"
  41. #include "modding/CModVersion.h"
  42. #include "modding/ActiveModsInSaveList.h"
  43. #include "CPlayerState.h"
  44. #include "GameSettings.h"
  45. #include "ScriptHandler.h"
  46. #include "RoadHandler.h"
  47. #include "RiverHandler.h"
  48. #include "TerrainHandler.h"
  49. #include "serializer/Connection.h"
  50. VCMI_LIB_NAMESPACE_BEGIN
  51. void CPrivilegedInfoCallback::getFreeTiles(std::vector<int3> & tiles) const
  52. {
  53. std::vector<int> floors;
  54. floors.reserve(gs->map->levels());
  55. for(int b = 0; b < gs->map->levels(); ++b)
  56. {
  57. floors.push_back(b);
  58. }
  59. const TerrainTile * tinfo = nullptr;
  60. for (auto zd : floors)
  61. {
  62. for (int xd = 0; xd < gs->map->width; xd++)
  63. {
  64. for (int yd = 0; yd < gs->map->height; yd++)
  65. {
  66. tinfo = getTile(int3 (xd,yd,zd));
  67. if (tinfo->terType->isLand() && tinfo->terType->isPassable() && !tinfo->blocked) //land and free
  68. tiles.emplace_back(xd, yd, zd);
  69. }
  70. }
  71. }
  72. }
  73. void CPrivilegedInfoCallback::getTilesInRange(std::unordered_set<int3> & tiles,
  74. const int3 & pos,
  75. int radious,
  76. ETileVisibility mode,
  77. std::optional<PlayerColor> player,
  78. int3::EDistanceFormula distanceFormula) const
  79. {
  80. if(!!player && !player->isValidPlayer())
  81. {
  82. logGlobal->error("Illegal call to getTilesInRange!");
  83. return;
  84. }
  85. if(radious == CBuilding::HEIGHT_SKYSHIP) //reveal entire map
  86. getAllTiles (tiles, player, -1, [](auto * tile){return true;});
  87. else
  88. {
  89. const TeamState * team = !player ? nullptr : gs->getPlayerTeam(*player);
  90. for (int xd = std::max<int>(pos.x - radious , 0); xd <= std::min<int>(pos.x + radious, gs->map->width - 1); xd++)
  91. {
  92. for (int yd = std::max<int>(pos.y - radious, 0); yd <= std::min<int>(pos.y + radious, gs->map->height - 1); yd++)
  93. {
  94. int3 tilePos(xd,yd,pos.z);
  95. int distance = pos.dist(tilePos, distanceFormula);
  96. if(distance <= radious)
  97. {
  98. if(!player
  99. || (mode == ETileVisibility::HIDDEN && (*team->fogOfWarMap)[pos.z][xd][yd] == 0)
  100. || (mode == ETileVisibility::REVEALED && (*team->fogOfWarMap)[pos.z][xd][yd] == 1)
  101. )
  102. tiles.insert(int3(xd,yd,pos.z));
  103. }
  104. }
  105. }
  106. }
  107. }
  108. void CPrivilegedInfoCallback::getAllTiles(std::unordered_set<int3> & tiles, std::optional<PlayerColor> Player, int level, std::function<bool(const TerrainTile *)> filter) const
  109. {
  110. if(!!Player && !Player->isValidPlayer())
  111. {
  112. logGlobal->error("Illegal call to getAllTiles !");
  113. return;
  114. }
  115. std::vector<int> floors;
  116. if(level == -1)
  117. {
  118. for(int b = 0; b < gs->map->levels(); ++b)
  119. {
  120. floors.push_back(b);
  121. }
  122. }
  123. else
  124. floors.push_back(level);
  125. for(auto zd: floors)
  126. {
  127. for(int xd = 0; xd < gs->map->width; xd++)
  128. {
  129. for(int yd = 0; yd < gs->map->height; yd++)
  130. {
  131. int3 coordinates(xd, yd, zd);
  132. if (filter(getTile(coordinates)))
  133. tiles.insert(coordinates);
  134. }
  135. }
  136. }
  137. }
  138. void CPrivilegedInfoCallback::pickAllowedArtsSet(std::vector<const CArtifact *> & out, CRandomGenerator & rand)
  139. {
  140. for (int j = 0; j < 3 ; j++)
  141. out.push_back(gameState()->pickRandomArtifact(rand, CArtifact::ART_TREASURE).toArtifact());
  142. for (int j = 0; j < 3 ; j++)
  143. out.push_back(gameState()->pickRandomArtifact(rand, CArtifact::ART_MINOR).toArtifact());
  144. out.push_back(gameState()->pickRandomArtifact(rand, CArtifact::ART_MAJOR).toArtifact());
  145. }
  146. void CPrivilegedInfoCallback::getAllowedSpells(std::vector<SpellID> & out, std::optional<ui16> level)
  147. {
  148. for (ui32 i = 0; i < gs->map->allowedSpells.size(); i++) //spellh size appears to be greater (?)
  149. {
  150. const spells::Spell * spell = SpellID(i).toSpell();
  151. if (!isAllowed(spell->getId()))
  152. continue;
  153. if (level.has_value() && spell->getLevel() != level)
  154. continue;
  155. out.push_back(spell->getId());
  156. }
  157. }
  158. CGameState * CPrivilegedInfoCallback::gameState()
  159. {
  160. return gs;
  161. }
  162. template<typename Loader>
  163. void CPrivilegedInfoCallback::loadCommonState(Loader & in)
  164. {
  165. logGlobal->info("Loading lib part of game...");
  166. in.checkMagicBytes(SAVEGAME_MAGIC);
  167. CMapHeader dum;
  168. StartInfo * si = nullptr;
  169. ActiveModsInSaveList activeMods;
  170. logGlobal->info("\tReading header");
  171. in.serializer & dum;
  172. logGlobal->info("\tReading options");
  173. in.serializer & si;
  174. logGlobal->info("\tReading mod list");
  175. in.serializer & activeMods;
  176. logGlobal->info("\tReading gamestate");
  177. in.serializer & gs;
  178. }
  179. template<typename Saver>
  180. void CPrivilegedInfoCallback::saveCommonState(Saver & out) const
  181. {
  182. ActiveModsInSaveList activeMods;
  183. logGlobal->info("Saving lib part of game...");
  184. out.putMagicBytes(SAVEGAME_MAGIC);
  185. logGlobal->info("\tSaving header");
  186. out.serializer & static_cast<CMapHeader&>(*gs->map);
  187. logGlobal->info("\tSaving options");
  188. out.serializer & gs->scenarioOps;
  189. logGlobal->info("\tSaving mod list");
  190. out.serializer & activeMods;
  191. logGlobal->info("\tSaving gamestate");
  192. out.serializer & gs;
  193. }
  194. // hardly memory usage for `-gdwarf-4` flag
  195. template DLL_LINKAGE void CPrivilegedInfoCallback::loadCommonState<CLoadFile>(CLoadFile &);
  196. template DLL_LINKAGE void CPrivilegedInfoCallback::saveCommonState<CSaveFile>(CSaveFile &) const;
  197. TerrainTile * CNonConstInfoCallback::getTile(const int3 & pos)
  198. {
  199. if(!gs->map->isInTheMap(pos))
  200. return nullptr;
  201. return &gs->map->getTile(pos);
  202. }
  203. CGHeroInstance * CNonConstInfoCallback::getHero(const ObjectInstanceID & objid)
  204. {
  205. return const_cast<CGHeroInstance*>(CGameInfoCallback::getHero(objid));
  206. }
  207. CGTownInstance * CNonConstInfoCallback::getTown(const ObjectInstanceID & objid)
  208. {
  209. return const_cast<CGTownInstance*>(CGameInfoCallback::getTown(objid));
  210. }
  211. TeamState * CNonConstInfoCallback::getTeam(const TeamID & teamID)
  212. {
  213. return const_cast<TeamState*>(CGameInfoCallback::getTeam(teamID));
  214. }
  215. TeamState * CNonConstInfoCallback::getPlayerTeam(const PlayerColor & color)
  216. {
  217. return const_cast<TeamState*>(CGameInfoCallback::getPlayerTeam(color));
  218. }
  219. PlayerState * CNonConstInfoCallback::getPlayerState(const PlayerColor & color, bool verbose)
  220. {
  221. return const_cast<PlayerState*>(CGameInfoCallback::getPlayerState(color, verbose));
  222. }
  223. CArtifactInstance * CNonConstInfoCallback::getArtInstance(const ArtifactInstanceID & aid)
  224. {
  225. return gs->map->artInstances.at(aid.num);
  226. }
  227. CGObjectInstance * CNonConstInfoCallback::getObjInstance(const ObjectInstanceID & oid)
  228. {
  229. return gs->map->objects.at(oid.num);
  230. }
  231. CArmedInstance * CNonConstInfoCallback::getArmyInstance(const ObjectInstanceID & oid)
  232. {
  233. return dynamic_cast<CArmedInstance *>(getObjInstance(oid));
  234. }
  235. bool IGameCallback::isVisitCoveredByAnotherQuery(const CGObjectInstance *obj, const CGHeroInstance *hero)
  236. {
  237. //only server knows
  238. logGlobal->error("isVisitCoveredByAnotherQuery call on client side");
  239. return false;
  240. }
  241. VCMI_LIB_NAMESPACE_END