2022-08-09 07:54:32 +02:00
|
|
|
/*
|
|
|
|
* ObstaclePlacer.cpp, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "StdInc.h"
|
|
|
|
#include "../mapObjects/CObjectClassesHandler.h"
|
|
|
|
#include "ObstaclePlacer.h"
|
|
|
|
#include "ObjectManager.h"
|
|
|
|
#include "TreasurePlacer.h"
|
|
|
|
#include "RockPlacer.h"
|
|
|
|
#include "WaterRoutes.h"
|
|
|
|
#include "WaterProxy.h"
|
|
|
|
#include "RoadPlacer.h"
|
|
|
|
#include "RiverPlacer.h"
|
|
|
|
#include "RmgMap.h"
|
|
|
|
#include "CMapGenerator.h"
|
|
|
|
#include "../CRandomGenerator.h"
|
|
|
|
#include "Functions.h"
|
2022-09-17 15:43:59 +02:00
|
|
|
#include "../mapping/CMapEditManager.h"
|
2022-08-09 07:54:32 +02:00
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2022-09-25 09:33:56 +02:00
|
|
|
void ObstacleProxy::collectPossibleObstacles(TTerrainId terrain)
|
2022-08-09 07:54:32 +02:00
|
|
|
{
|
|
|
|
//get all possible obstacles for this terrain
|
|
|
|
for(auto primaryID : VLC->objtypeh->knownObjects())
|
|
|
|
{
|
|
|
|
for(auto secondaryID : VLC->objtypeh->knownSubObjects(primaryID))
|
|
|
|
{
|
|
|
|
auto handler = VLC->objtypeh->getHandlerFor(primaryID, secondaryID);
|
|
|
|
if(handler->isStaticObject())
|
|
|
|
{
|
|
|
|
for(auto temp : handler->getTemplates())
|
|
|
|
{
|
2022-09-17 15:43:59 +02:00
|
|
|
if(temp->canBePlacedAt(terrain) && temp->getBlockMapOffset().valid())
|
2022-09-11 15:12:35 +02:00
|
|
|
obstaclesBySize[temp->getBlockedOffsets().size()].push_back(temp);
|
2022-08-09 07:54:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(auto o : obstaclesBySize)
|
|
|
|
{
|
|
|
|
possibleObstacles.push_back(o);
|
|
|
|
}
|
|
|
|
boost::sort(possibleObstacles, [](const ObstaclePair &p1, const ObstaclePair &p2) -> bool
|
|
|
|
{
|
|
|
|
return p1.first > p2.first; //bigger obstacles first
|
|
|
|
});
|
2022-09-17 15:43:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int ObstacleProxy::getWeightedObjects(const int3 & tile, const CMap * map, CRandomGenerator & rand, std::list<rmg::Object> & allObjects, std::vector<std::pair<rmg::Object*, int3>> & weightedObjects)
|
|
|
|
{
|
|
|
|
int maxWeight = std::numeric_limits<int>::min();
|
|
|
|
for(int i = 0; i < possibleObstacles.size(); ++i)
|
2022-08-09 07:54:32 +02:00
|
|
|
{
|
2022-09-17 15:43:59 +02:00
|
|
|
if(!possibleObstacles[i].first)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
auto shuffledObstacles = possibleObstacles[i].second;
|
|
|
|
RandomGeneratorUtil::randomShuffle(shuffledObstacles, rand);
|
|
|
|
|
|
|
|
for(auto temp : shuffledObstacles)
|
|
|
|
{
|
|
|
|
auto handler = VLC->objtypeh->getHandlerFor(temp->id, temp->subid);
|
|
|
|
auto obj = handler->create(temp);
|
|
|
|
allObjects.emplace_back(*obj);
|
|
|
|
rmg::Object * rmgObject = &allObjects.back();
|
|
|
|
for(auto & offset : obj->getBlockedOffsets())
|
|
|
|
{
|
|
|
|
rmgObject->setPosition(tile - offset);
|
|
|
|
if(!map->isInTheMap(rmgObject->getPosition()))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(!rmgObject->getArea().getSubarea([map](const int3 & t)
|
|
|
|
{
|
|
|
|
return !map->isInTheMap(t);
|
|
|
|
}).empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(isProhibited(rmgObject->getArea()))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int coverageBlocked = 0;
|
|
|
|
int coveragePossible = 0;
|
|
|
|
//do not use area intersection in optimization purposes
|
|
|
|
for(auto & t : rmgObject->getArea().getTilesVector())
|
|
|
|
{
|
|
|
|
auto coverage = verifyCoverage(t);
|
|
|
|
if(coverage.first)
|
|
|
|
++coverageBlocked;
|
|
|
|
if(coverage.second)
|
|
|
|
++coveragePossible;
|
|
|
|
}
|
|
|
|
|
|
|
|
int coverageOverlap = possibleObstacles[i].first - coverageBlocked - coveragePossible;
|
|
|
|
int weight = possibleObstacles[i].first + coverageBlocked - coverageOverlap * possibleObstacles[i].first;
|
|
|
|
assert(coverageOverlap >= 0);
|
|
|
|
|
|
|
|
if(weight > maxWeight)
|
|
|
|
{
|
|
|
|
weightedObjects.clear();
|
|
|
|
maxWeight = weight;
|
|
|
|
weightedObjects.emplace_back(rmgObject, rmgObject->getPosition());
|
|
|
|
if(weight > 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if(weight == maxWeight)
|
|
|
|
weightedObjects.emplace_back(rmgObject, rmgObject->getPosition());
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(maxWeight > 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return maxWeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObstacleProxy::placeObstacles(CMap * map, CRandomGenerator & rand)
|
|
|
|
{
|
2022-08-09 07:54:32 +02:00
|
|
|
//reverse order, since obstacles begin in bottom-right corner, while the map coordinates begin in top-left
|
|
|
|
auto blockedTiles = blockedArea.getTilesVector();
|
|
|
|
int tilePos = 0;
|
2022-09-17 15:43:59 +02:00
|
|
|
std::set<CGObjectInstance*> objs;
|
|
|
|
|
2022-08-09 07:54:32 +02:00
|
|
|
while(!blockedArea.empty() && tilePos < blockedArea.getTilesVector().size())
|
|
|
|
{
|
|
|
|
auto tile = blockedArea.getTilesVector()[tilePos];
|
2022-09-17 15:43:59 +02:00
|
|
|
|
2022-08-09 07:54:32 +02:00
|
|
|
std::list<rmg::Object> allObjects;
|
2022-09-17 15:43:59 +02:00
|
|
|
std::vector<std::pair<rmg::Object*, int3>> weightedObjects;
|
|
|
|
int maxWeight = getWeightedObjects(tile, map, rand, allObjects, weightedObjects);
|
|
|
|
|
2022-08-09 07:54:32 +02:00
|
|
|
if(weightedObjects.empty())
|
|
|
|
{
|
|
|
|
tilePos += 1;
|
|
|
|
continue;
|
|
|
|
}
|
2022-09-17 15:43:59 +02:00
|
|
|
|
|
|
|
auto objIter = RandomGeneratorUtil::nextItem(weightedObjects, rand);
|
2022-08-09 07:54:32 +02:00
|
|
|
objIter->first->setPosition(objIter->second);
|
2022-09-17 15:43:59 +02:00
|
|
|
placeObject(*objIter->first, objs);
|
|
|
|
|
2022-08-09 07:54:32 +02:00
|
|
|
blockedArea.subtract(objIter->first->getArea());
|
|
|
|
tilePos = 0;
|
2022-09-17 15:43:59 +02:00
|
|
|
|
|
|
|
postProcess(*objIter->first);
|
|
|
|
|
2022-08-09 07:54:32 +02:00
|
|
|
if(maxWeight < 0)
|
|
|
|
logGlobal->warn("Placed obstacle with negative weight at %s", objIter->second.toString());
|
2022-09-17 15:43:59 +02:00
|
|
|
|
2022-08-09 07:54:32 +02:00
|
|
|
for(auto & o : allObjects)
|
|
|
|
{
|
|
|
|
if(&o != objIter->first)
|
|
|
|
o.clear();
|
|
|
|
}
|
|
|
|
}
|
2022-09-17 15:43:59 +02:00
|
|
|
|
|
|
|
finalInsertion(map->getEditManager(), objs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObstacleProxy::finalInsertion(CMapEditManager * manager, std::set<CGObjectInstance*> & instances)
|
|
|
|
{
|
|
|
|
manager->insertObjects(instances); //insert as one operation - for undo purposes
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<bool, bool> ObstacleProxy::verifyCoverage(const int3 & t) const
|
|
|
|
{
|
2022-09-18 23:18:17 +02:00
|
|
|
return {blockedArea.contains(t), false};
|
2022-09-17 15:43:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ObstacleProxy::placeObject(rmg::Object & object, std::set<CGObjectInstance*> & instances)
|
|
|
|
{
|
|
|
|
for (auto * instance : object.instances())
|
|
|
|
{
|
|
|
|
instances.insert(&instance->object());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObstacleProxy::postProcess(const rmg::Object & object)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ObstacleProxy::isProhibited(const rmg::Area & objArea) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ObstaclePlacer::process()
|
|
|
|
{
|
|
|
|
manager = zone.getModificator<ObjectManager>();
|
|
|
|
if(!manager)
|
|
|
|
return;
|
|
|
|
|
|
|
|
riverManager = zone.getModificator<RiverPlacer>();
|
|
|
|
|
|
|
|
collectPossibleObstacles(zone.getTerrainType());
|
|
|
|
|
|
|
|
blockedArea = zone.area().getSubarea([this](const int3 & t)
|
|
|
|
{
|
|
|
|
return map.shouldBeBlocked(t);
|
|
|
|
});
|
|
|
|
blockedArea.subtract(zone.areaUsed());
|
|
|
|
zone.areaPossible().subtract(blockedArea);
|
|
|
|
|
|
|
|
prohibitedArea = zone.freePaths() + zone.areaUsed() + manager->getVisitableArea();
|
|
|
|
|
|
|
|
placeObstacles(&map.map(), generator.rand);
|
2022-08-09 07:54:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ObstaclePlacer::init()
|
|
|
|
{
|
|
|
|
DEPENDENCY(ObjectManager);
|
|
|
|
DEPENDENCY(TreasurePlacer);
|
|
|
|
DEPENDENCY(WaterRoutes);
|
|
|
|
DEPENDENCY(WaterProxy);
|
|
|
|
DEPENDENCY(RoadPlacer);
|
|
|
|
DEPENDENCY_ALL(RockPlacer);
|
|
|
|
}
|
2022-09-17 15:43:59 +02:00
|
|
|
|
|
|
|
std::pair<bool, bool> ObstaclePlacer::verifyCoverage(const int3 & t) const
|
|
|
|
{
|
2022-09-18 23:18:17 +02:00
|
|
|
return {map.shouldBeBlocked(t), zone.areaPossible().contains(t)};
|
2022-09-17 15:43:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ObstaclePlacer::placeObject(rmg::Object & object, std::set<CGObjectInstance*> &)
|
|
|
|
{
|
|
|
|
manager->placeObject(object, false, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObstaclePlacer::postProcess(const rmg::Object & object)
|
|
|
|
{
|
|
|
|
//river processing
|
|
|
|
if(riverManager)
|
|
|
|
{
|
2022-09-18 23:18:17 +02:00
|
|
|
const auto objTypeName = object.instances().front()->object().typeName;
|
|
|
|
if(objTypeName == "mountain")
|
2022-09-17 15:43:59 +02:00
|
|
|
riverManager->riverSource().unite(object.getArea());
|
2022-09-18 23:18:17 +02:00
|
|
|
else if(objTypeName == "lake")
|
2022-09-17 15:43:59 +02:00
|
|
|
riverManager->riverSink().unite(object.getArea());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ObstaclePlacer::isProhibited(const rmg::Area & objArea) const
|
|
|
|
{
|
|
|
|
if(prohibitedArea.overlap(objArea))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if(!zone.area().contains(objArea))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObstaclePlacer::finalInsertion(CMapEditManager *, std::set<CGObjectInstance*> &)
|
|
|
|
{
|
|
|
|
}
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|