IGameCallback.cpp 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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 "serializer/CSerializer.h" // for SAVEGAME_MAGIC
  19. #include "serializer/BinaryDeserializer.h"
  20. #include "serializer/BinarySerializer.h"
  21. #include "serializer/CLoadIntegrityValidator.h"
  22. #include "rmg/CMapGenOptions.h"
  23. #include "mapping/CCampaignHandler.h"
  24. #include "mapObjects/CObjectClassesHandler.h"
  25. #include "StartInfo.h"
  26. #include "CGameState.h"
  27. #include "mapping/CMap.h"
  28. #include "CPlayerState.h"
  29. void CPrivilegedInfoCallback::getFreeTiles(std::vector<int3> & tiles) const
  30. {
  31. std::vector<int> floors;
  32. for (int b = 0; b < (gs->map->twoLevel ? 2 : 1); ++b)
  33. {
  34. floors.push_back(b);
  35. }
  36. const TerrainTile *tinfo;
  37. for (auto zd : floors)
  38. {
  39. for (int xd = 0; xd < gs->map->width; xd++)
  40. {
  41. for (int yd = 0; yd < gs->map->height; yd++)
  42. {
  43. tinfo = getTile(int3 (xd,yd,zd));
  44. if (tinfo->terType != ETerrainType::WATER && tinfo->terType != ETerrainType::ROCK && !tinfo->blocked) //land and free
  45. tiles.push_back (int3 (xd,yd,zd));
  46. }
  47. }
  48. }
  49. }
  50. void CPrivilegedInfoCallback::getTilesInRange(std::unordered_set<int3, ShashInt3> & tiles, int3 pos, int radious, boost::optional<PlayerColor> player, int mode, int3::EDistanceFormula distanceFormula) const
  51. {
  52. if(!!player && *player >= PlayerColor::PLAYER_LIMIT)
  53. {
  54. logGlobal->error("Illegal call to getTilesInRange!");
  55. return;
  56. }
  57. if (radious == -1) //reveal entire map
  58. getAllTiles (tiles, player, -1, 0);
  59. else
  60. {
  61. const TeamState * team = !player ? nullptr : gs->getPlayerTeam(*player);
  62. for (int xd = std::max<int>(pos.x - radious , 0); xd <= std::min<int>(pos.x + radious, gs->map->width - 1); xd++)
  63. {
  64. for (int yd = std::max<int>(pos.y - radious, 0); yd <= std::min<int>(pos.y + radious, gs->map->height - 1); yd++)
  65. {
  66. int3 tilePos(xd,yd,pos.z);
  67. double distance = pos.dist(tilePos, distanceFormula);
  68. if(distance <= radious)
  69. {
  70. if(!player
  71. || (mode == 1 && team->fogOfWarMap[xd][yd][pos.z]==0)
  72. || (mode == -1 && team->fogOfWarMap[xd][yd][pos.z]==1)
  73. )
  74. tiles.insert(int3(xd,yd,pos.z));
  75. }
  76. }
  77. }
  78. }
  79. }
  80. void CPrivilegedInfoCallback::getAllTiles(std::unordered_set<int3, ShashInt3> & tiles, boost::optional<PlayerColor> Player, int level, int surface) const
  81. {
  82. if(!!Player && *Player >= PlayerColor::PLAYER_LIMIT)
  83. {
  84. logGlobal->error("Illegal call to getAllTiles !");
  85. return;
  86. }
  87. bool water = surface == 0 || surface == 2,
  88. land = surface == 0 || surface == 1;
  89. std::vector<int> floors;
  90. if(level == -1)
  91. {
  92. for(int b = 0; b < (gs->map->twoLevel ? 2 : 1); ++b)
  93. {
  94. floors.push_back(b);
  95. }
  96. }
  97. else
  98. floors.push_back(level);
  99. for (auto zd : floors)
  100. {
  101. for (int xd = 0; xd < gs->map->width; xd++)
  102. {
  103. for (int yd = 0; yd < gs->map->height; yd++)
  104. {
  105. if ((getTile (int3 (xd,yd,zd))->terType == ETerrainType::WATER && water)
  106. || (getTile (int3 (xd,yd,zd))->terType != ETerrainType::WATER && land))
  107. tiles.insert(int3(xd,yd,zd));
  108. }
  109. }
  110. }
  111. }
  112. void CPrivilegedInfoCallback::pickAllowedArtsSet(std::vector<const CArtifact *> & out, CRandomGenerator & rand)
  113. {
  114. for (int j = 0; j < 3 ; j++)
  115. out.push_back(VLC->arth->artifacts[VLC->arth->pickRandomArtifact(rand, CArtifact::ART_TREASURE)]);
  116. for (int j = 0; j < 3 ; j++)
  117. out.push_back(VLC->arth->artifacts[VLC->arth->pickRandomArtifact(rand, CArtifact::ART_MINOR)]);
  118. out.push_back(VLC->arth->artifacts[VLC->arth->pickRandomArtifact(rand, CArtifact::ART_MAJOR)]);
  119. }
  120. void CPrivilegedInfoCallback::getAllowedSpells(std::vector<SpellID> & out, ui16 level)
  121. {
  122. for (ui32 i = 0; i < gs->map->allowedSpell.size(); i++) //spellh size appears to be greater (?)
  123. {
  124. const CSpell *spell = SpellID(i).toSpell();
  125. if (isAllowed (0, spell->id) && spell->level == level)
  126. {
  127. out.push_back(spell->id);
  128. }
  129. }
  130. }
  131. CGameState * CPrivilegedInfoCallback::gameState()
  132. {
  133. return gs;
  134. }
  135. template<typename Loader>
  136. void CPrivilegedInfoCallback::loadCommonState(Loader & in)
  137. {
  138. logGlobal->info("Loading lib part of game...");
  139. in.checkMagicBytes(SAVEGAME_MAGIC);
  140. CMapHeader dum;
  141. StartInfo *si;
  142. logGlobal->info("\tReading header");
  143. in.serializer & dum;
  144. logGlobal->info("\tReading options");
  145. in.serializer & si;
  146. logGlobal->info("\tReading handlers");
  147. in.serializer & *VLC;
  148. logGlobal->info("\tReading gamestate");
  149. in.serializer & gs;
  150. }
  151. template<typename Saver>
  152. void CPrivilegedInfoCallback::saveCommonState(Saver & out) const
  153. {
  154. logGlobal->info("Saving lib part of game...");
  155. out.putMagicBytes(SAVEGAME_MAGIC);
  156. logGlobal->info("\tSaving header");
  157. out.serializer & static_cast<CMapHeader&>(*gs->map);
  158. logGlobal->info("\tSaving options");
  159. out.serializer & gs->scenarioOps;
  160. logGlobal->info("\tSaving handlers");
  161. out.serializer & *VLC;
  162. logGlobal->info("\tSaving gamestate");
  163. out.serializer & gs;
  164. }
  165. // hardly memory usage for `-gdwarf-4` flag
  166. template DLL_LINKAGE void CPrivilegedInfoCallback::loadCommonState<CLoadIntegrityValidator>(CLoadIntegrityValidator &);
  167. template DLL_LINKAGE void CPrivilegedInfoCallback::loadCommonState<CLoadFile>(CLoadFile &);
  168. template DLL_LINKAGE void CPrivilegedInfoCallback::saveCommonState<CSaveFile>(CSaveFile &) const;
  169. TerrainTile * CNonConstInfoCallback::getTile( int3 pos )
  170. {
  171. if(!gs->map->isInTheMap(pos))
  172. return nullptr;
  173. return &gs->map->getTile(pos);
  174. }
  175. CGHeroInstance *CNonConstInfoCallback::getHero(ObjectInstanceID objid)
  176. {
  177. return const_cast<CGHeroInstance*>(CGameInfoCallback::getHero(objid));
  178. }
  179. CGTownInstance *CNonConstInfoCallback::getTown(ObjectInstanceID objid)
  180. {
  181. return const_cast<CGTownInstance*>(CGameInfoCallback::getTown(objid));
  182. }
  183. TeamState *CNonConstInfoCallback::getTeam(TeamID teamID)
  184. {
  185. return const_cast<TeamState*>(CGameInfoCallback::getTeam(teamID));
  186. }
  187. TeamState *CNonConstInfoCallback::getPlayerTeam(PlayerColor color)
  188. {
  189. return const_cast<TeamState*>(CGameInfoCallback::getPlayerTeam(color));
  190. }
  191. PlayerState * CNonConstInfoCallback::getPlayer( PlayerColor color, bool verbose )
  192. {
  193. return const_cast<PlayerState*>(CGameInfoCallback::getPlayer(color, verbose));
  194. }
  195. CArtifactInstance * CNonConstInfoCallback::getArtInstance( ArtifactInstanceID aid )
  196. {
  197. return gs->map->artInstances[aid.num];
  198. }
  199. CGObjectInstance * CNonConstInfoCallback::getObjInstance( ObjectInstanceID oid )
  200. {
  201. return gs->map->objects[oid.num];
  202. }
  203. const CGObjectInstance * IGameCallback::putNewObject(Obj ID, int subID, int3 pos)
  204. {
  205. NewObject no;
  206. no.ID = ID; //creature
  207. no.subID= subID;
  208. no.pos = pos;
  209. commitPackage(&no);
  210. return getObj(no.id); //id field will be filled during applying on gs
  211. }
  212. const CGCreature * IGameCallback::putNewMonster(CreatureID creID, int count, int3 pos)
  213. {
  214. const CGObjectInstance *m = putNewObject(Obj::MONSTER, creID, pos);
  215. setObjProperty(m->id, ObjProperty::MONSTER_COUNT, count);
  216. setObjProperty(m->id, ObjProperty::MONSTER_POWER, (si64)1000*count);
  217. return dynamic_cast<const CGCreature*>(m);
  218. }
  219. bool IGameCallback::isVisitCoveredByAnotherQuery(const CGObjectInstance *obj, const CGHeroInstance *hero)
  220. {
  221. //only server knows
  222. assert(0);
  223. return false;
  224. }