Nullkiller.cpp 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /*
  2. * Nullkiller.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 "Nullkiller.h"
  12. #include "../AIGateway.h"
  13. #include "../Behaviors/CaptureObjectsBehavior.h"
  14. #include "../Behaviors/RecruitHeroBehavior.h"
  15. #include "../Behaviors/BuyArmyBehavior.h"
  16. #include "../Behaviors/StartupBehavior.h"
  17. #include "../Behaviors/DefenceBehavior.h"
  18. #include "../Behaviors/BuildingBehavior.h"
  19. #include "../Behaviors/GatherArmyBehavior.h"
  20. #include "../Behaviors/ClusterBehavior.h"
  21. #include "../Goals/Invalid.h"
  22. #include "../Goals/Composition.h"
  23. extern boost::thread_specific_ptr<CCallback> cb;
  24. extern boost::thread_specific_ptr<AIGateway> ai;
  25. using namespace Goals;
  26. #if AI_TRACE_LEVEL >= 1
  27. #define MAXPASS 1000000
  28. #else
  29. #define MAXPASS 30
  30. #endif
  31. Nullkiller::Nullkiller()
  32. {
  33. memory.reset(new AIMemory());
  34. }
  35. void Nullkiller::init(std::shared_ptr<CCallback> cb, PlayerColor playerID)
  36. {
  37. this->cb = cb;
  38. this->playerID = playerID;
  39. priorityEvaluator.reset(new PriorityEvaluator(this));
  40. priorityEvaluators.reset(
  41. new SharedPool<PriorityEvaluator>(
  42. [&]()->std::unique_ptr<PriorityEvaluator>
  43. {
  44. return make_unique<PriorityEvaluator>(this);
  45. }));
  46. dangerHitMap.reset(new DangerHitMapAnalyzer(this));
  47. buildAnalyzer.reset(new BuildAnalyzer(this));
  48. objectClusterizer.reset(new ObjectClusterizer(this));
  49. dangerEvaluator.reset(new FuzzyHelper(this));
  50. pathfinder.reset(new AIPathfinder(cb.get(), this));
  51. armyManager.reset(new ArmyManager(cb.get(), this));
  52. heroManager.reset(new HeroManager(cb.get(), this));
  53. decomposer.reset(new DeepDecomposer());
  54. }
  55. Goals::TTask Nullkiller::choseBestTask(Goals::TTaskVec & tasks) const
  56. {
  57. Goals::TTask bestTask = *vstd::maxElementByFun(tasks, [](Goals::TTask task) -> float{
  58. return task->priority;
  59. });
  60. return bestTask;
  61. }
  62. Goals::TTask Nullkiller::choseBestTask(Goals::TSubgoal behavior, int decompositionMaxDepth) const
  63. {
  64. logAi->debug("Checking behavior %s", behavior->toString());
  65. auto start = std::chrono::high_resolution_clock::now();
  66. Goals::TGoalVec elementarGoals = decomposer->decompose(behavior, decompositionMaxDepth);
  67. Goals::TTaskVec tasks;
  68. boost::this_thread::interruption_point();
  69. for(auto goal : elementarGoals)
  70. {
  71. Goals::TTask task = Goals::taskptr(*goal);
  72. if(task->priority <= 0)
  73. task->priority = priorityEvaluator->evaluate(goal);
  74. tasks.push_back(task);
  75. }
  76. if(tasks.empty())
  77. {
  78. logAi->debug("Behavior %s found no tasks. Time taken %ld", behavior->toString(), timeElapsed(start));
  79. return Goals::taskptr(Goals::Invalid());
  80. }
  81. auto task = choseBestTask(tasks);
  82. logAi->debug(
  83. "Behavior %s returns %s, priority %f. Time taken %ld",
  84. behavior->toString(),
  85. task->toString(),
  86. task->priority,
  87. timeElapsed(start));
  88. return task;
  89. }
  90. void Nullkiller::resetAiState()
  91. {
  92. lockedResources = TResources();
  93. scanDepth = ScanDepth::SMALL;
  94. playerID = ai->playerID;
  95. lockedHeroes.clear();
  96. dangerHitMap->reset();
  97. }
  98. void Nullkiller::updateAiState(int pass)
  99. {
  100. boost::this_thread::interruption_point();
  101. auto start = std::chrono::high_resolution_clock::now();
  102. activeHero = nullptr;
  103. memory->removeInvisibleObjects(cb.get());
  104. dangerHitMap->updateHitMap();
  105. boost::this_thread::interruption_point();
  106. heroManager->update();
  107. logAi->trace("Updating paths");
  108. std::map<const CGHeroInstance *, HeroRole> activeHeroes;
  109. for(auto hero : cb->getHeroesInfo())
  110. {
  111. if(getHeroLockedReason(hero) == HeroLockedReason::DEFENCE)
  112. continue;
  113. activeHeroes[hero] = heroManager->getHeroRole(hero);
  114. }
  115. PathfinderSettings cfg;
  116. cfg.useHeroChain = true;
  117. cfg.scoutTurnDistanceLimit = SCOUT_TURN_DISTANCE_LIMIT;
  118. if(scanDepth != ScanDepth::FULL)
  119. {
  120. cfg.mainTurnDistanceLimit = MAIN_TURN_DISTANCE_LIMIT * ((int)scanDepth + 1);
  121. }
  122. pathfinder->updatePaths(activeHeroes, cfg);
  123. armyManager->update();
  124. objectClusterizer->clusterize();
  125. buildAnalyzer->update();
  126. decomposer->reset();
  127. logAi->debug("AI state updated in %ld", timeElapsed(start));
  128. }
  129. bool Nullkiller::isHeroLocked(const CGHeroInstance * hero) const
  130. {
  131. return getHeroLockedReason(hero) != HeroLockedReason::NOT_LOCKED;
  132. }
  133. bool Nullkiller::arePathHeroesLocked(const AIPath & path) const
  134. {
  135. if(getHeroLockedReason(path.targetHero) == HeroLockedReason::STARTUP)
  136. {
  137. #if AI_TRACE_LEVEL >= 1
  138. logAi->trace("Hero %s is locked by STARTUP. Discarding %s", path.targetHero->name, path.toString());
  139. #endif
  140. return true;
  141. }
  142. for(auto & node : path.nodes)
  143. {
  144. auto lockReason = getHeroLockedReason(node.targetHero);
  145. if(lockReason != HeroLockedReason::NOT_LOCKED)
  146. {
  147. #if AI_TRACE_LEVEL >= 1
  148. logAi->trace("Hero %s is locked by STARTUP. Discarding %s", path.targetHero->name, path.toString());
  149. #endif
  150. return true;
  151. }
  152. }
  153. return false;
  154. }
  155. HeroLockedReason Nullkiller::getHeroLockedReason(const CGHeroInstance * hero) const
  156. {
  157. auto found = lockedHeroes.find(hero);
  158. return found != lockedHeroes.end() ? found->second : HeroLockedReason::NOT_LOCKED;
  159. }
  160. void Nullkiller::makeTurn()
  161. {
  162. const int MAX_DEPTH = 10;
  163. resetAiState();
  164. for(int i = 1; i <= MAXPASS; i++)
  165. {
  166. updateAiState(i);
  167. Goals::TTaskVec bestTasks = {
  168. choseBestTask(sptr(BuyArmyBehavior()), 1),
  169. choseBestTask(sptr(CaptureObjectsBehavior()), 1),
  170. choseBestTask(sptr(ClusterBehavior()), MAX_DEPTH),
  171. choseBestTask(sptr(RecruitHeroBehavior()), 1),
  172. choseBestTask(sptr(DefenceBehavior()), MAX_DEPTH),
  173. choseBestTask(sptr(BuildingBehavior()), 1),
  174. choseBestTask(sptr(GatherArmyBehavior()), MAX_DEPTH)
  175. };
  176. if(cb->getDate(Date::DAY) == 1)
  177. {
  178. bestTasks.push_back(choseBestTask(sptr(StartupBehavior()), 1));
  179. }
  180. Goals::TTask bestTask = choseBestTask(bestTasks);
  181. HeroPtr hero = bestTask->getHero();
  182. if(bestTask->priority < NEXT_SCAN_MIN_PRIORITY
  183. && scanDepth != ScanDepth::FULL)
  184. {
  185. HeroRole heroRole = HeroRole::MAIN;
  186. if(hero.validAndSet())
  187. heroRole = heroManager->getHeroRole(hero);
  188. if(heroRole == HeroRole::MAIN || bestTask->priority < MIN_PRIORITY)
  189. {
  190. logAi->trace(
  191. "Goal %s has too low priority %f so increasing scan depth",
  192. bestTask->toString(),
  193. bestTask->priority);
  194. scanDepth = (ScanDepth)((int)scanDepth + 1);
  195. continue;
  196. }
  197. }
  198. if(bestTask->priority < MIN_PRIORITY)
  199. {
  200. logAi->trace("Goal %s has too low priority. It is not worth doing it. Ending turn.", bestTask->toString());
  201. return;
  202. }
  203. std::string taskDescr = bestTask->toString();
  204. boost::this_thread::interruption_point();
  205. logAi->debug("Trying to realize %s (value %2.3f)", taskDescr, bestTask->priority);
  206. try
  207. {
  208. bestTask->accept(ai.get());
  209. }
  210. catch(goalFulfilledException &)
  211. {
  212. logAi->trace("Task %s completed", bestTask->toString());
  213. }
  214. catch(std::exception & e)
  215. {
  216. logAi->debug("Failed to realize subgoal of type %s, I will stop.", taskDescr);
  217. logAi->debug("The error message was: %s", e.what());
  218. return;
  219. }
  220. }
  221. }
  222. TResources Nullkiller::getFreeResources() const
  223. {
  224. auto freeRes = cb->getResourceAmount() - lockedResources;
  225. freeRes.positive();
  226. return freeRes;
  227. }
  228. void Nullkiller::lockResources(const TResources & res)
  229. {
  230. lockedResources += res;
  231. }