CGameHandler.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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 CVCMIServer;
  24. class CGameState;
  25. struct StartInfo;
  26. class CCPPObjectScript;
  27. class CScriptCallback;
  28. struct BattleResult;
  29. struct BattleAttack;
  30. struct BattleStackAttacked;
  31. struct CPack;
  32. struct Query;
  33. struct SetGarrisons;
  34. struct SetResource;
  35. struct SetResources;
  36. struct NewStructures;
  37. class CGHeroInstance;
  38. class IMarket;
  39. extern std::map<ui32, CFunctionList<void(ui32)> > callbacks; //question id => callback functions - for selection dialogs
  40. extern boost::mutex gsm;
  41. struct PlayerStatus
  42. {
  43. bool makingTurn, engagedIntoBattle;
  44. std::set<ui32> queries;
  45. PlayerStatus():makingTurn(false),engagedIntoBattle(false){};
  46. template <typename Handler> void serialize(Handler &h, const int version)
  47. {
  48. h & makingTurn & engagedIntoBattle & queries;
  49. }
  50. };
  51. class PlayerStatuses
  52. {
  53. public:
  54. std::map<ui8,PlayerStatus> players;
  55. boost::mutex mx;
  56. boost::condition_variable cv; //notifies when any changes are made
  57. void addPlayer(ui8 player);
  58. PlayerStatus operator[](ui8 player);
  59. bool hasQueries(ui8 player);
  60. bool checkFlag(ui8 player, bool PlayerStatus::*flag);
  61. void setFlag(ui8 player, bool PlayerStatus::*flag, bool val);
  62. void addQuery(ui8 player, ui32 id);
  63. void removeQuery(ui8 player, ui32 id);
  64. template <typename Handler> void serialize(Handler &h, const int version)
  65. {
  66. h & players;
  67. }
  68. };
  69. class CGameHandler : public IGameCallback
  70. {
  71. public:
  72. CVCMIServer *s;
  73. std::map<int,CConnection*> connections; //player color -> connection to client with interface of that player
  74. PlayerStatuses states; //player color -> player state
  75. std::set<CConnection*> conns;
  76. //queries stuff
  77. boost::recursive_mutex gsm;
  78. ui32 QID;
  79. std::map<ui32, CFunctionList<void(ui32)> > callbacks; //query id => callback function - for selection and yes/no dialogs
  80. std::map<ui32, boost::function<void()> > garrisonCallbacks; //query id => callback - for garrison dialogs
  81. std::map<ui32, std::pair<si32,si32> > allowedExchanges;
  82. bool isAllowedExchange(int id1, int id2);
  83. void giveSpells(const CGTownInstance *t, const CGHeroInstance *h);
  84. int moveStack(int stack, int dest); //returned value - travelled distance
  85. void startBattle(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool creatureBank, boost::function<void(BattleResult*)> cb, const CGTownInstance *town = NULL); //use hero=NULL for no hero
  86. void checkLossVictory(ui8 player);
  87. void winLoseHandle(ui8 players=255); //players: bit field - colours of players to be checked; default: all
  88. void getLossVicMessage(ui8 player, ui8 standard, bool victory, InfoWindow &out) const;
  89. ////used only in endBattle - don't touch elsewhere
  90. boost::function<void(BattleResult*)> * battleEndCallback;
  91. const CArmedInstance * bEndArmy1, * bEndArmy2;
  92. bool visitObjectAfterVictory;
  93. //
  94. void endBattle(int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2); //ends battle
  95. void prepareAttack(BattleAttack &bat, const CStack *att, const CStack *def, int distance); //distance - number of hexes travelled before attacking
  96. void prepareAttacked(BattleStackAttacked &bsa, const CStack *def);
  97. void checkForBattleEnd( std::vector<CStack*> &stacks );
  98. void setupBattle( BattleInfo * curB, int3 tile, const CArmedInstance *army1, const CArmedInstance *army2, const CGHeroInstance * hero1, const CGHeroInstance * hero2, bool creatureBank, const CGTownInstance *town);
  99. CGameHandler(void);
  100. ~CGameHandler(void);
  101. //////////////////////////////////////////////////////////////////////////
  102. //from IGameCallback
  103. //get info
  104. int getCurrentPlayer();
  105. int getSelectedHero();
  106. //do sth
  107. void changeSpells(int hid, bool give, const std::set<ui32> &spells);
  108. bool removeObject(int objid);
  109. void setBlockVis(int objid, bool bv);
  110. void setOwner(int objid, ui8 owner);
  111. void setHoverName(int objid, MetaString * name);
  112. void setObjProperty(int objid, int prop, si64 val);
  113. void levelUpHero(int ID, int skill);//handle client respond and send one more request if needed
  114. void levelUpHero(int ID);//initial call - check if hero have remaining levelups & handle them
  115. void changePrimSkill(int ID, int which, si64 val, bool abs=false);
  116. void changeSecSkill(int ID, int which, int val, bool abs=false);
  117. void showInfoDialog(InfoWindow *iw);
  118. void showBlockingDialog(BlockingDialog *iw, const CFunctionList<void(ui32)> &callback);
  119. ui32 showBlockingDialog(BlockingDialog *iw); //synchronous version of above
  120. void showGarrisonDialog(int upobj, int hid, bool removableUnits, const boost::function<void()> &cb);
  121. void showThievesGuildWindow(int requestingObjId); //TODO: make something more general?
  122. void giveResource(int player, int which, int val);
  123. void giveCreatures (int objid, const CGHeroInstance * h, CCreatureSet creatures, bool remove);
  124. void takeCreatures (int objid, TSlots creatures);
  125. void takeCreatures (int objid, std::vector<CStackBasicDescriptor> creatures);
  126. bool changeStackType(const StackLocation &sl, CCreature *c);
  127. bool changeStackCount(const StackLocation &sl, TQuantity count, bool absoluteValue = false);
  128. bool insertNewStack(const StackLocation &sl, const CCreature *c, TQuantity count);
  129. bool eraseStack(const StackLocation &sl);
  130. bool swapStacks(const StackLocation &sl1, const StackLocation &sl2);
  131. bool addToSlot(const StackLocation &sl, const CCreature *c, TQuantity count);
  132. void tryJoiningArmy(const CArmedInstance *src, const CArmedInstance *dst, bool removeObjWhenFinished);
  133. bool moveStack(const StackLocation &src, const StackLocation &dst, TQuantity count = -1);
  134. void showCompInfo(ShowInInfobox * comp);
  135. void heroVisitCastle(int obj, int heroID);
  136. void vistiCastleObjects (const CGTownInstance *t, const CGHeroInstance *h);
  137. void stopHeroVisitCastle(int obj, int heroID);
  138. void giveHeroArtifact(int artid, int hid, int position); //pos==-1 - first free slot in backpack; pos==-2 - default if available or backpack
  139. void giveNewArtifact(int hid, int position);
  140. void moveArtifact(int hid, int oldPosition, int destPos);
  141. bool removeArtifact(CArtifact* art, int hid);
  142. 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); //use hero=NULL for no hero
  143. void startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, boost::function<void(BattleResult*)> cb = 0, bool creatureBank = false); //if any of armies is hero, hero will be used
  144. void startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, boost::function<void(BattleResult*)> cb = 0, bool creatureBank = false); //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); //for hero<=>neutral army
  145. void setAmount(int objid, ui32 val);
  146. bool teleportHero(si32 hid, si32 dstid, ui8 source, ui8 asker = 255);
  147. bool moveHero(si32 hid, int3 dst, ui8 instant, ui8 asker = 255);
  148. bool tryAttackingGuard(const int3 &guardPos, const CGHeroInstance * h);
  149. void visitObjectOnTile(const TerrainTile &t, const CGHeroInstance * h);
  150. void giveHeroBonus(GiveBonus * bonus);
  151. void setMovePoints(SetMovePoints * smp);
  152. void setManaPoints(int hid, int val);
  153. void giveHero(int id, int player);
  154. void changeObjPos(int objid, int3 newPos, ui8 flags);
  155. void useScholarSkill(si32 hero1, si32 hero2);
  156. void heroExchange(si32 hero1, si32 hero2);
  157. void setPortalDwelling(const CGTownInstance * town, bool forced, bool clear);
  158. //////////////////////////////////////////////////////////////////////////
  159. void init(StartInfo *si, int Seed);
  160. void handleConnection(std::set<int> players, CConnection &c);
  161. int getPlayerAt(CConnection *c) const;
  162. void playerMessage( ui8 player, const std::string &message);
  163. bool makeBattleAction(BattleAction &ba);
  164. void handleSpellCasting(int spellID, int spellLvl, int destination, ui8 casterSide, ui8 casterColor, const CGHeroInstance * caster, const CGHeroInstance * secHero, int usedSpellPower);
  165. bool makeCustomAction(BattleAction &ba);
  166. bool queryReply( ui32 qid, ui32 answer );
  167. bool hireHero( const CGObjectInstance *obj, ui8 hid, ui8 player );
  168. bool buildBoat( ui32 objid );
  169. bool setFormation( si32 hid, ui8 formation );
  170. bool tradeResources(const IMarket *market, ui32 val, ui8 player, ui32 id1, ui32 id2);
  171. bool sacrificeCreatures(const IMarket *market, const CGHeroInstance *hero, TSlot slot, ui32 count);
  172. bool sendResources(ui32 val, ui8 player, ui32 r1, ui32 r2);
  173. bool sellCreatures(ui32 count, const IMarket *market, const CGHeroInstance * hero, ui32 slot, ui32 resourceID);
  174. bool transformInUndead(const IMarket *market, const CGHeroInstance * hero, ui32 slot);
  175. bool assembleArtifacts (si32 heroID, ui16 artifactSlot, bool assemble, ui32 assembleTo);
  176. bool buyArtifact( ui32 hid, si32 aid ); //for blacksmith and mage guild only -> buying for gold in common buildings
  177. 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
  178. bool buySecSkill( const IMarket *m, const CGHeroInstance *h, int skill);
  179. bool swapArtifacts(si32 srcHeroID, si32 destHeroID, ui16 srcSlot, ui16 destSlot);
  180. bool garrisonSwap(si32 tid);
  181. bool upgradeCreature( ui32 objid, ui8 pos, ui32 upgID );
  182. bool recruitCreatures(si32 objid, ui32 crid, ui32 cram, si32 level);
  183. bool buildStructure(si32 tid, si32 bid, bool force=false);//force - for events: no cost, no checkings
  184. bool razeStructure(si32 tid, si32 bid);
  185. bool disbandCreature( si32 id, ui8 pos );
  186. bool arrangeStacks( si32 id1, si32 id2, ui8 what, ui8 p1, ui8 p2, si32 val, ui8 player);
  187. void save(const std::string &fname);
  188. void close();
  189. void handleTimeEvents();
  190. void handleTownEvents(CGTownInstance *town, NewTurn &n, std::map<si32, std::map<si32, si32> > &newCreas);
  191. bool complain(const std::string &problem); //sends message to all clients, prints on the logs and return true
  192. void objectVisited( const CGObjectInstance * obj, const CGHeroInstance * h );
  193. void engageIntoBattle( ui8 player );
  194. bool dig(const CGHeroInstance *h);
  195. bool castSpell(const CGHeroInstance *h, int spellID, const int3 &pos);
  196. template <typename Handler> void serialize(Handler &h, const int version)
  197. {
  198. h & QID & states;
  199. }
  200. ui32 getQueryResult(ui8 player, int queryID);
  201. void sendMessageToAll(const std::string &message);
  202. void sendMessageTo(CConnection &c, const std::string &message);
  203. void applyAndAsk(Query * sel, ui8 player, boost::function<void(ui32)> &callback);
  204. void ask(Query * sel, ui8 player, const CFunctionList<void(ui32)> &callback);
  205. void sendToAllClients(CPackForClient * info);
  206. void sendAndApply(CPackForClient * info);
  207. void sendAndApply(SetGarrisons * info);
  208. void sendAndApply(SetResource * info);
  209. void sendAndApply(SetResources * info);
  210. void sendAndApply(NewStructures * info);
  211. void run(bool resume);
  212. void newTurn();
  213. void handleAfterAttackCasting( const BattleAttack & bat );
  214. bool sacrificeArtifact(const IMarket * m, const CGHeroInstance * hero, CArtifact* art);
  215. friend class CVCMIServer;
  216. friend class CScriptCallback;
  217. };
  218. #endif // __CGAMEHANDLER_H__