CGameHandler.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. #pragma once
  2. #include "../client/FunctionList.h"
  3. #include "../lib/CGameState.h"
  4. #include "../lib/Connection.h"
  5. #include "../lib/IGameCallback.h"
  6. #include "../lib/BattleAction.h"
  7. #include "../lib/NetPacks.h"
  8. /*
  9. * CGameHandler.h, part of VCMI engine
  10. *
  11. * Authors: listed in file AUTHORS in main folder
  12. *
  13. * License: GNU General Public License v2.0 or later
  14. * Full text of license available in license.txt file, in main folder
  15. *
  16. */
  17. class CGameHandler;
  18. class CVCMIServer;
  19. class CGameState;
  20. struct StartInfo;
  21. class CCPPObjectScript;
  22. class CScriptCallback;
  23. struct BattleResult;
  24. struct BattleAttack;
  25. struct BattleStackAttacked;
  26. struct CPack;
  27. struct Query;
  28. struct SetGarrisons;
  29. struct SetResource;
  30. struct SetResources;
  31. struct NewStructures;
  32. class CGHeroInstance;
  33. class IMarket;
  34. extern std::map<ui32, CFunctionList<void(ui32)> > callbacks; //question id => callback functions - for selection dialogs
  35. extern boost::mutex gsm;
  36. struct PlayerStatus
  37. {
  38. bool makingTurn, engagedIntoBattle;
  39. std::set<ui32> queries;
  40. PlayerStatus():makingTurn(false),engagedIntoBattle(false){};
  41. template <typename Handler> void serialize(Handler &h, const int version)
  42. {
  43. h & makingTurn & engagedIntoBattle & queries;
  44. }
  45. };
  46. class PlayerStatuses
  47. {
  48. public:
  49. std::map<ui8,PlayerStatus> players;
  50. boost::mutex mx;
  51. boost::condition_variable cv; //notifies when any changes are made
  52. void addPlayer(ui8 player);
  53. PlayerStatus operator[](ui8 player);
  54. int getQueriesCount(ui8 player); //returns 0 if there is no such player
  55. bool checkFlag(ui8 player, bool PlayerStatus::*flag);
  56. void setFlag(ui8 player, bool PlayerStatus::*flag, bool val);
  57. void addQuery(ui8 player, ui32 id);
  58. void removeQuery(ui8 player, ui32 id);
  59. template <typename Handler> void serialize(Handler &h, const int version)
  60. {
  61. h & players;
  62. }
  63. };
  64. struct CasualtiesAfterBattle
  65. {
  66. typedef std::pair<StackLocation, int> TStackAndItsNewCount;
  67. enum {ERASE = -1};
  68. std::vector<TStackAndItsNewCount> newStackCounts;
  69. CasualtiesAfterBattle(const CArmedInstance *army, BattleInfo *bat);
  70. void takeFromArmy(CGameHandler *gh);
  71. };
  72. class CGameHandler : public IGameCallback
  73. {
  74. private:
  75. void makeStackDoNothing(const CStack * next);
  76. bool isAllowedExchangeForQuery(int id1, int id2);
  77. public:
  78. CVCMIServer *s;
  79. std::map<int,CConnection*> connections; //player color -> connection to client with interface of that player
  80. PlayerStatuses states; //player color -> player state
  81. std::set<CConnection*> conns;
  82. //queries stuff
  83. boost::recursive_mutex gsm;
  84. ui32 QID;
  85. std::map<ui32, CFunctionList<void(ui32)> > callbacks; //query id => callback function - for selection and yes/no dialogs
  86. std::map<ui32, boost::function<void()> > garrisonCallbacks; //query id => callback - for garrison dialogs
  87. std::map<ui32, std::pair<si32,si32> > allowedExchanges;
  88. bool isAllowedExchange(int id1, int id2);
  89. bool isAllowedArrangePack(const ArrangeStacks *pack);
  90. void giveSpells(const CGTownInstance *t, const CGHeroInstance *h);
  91. int moveStack(int stack, BattleHex dest); //returned value - travelled distance
  92. void startBattle(const CArmedInstance *armies[2], int3 tile, const CGHeroInstance *heroes[2], bool creatureBank, boost::function<void(BattleResult*)> cb, const CGTownInstance *town = NULL); //use hero=NULL for no hero
  93. void runBattle();
  94. void checkLossVictory(ui8 player);
  95. void winLoseHandle(ui8 players=255); //players: bit field - colours of players to be checked; default: all
  96. void getLossVicMessage(ui8 player, ui8 standard, bool victory, InfoWindow &out) const;
  97. ////used only in endBattle - don't touch elsewhere
  98. boost::function<void(BattleResult*)> * battleEndCallback;
  99. //const CArmedInstance * bEndArmy1, * bEndArmy2;
  100. bool visitObjectAfterVictory;
  101. //
  102. void endBattle(int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2); //ends battle
  103. void prepareAttack(BattleAttack &bat, const CStack *att, const CStack *def, int distance, int targetHex); //distance - number of hexes travelled before attacking
  104. void applyBattleEffects(BattleAttack &bat, const CStack *att, const CStack *def, int distance, bool secondary); //damage, drain life & fire shield
  105. void checkForBattleEnd( std::vector<CStack*> &stacks );
  106. void setupBattle(int3 tile, const CArmedInstance *armies[2], const CGHeroInstance *heroes[2], bool creatureBank, const CGTownInstance *town);
  107. void setBattleResult(int resultType, int victoriusSide);
  108. CGameHandler(void);
  109. ~CGameHandler(void);
  110. //////////////////////////////////////////////////////////////////////////
  111. //from IGameCallback
  112. //do sth
  113. void changeSpells(int hid, bool give, const std::set<ui32> &spells) OVERRIDE;
  114. bool removeObject(int objid) OVERRIDE;
  115. void setBlockVis(int objid, bool bv) OVERRIDE;
  116. void setOwner(int objid, ui8 owner) OVERRIDE;
  117. void setHoverName(int objid, MetaString * name) OVERRIDE;
  118. void changePrimSkill(int ID, int which, si64 val, bool abs=false) OVERRIDE;
  119. void changeSecSkill(int ID, int which, int val, bool abs=false) OVERRIDE;
  120. //void showInfoDialog(InfoWindow *iw) OVERRIDE;
  121. void showBlockingDialog(BlockingDialog *iw, const CFunctionList<void(ui32)> &callback) OVERRIDE;
  122. ui32 showBlockingDialog(BlockingDialog *iw) OVERRIDE; //synchronous version of above
  123. void showGarrisonDialog(int upobj, int hid, bool removableUnits, const boost::function<void()> &cb) OVERRIDE;
  124. void showThievesGuildWindow(int requestingObjId) OVERRIDE; //TODO: make something more general?
  125. void giveResource(int player, int which, int val) OVERRIDE;
  126. void giveCreatures(const CArmedInstance *objid, const CGHeroInstance * h, const CCreatureSet &creatures, bool remove) OVERRIDE;
  127. void takeCreatures(int objid, const std::vector<CStackBasicDescriptor> &creatures) OVERRIDE;
  128. bool changeStackType(const StackLocation &sl, CCreature *c) OVERRIDE;
  129. bool changeStackCount(const StackLocation &sl, TQuantity count, bool absoluteValue = false) OVERRIDE;
  130. bool insertNewStack(const StackLocation &sl, const CCreature *c, TQuantity count) OVERRIDE;
  131. bool eraseStack(const StackLocation &sl, bool forceRemoval = false) OVERRIDE;
  132. bool swapStacks(const StackLocation &sl1, const StackLocation &sl2) OVERRIDE;
  133. bool addToSlot(const StackLocation &sl, const CCreature *c, TQuantity count) OVERRIDE;
  134. void tryJoiningArmy(const CArmedInstance *src, const CArmedInstance *dst, bool removeObjWhenFinished, bool allowMerging) OVERRIDE;
  135. bool moveStack(const StackLocation &src, const StackLocation &dst, TQuantity count = -1) OVERRIDE;
  136. void giveHeroNewArtifact(const CGHeroInstance *h, const CArtifact *artType, int pos) OVERRIDE;
  137. void giveHeroArtifact(const CGHeroInstance *h, const CArtifactInstance *a, int pos) OVERRIDE;
  138. void putArtifact(const ArtifactLocation &al, const CArtifactInstance *a) OVERRIDE;
  139. void removeArtifact(const ArtifactLocation &al) OVERRIDE;
  140. void moveArtifact(const ArtifactLocation &al1, const ArtifactLocation &al2) OVERRIDE;
  141. void showCompInfo(ShowInInfobox * comp) OVERRIDE;
  142. void heroVisitCastle(int obj, int heroID) OVERRIDE;
  143. void stopHeroVisitCastle(int obj, int heroID) OVERRIDE;
  144. //bool removeArtifact(const CArtifact* art, int hid) OVERRIDE;
  145. void startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool creatureBank = false, boost::function<void(BattleResult*)> cb = 0, const CGTownInstance *town = NULL) OVERRIDE; //use hero=NULL for no hero
  146. void startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, boost::function<void(BattleResult*)> cb = 0, bool creatureBank = false) OVERRIDE; //if any of armies is hero, hero will be used
  147. void startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, boost::function<void(BattleResult*)> cb = 0, bool creatureBank = false) OVERRIDE; //if any of armies is hero, hero will be used, visitable tile of second obj is place of battle//void startBattleI(int heroID, CCreatureSet army, int3 tile, boost::function<void(BattleResult*)> cb) OVERRIDE; //for hero<=>neutral army
  148. void setAmount(int objid, ui32 val) OVERRIDE;
  149. bool moveHero(si32 hid, int3 dst, ui8 instant, ui8 asker = 255) OVERRIDE;
  150. void giveHeroBonus(GiveBonus * bonus) OVERRIDE;
  151. void setMovePoints(SetMovePoints * smp) OVERRIDE;
  152. void setManaPoints(int hid, int val) OVERRIDE;
  153. void giveHero(int id, int player) OVERRIDE;
  154. void changeObjPos(int objid, int3 newPos, ui8 flags) OVERRIDE;
  155. void heroExchange(si32 hero1, si32 hero2) OVERRIDE;
  156. //////////////////////////////////////////////////////////////////////////
  157. void useScholarSkill(si32 hero1, si32 hero2);
  158. void setPortalDwelling(const CGTownInstance * town, bool forced, bool clear);
  159. bool tryAttackingGuard(const int3 &guardPos, const CGHeroInstance * h);
  160. void visitObjectOnTile(const TerrainTile &t, const CGHeroInstance * h);
  161. bool teleportHero(si32 hid, si32 dstid, ui8 source, ui8 asker = 255);
  162. void vistiCastleObjects (const CGTownInstance *t, const CGHeroInstance *h);
  163. void levelUpHero(int ID, int skill);//handle client respond and send one more request if needed
  164. void levelUpHero(int ID);//initial call - check if hero have remaining levelups & handle them
  165. void afterBattleCallback(); // called after level-ups are finished
  166. //////////////////////////////////////////////////////////////////////////
  167. void commitPackage(CPackForClient *pack) OVERRIDE;
  168. void init(StartInfo *si, int Seed);
  169. void handleConnection(std::set<int> players, CConnection &c);
  170. int getPlayerAt(CConnection *c) const;
  171. void playerMessage( ui8 player, const std::string &message);
  172. bool makeBattleAction(BattleAction &ba);
  173. void handleSpellCasting(int spellID, int spellLvl, BattleHex destination, ui8 casterSide, ui8 casterColor, const CGHeroInstance * caster, const CGHeroInstance * secHero, int usedSpellPower, ECastingMode::ECastingMode mode, const CStack * stack);
  174. bool makeCustomAction(BattleAction &ba);
  175. void stackTurnTrigger(const CStack * stack);
  176. bool queryReply( ui32 qid, ui32 answer, ui8 player );
  177. bool hireHero( const CGObjectInstance *obj, ui8 hid, ui8 player );
  178. bool buildBoat( ui32 objid );
  179. bool setFormation( si32 hid, ui8 formation );
  180. bool tradeResources(const IMarket *market, ui32 val, ui8 player, ui32 id1, ui32 id2);
  181. bool sacrificeCreatures(const IMarket *market, const CGHeroInstance *hero, TSlot slot, ui32 count);
  182. bool sendResources(ui32 val, ui8 player, ui32 r1, ui32 r2);
  183. bool sellCreatures(ui32 count, const IMarket *market, const CGHeroInstance * hero, ui32 slot, ui32 resourceID);
  184. bool transformInUndead(const IMarket *market, const CGHeroInstance * hero, ui32 slot);
  185. bool assembleArtifacts (si32 heroID, ui16 artifactSlot, bool assemble, ui32 assembleTo);
  186. bool buyArtifact( ui32 hid, si32 aid ); //for blacksmith and mage guild only -> buying for gold in common buildings
  187. bool buyArtifact( const IMarket *m, const CGHeroInstance *h, int rid, int aid); //for artifact merchant and black market -> buying for any resource in special building / advobject
  188. bool sellArtifact( const IMarket *m, const CGHeroInstance *h, int aid, int rid); //for artifact merchant selling
  189. bool buySecSkill( const IMarket *m, const CGHeroInstance *h, int skill);
  190. bool moveArtifact(si32 srcHeroID, si32 destHeroID, ui16 srcSlot, ui16 destSlot);
  191. bool moveArtifact(StackLocation s1, StackLocation s2, ui16 srcSlot, ui16 destSlot); //called when stacks merge
  192. bool moveArtifact(si32 srcHeroID, StackLocation s2, ui16 srcSlot, ui16 destSlot); //equip artifact
  193. bool moveArtifact(StackLocation s1, si32 destHeroID, ui16 srcSlot, ui16 destSlot); //return artifact to backpack
  194. bool garrisonSwap(si32 tid);
  195. bool upgradeCreature( ui32 objid, ui8 pos, ui32 upgID );
  196. bool recruitCreatures(si32 objid, ui32 crid, ui32 cram, si32 level);
  197. bool buildStructure(si32 tid, si32 bid, bool force=false);//force - for events: no cost, no checkings
  198. bool razeStructure(si32 tid, si32 bid);
  199. bool disbandCreature( si32 id, ui8 pos );
  200. bool arrangeStacks( si32 id1, si32 id2, ui8 what, ui8 p1, ui8 p2, si32 val, ui8 player);
  201. void save(const std::string &fname);
  202. void close();
  203. void handleTimeEvents();
  204. void handleTownEvents(CGTownInstance *town, NewTurn &n, std::map<si32, std::map<si32, si32> > &newCreas);
  205. bool complain(const std::string &problem); //sends message to all clients, prints on the logs and return true
  206. void objectVisited( const CGObjectInstance * obj, const CGHeroInstance * h );
  207. void engageIntoBattle( ui8 player );
  208. bool dig(const CGHeroInstance *h);
  209. bool castSpell(const CGHeroInstance *h, int spellID, const int3 &pos);
  210. void moveArmy(const CArmedInstance *src, const CArmedInstance *dst, bool allowMerging);
  211. template <typename Handler> void serialize(Handler &h, const int version)
  212. {
  213. h & QID & states;
  214. }
  215. ui32 getQueryResult(ui8 player, int queryID);
  216. void sendMessageToAll(const std::string &message);
  217. void sendMessageTo(CConnection &c, const std::string &message);
  218. void applyAndAsk(Query * sel, ui8 player, boost::function<void(ui32)> &callback);
  219. void ask(Query * sel, ui8 player, const CFunctionList<void(ui32)> &callback);
  220. void sendToAllClients(CPackForClient * info);
  221. void sendAndApply(CPackForClient * info);
  222. void applyAndSend(CPackForClient * info);
  223. void sendAndApply(CGarrisonOperationPack * info);
  224. void sendAndApply(SetResource * info);
  225. void sendAndApply(SetResources * info);
  226. void sendAndApply(NewStructures * info);
  227. void run(bool resume);
  228. void newTurn();
  229. void handleAttackBeforeCasting (const BattleAttack & bat);
  230. void handleAfterAttackCasting (const BattleAttack & bat);
  231. void attackCasting(const BattleAttack & bat, Bonus::BonusType attackMode, const CStack * attacker);
  232. bool sacrificeArtifact(const IMarket * m, const CGHeroInstance * hero, int slot);
  233. void spawnWanderingMonsters(int creatureID);
  234. friend class CVCMIServer;
  235. friend class CScriptCallback;
  236. };
  237. void makeStackDoNothing();