IGameEventsReceiver.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * IGameEventsReceiver.h, 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. #pragma once
  11. #include "battle/BattleHex.h"
  12. #include "GameConstants.h"
  13. #include "int3.h"
  14. class CCallback;
  15. VCMI_LIB_NAMESPACE_BEGIN
  16. class CGTownInstance;
  17. class CCreature;
  18. class CArmedInstance;
  19. struct StackLocation;
  20. struct TryMoveHero;
  21. struct ArtifactLocation;
  22. class CGHeroInstance;
  23. class IShipyard;
  24. class CGDwelling;
  25. struct Component;
  26. class CStackInstance;
  27. class CGBlackMarket;
  28. class CGObjectInstance;
  29. struct Bonus;
  30. class IMarket;
  31. struct SetObjectProperty;
  32. struct PackageApplied;
  33. class BattleAction;
  34. struct BattleStackAttacked;
  35. struct BattleResult;
  36. struct BattleSpellCast;
  37. struct CatapultAttack;
  38. class CStack;
  39. class CCreatureSet;
  40. struct BattleAttack;
  41. struct SetStackEffect;
  42. struct BattleTriggerEffect;
  43. struct CObstacleInstance;
  44. struct CPackForServer;
  45. class EVictoryLossCheckResult;
  46. struct MetaString;
  47. class ObstacleChanges;
  48. class UnitChanges;
  49. class DLL_LINKAGE IBattleEventsReceiver
  50. {
  51. public:
  52. virtual void actionFinished(const BattleAction &action){};//occurs AFTER every action taken by any stack or by the hero
  53. virtual void actionStarted(const BattleAction &action){};//occurs BEFORE every action taken by any stack or by the hero
  54. virtual void battleAttack(const BattleAttack *ba){}; //called when stack is performing attack
  55. virtual void battleStacksAttacked(const std::vector<BattleStackAttacked> & bsa, bool ranged){}; //called when stack receives damage (after battleAttack())
  56. virtual void battleEnd(const BattleResult *br){};
  57. virtual void battleNewRoundFirst(int round){}; //called at the beginning of each turn before changes are applied;
  58. virtual void battleNewRound(int round){}; //called at the beginning of each turn, round=-1 is the tactic phase, round=0 is the first "normal" turn
  59. virtual void battleLogMessage(const std::vector<MetaString> & lines){};
  60. virtual void battleStackMoved(const CStack * stack, std::vector<BattleHex> dest, int distance, bool teleport){};
  61. virtual void battleSpellCast(const BattleSpellCast *sc){};
  62. virtual void battleStacksEffectsSet(const SetStackEffect & sse){};//called when a specific effect is set to stacks
  63. virtual void battleTriggerEffect(const BattleTriggerEffect & bte){}; //called for various one-shot effects
  64. virtual void battleStartBefore(const CCreatureSet *army1, const CCreatureSet *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2) {}; //called just before battle start
  65. virtual void battleStart(const CCreatureSet *army1, const CCreatureSet *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool side){}; //called by engine when battle starts; side=0 - left, side=1 - right
  66. virtual void battleUnitsChanged(const std::vector<UnitChanges> & units){};
  67. virtual void battleObstaclesChanged(const std::vector<ObstacleChanges> & obstacles){};
  68. virtual void battleCatapultAttacked(const CatapultAttack & ca){}; //called when catapult makes an attack
  69. virtual void battleGateStateChanged(const EGateState state){};
  70. };
  71. class DLL_LINKAGE IGameEventsReceiver
  72. {
  73. public:
  74. virtual void buildChanged(const CGTownInstance *town, BuildingID buildingID, int what){}; //what: 1 - built, 2 - demolished
  75. virtual void battleResultsApplied(){}; //called when all effects of last battle are applied
  76. virtual void garrisonsChanged(ObjectInstanceID id1, ObjectInstanceID id2){};
  77. //artifacts operations
  78. virtual void artifactPut(const ArtifactLocation &al){};
  79. virtual void artifactRemoved(const ArtifactLocation &al){};
  80. virtual void artifactAssembled(const ArtifactLocation &al){};
  81. virtual void artifactDisassembled(const ArtifactLocation &al){};
  82. virtual void artifactMoved(const ArtifactLocation &src, const ArtifactLocation &dst){};
  83. virtual void artifactPossibleAssembling(const ArtifactLocation & dst) {};
  84. virtual void heroVisit(const CGHeroInstance *visitor, const CGObjectInstance *visitedObj, bool start){};
  85. virtual void heroCreated(const CGHeroInstance*){};
  86. virtual void heroInGarrisonChange(const CGTownInstance *town){};
  87. virtual void heroMoved(const TryMoveHero & details, bool verbose = true){};
  88. virtual void heroPrimarySkillChanged(const CGHeroInstance * hero, int which, si64 val){};
  89. virtual void heroSecondarySkillChanged(const CGHeroInstance * hero, int which, int val){};
  90. virtual void heroManaPointsChanged(const CGHeroInstance * hero){} //not called at the beginning of turn and after spell casts
  91. virtual void heroMovePointsChanged(const CGHeroInstance * hero){} //not called at the beginning of turn and after movement
  92. virtual void heroVisitsTown(const CGHeroInstance* hero, const CGTownInstance * town){};
  93. virtual void receivedResource(){};
  94. virtual void showInfoDialog(const std::string & text, const std::vector<Component> & components, int soundID){};
  95. virtual void showRecruitmentDialog(const CGDwelling *dwelling, const CArmedInstance *dst, int level){}
  96. virtual void showShipyardDialog(const IShipyard *obj){} //obj may be town or shipyard; state: 0 - can buid, 1 - lack of resources, 2 - dest tile is blocked, 3 - no water
  97. virtual void showPuzzleMap(){};
  98. virtual void viewWorldMap(){};
  99. virtual void showMarketWindow(const IMarket *market, const CGHeroInstance *visitor){};
  100. virtual void showUniversityWindow(const IMarket *market, const CGHeroInstance *visitor){};
  101. virtual void showHillFortWindow(const CGObjectInstance *object, const CGHeroInstance *visitor){};
  102. virtual void showTavernWindow(const CGObjectInstance *townOrTavern){};
  103. virtual void showThievesGuildWindow (const CGObjectInstance * obj){};
  104. virtual void showQuestLog(){};
  105. virtual void advmapSpellCast(const CGHeroInstance * caster, int spellID){}; //called when a hero casts a spell
  106. virtual void tileHidden(const std::unordered_set<int3, ShashInt3> &pos){};
  107. virtual void tileRevealed(const std::unordered_set<int3, ShashInt3> &pos){};
  108. virtual void newObject(const CGObjectInstance * obj){}; //eg. ship built in shipyard
  109. virtual void availableArtifactsChanged(const CGBlackMarket *bm = nullptr){}; //bm may be nullptr, then artifacts are changed in the global pool (used by merchants in towns)
  110. virtual void centerView (int3 pos, int focusTime){};
  111. virtual void availableCreaturesChanged(const CGDwelling *town){};
  112. virtual void heroBonusChanged(const CGHeroInstance *hero, const Bonus &bonus, bool gain){};//if gain hero received bonus, else he lost it
  113. virtual void playerBonusChanged(const Bonus &bonus, bool gain){};//if gain hero received bonus, else he lost it
  114. virtual void requestSent(const CPackForServer *pack, int requestID){};
  115. virtual void requestRealized(PackageApplied *pa){};
  116. virtual void objectPropertyChanged(const SetObjectProperty * sop){}; //eg. mine has been flagged
  117. virtual void objectRemoved(const CGObjectInstance *obj){}; //eg. collected resource, picked artifact, beaten hero
  118. virtual void objectRemovedAfter(){}; //eg. collected resource, picked artifact, beaten hero
  119. virtual void playerBlocked(int reason, bool start){}; //reason: 0 - upcoming battle
  120. virtual void gameOver(PlayerColor player, const EVictoryLossCheckResult & victoryLossCheckResult) {}; //player lost or won the game
  121. virtual void playerStartsTurn(PlayerColor player){};
  122. virtual void showComp(const Component &comp, std::string message) {}; //display component in the advmapint infobox
  123. //TODO shouldn't be moved down the tree?
  124. virtual void heroExchangeStarted(ObjectInstanceID hero1, ObjectInstanceID hero2, QueryID queryID){};
  125. };
  126. VCMI_LIB_NAMESPACE_END