CGameHandler.h 14 KB

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