ObjectDistributor.cpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * ObjectDistributor.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 "ObjectDistributor.h"
  12. #include "../../VCMI_Lib.h"
  13. #include "../RmgMap.h"
  14. #include "../CMapGenerator.h"
  15. #include "TreasurePlacer.h"
  16. #include "PrisonHeroPlacer.h"
  17. #include "QuestArtifactPlacer.h"
  18. #include "TownPlacer.h"
  19. #include "TerrainPainter.h"
  20. #include "../../mapObjectConstructors/AObjectTypeHandler.h"
  21. #include "../../mapObjectConstructors/CObjectClassesHandler.h"
  22. #include "../../mapObjects/MapObjects.h"
  23. #include "../Functions.h"
  24. #include "../RmgObject.h"
  25. VCMI_LIB_NAMESPACE_BEGIN
  26. void ObjectDistributor::process()
  27. {
  28. distributeLimitedObjects();
  29. distributePrisons();
  30. distributeSeerHuts();
  31. }
  32. void ObjectDistributor::init()
  33. {
  34. //All of the terrain types need to be determined
  35. DEPENDENCY_ALL(TerrainPainter);
  36. POSTFUNCTION(TreasurePlacer);
  37. }
  38. void ObjectDistributor::distributeLimitedObjects()
  39. {
  40. ObjectInfo oi;
  41. auto zones = map.getZones();
  42. for (auto primaryID : VLC->objtypeh->knownObjects())
  43. {
  44. for (auto secondaryID : VLC->objtypeh->knownSubObjects(primaryID))
  45. {
  46. auto handler = VLC->objtypeh->getHandlerFor(primaryID, secondaryID);
  47. if (!handler->isStaticObject() && handler->getRMGInfo().value)
  48. {
  49. auto rmgInfo = handler->getRMGInfo();
  50. //Skip objects which don't have global per-map limit here
  51. if (rmgInfo.mapLimit)
  52. {
  53. //Count all zones where this object can be placed
  54. std::vector<std::shared_ptr<Zone>> matchingZones;
  55. for (const auto& it : zones)
  56. {
  57. if (!handler->getTemplates(it.second->getTerrainType()).empty() &&
  58. rmgInfo.value <= it.second->getMaxTreasureValue())
  59. {
  60. matchingZones.push_back(it.second);
  61. }
  62. }
  63. size_t numZones = matchingZones.size();
  64. if (!numZones)
  65. continue;
  66. auto rmgInfo = handler->getRMGInfo();
  67. RandomGeneratorUtil::randomShuffle(matchingZones, zone.getRand());
  68. for (auto& zone : matchingZones)
  69. {
  70. oi.generateObject = [this, primaryID, secondaryID]() -> CGObjectInstance *
  71. {
  72. return VLC->objtypeh->getHandlerFor(primaryID, secondaryID)->create(map.mapInstance->cb, nullptr);
  73. };
  74. oi.value = rmgInfo.value;
  75. oi.probability = rmgInfo.rarity;
  76. oi.setTemplates(primaryID, secondaryID, zone->getTerrainType());
  77. //Rounding up will make sure all possible objects are exhausted
  78. uint32_t mapLimit = rmgInfo.mapLimit.value();
  79. uint32_t maxPerZone = std::ceil(float(mapLimit) / numZones);
  80. //But not more than zone limit
  81. oi.maxPerZone = std::min(maxPerZone, rmgInfo.zoneLimit);
  82. numZones--;
  83. rmgInfo.setMapLimit(mapLimit - oi.maxPerZone);
  84. //Don't add objects with 0 count remaining
  85. if(oi.maxPerZone && !oi.templates.empty())
  86. {
  87. zone->getModificator<TreasurePlacer>()->addObjectToRandomPool(oi);
  88. }
  89. }
  90. }
  91. }
  92. }
  93. }
  94. }
  95. void ObjectDistributor::distributeSeerHuts()
  96. {
  97. //TODO: Move typedef outside the class?
  98. //Copy by value to random shuffle
  99. const auto & zoneMap = map.getZones();
  100. RmgMap::ZoneVector zones(zoneMap.begin(), zoneMap.end());
  101. RandomGeneratorUtil::randomShuffle(zones, zone.getRand());
  102. const auto & possibleQuestArts = generator.getAllPossibleQuestArtifacts();
  103. size_t availableArts = possibleQuestArts.size();
  104. auto artIt = possibleQuestArts.begin();
  105. for (int i = zones.size() - 1; i >= 0 ; i--)
  106. {
  107. size_t localArts = std::ceil((float)availableArts / (i + 1));
  108. availableArts -= localArts;
  109. auto * qap = zones[i].second->getModificator<QuestArtifactPlacer>();
  110. if (qap)
  111. {
  112. for (;localArts > 0 && artIt != possibleQuestArts.end(); artIt++, localArts--)
  113. {
  114. qap->addRandomArtifact(*artIt);
  115. }
  116. }
  117. }
  118. }
  119. void ObjectDistributor::distributePrisons()
  120. {
  121. //Copy by value to random shuffle
  122. const auto & zoneMap = map.getZones();
  123. RmgMap::ZoneVector zones(zoneMap.begin(), zoneMap.end());
  124. RandomGeneratorUtil::randomShuffle(zones, zone.getRand());
  125. // TODO: Some shorthand for unique Modificator
  126. PrisonHeroPlacer * prisonHeroPlacer = nullptr;
  127. for(auto & z : map.getZones())
  128. {
  129. prisonHeroPlacer = z.second->getModificator<PrisonHeroPlacer>();
  130. if (prisonHeroPlacer)
  131. {
  132. break;
  133. }
  134. }
  135. size_t allowedPrisons = prisonHeroPlacer->getPrisonsRemaning();
  136. for (int i = zones.size() - 1; i >= 0; i--)
  137. {
  138. auto zone = zones[i].second;
  139. auto * tp = zone->getModificator<TreasurePlacer>();
  140. if (tp)
  141. {
  142. tp->setMaxPrisons(std::ceil(float(allowedPrisons) / (i + 1)));
  143. allowedPrisons -= tp->getMaxPrisons();
  144. }
  145. }
  146. }
  147. VCMI_LIB_NAMESPACE_END