1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00
vcmi/lib/rmg/Zone.h

157 lines
3.8 KiB
C++
Raw Normal View History

/*
* Zone.h, 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
*
*/
#pragma once
#include "../GameConstants.h"
#include "float3.h"
#include "../int3.h"
2023-05-20 11:45:08 +02:00
#include "../CRandomGenerator.h"
#include "CRmgTemplate.h"
#include "RmgArea.h"
#include "RmgPath.h"
#include "RmgObject.h"
2023-05-20 11:45:08 +02:00
#include "modificators/Modificator.h"
//uncomment to generate dumps afger every step of map generation
//#define RMG_DUMP
VCMI_LIB_NAMESPACE_BEGIN
class RmgMap;
class CMapGenerator;
2023-05-06 10:49:18 +02:00
class Modificator;
2023-05-20 11:46:32 +02:00
class CRandomGenerator;
extern const std::function<bool(const int3 &)> AREA_NO_FILTER;
2023-05-07 07:48:12 +02:00
typedef std::list<std::shared_ptr<Modificator>> TModificators;
template<typename T>
class ThreadSafeProxy
{
public:
ThreadSafeProxy(T& resource, boost::recursive_mutex& mutex)
: resourceRef(resource), lock(mutex) {}
T* operator->() { return &resourceRef; }
const T* operator->() const { return &resourceRef; }
T& operator*() { return resourceRef; }
const T& operator*() const { return resourceRef; }
T& get() {return resourceRef;}
const T& get() const {return resourceRef;}
T operator+(const T & other)
{
return resourceRef + other;
}
2024-03-27 07:48:22 +02:00
template <typename U>
T operator+(ThreadSafeProxy<U> & other)
{
return get() + other.get();
}
2024-03-27 08:18:25 +02:00
template <typename U>
T operator+(ThreadSafeProxy<U> && other)
{
return get() + other.get();
}
private:
T& resourceRef;
std::lock_guard<boost::recursive_mutex> lock;
};
2023-05-07 07:48:12 +02:00
class Zone : public rmg::ZoneOptions
{
public:
2023-05-20 11:46:32 +02:00
Zone(RmgMap & map, CMapGenerator & generator, CRandomGenerator & rand);
Zone(const Zone &) = delete;
void setOptions(const rmg::ZoneOptions & options);
bool isUnderground() const;
float3 getCenter() const;
void setCenter(const float3 &f);
int3 getPos() const;
void setPos(const int3 &pos);
ThreadSafeProxy<rmg::Area> area();
ThreadSafeProxy<const rmg::Area> area() const;
ThreadSafeProxy<rmg::Area> areaPossible();
ThreadSafeProxy<const rmg::Area> areaPossible() const;
ThreadSafeProxy<rmg::Area> freePaths();
ThreadSafeProxy<const rmg::Area> freePaths() const;
ThreadSafeProxy<rmg::Area> areaUsed();
ThreadSafeProxy<const rmg::Area> areaUsed() const;
void initFreeTiles();
void clearTiles();
void fractalize();
FactionID getTownType() const;
2023-11-05 19:13:18 +02:00
void setTownType(FactionID town);
2022-09-29 11:44:46 +02:00
TerrainId getTerrainType() const;
void setTerrainType(TerrainId terrain);
void connectPath(const rmg::Path & path);
2023-02-11 18:05:02 +02:00
rmg::Path searchPath(const rmg::Area & src, bool onlyStraight, const std::function<bool(const int3 &)> & areafilter = AREA_NO_FILTER) const;
rmg::Path searchPath(const int3 & src, bool onlyStraight, const std::function<bool(const int3 &)> & areafilter = AREA_NO_FILTER) const;
2023-12-13 23:13:42 +02:00
rmg::Path searchPath(const rmg::Area & src, bool onlyStraight, const rmg::Area & searchArea) const;
2023-02-11 18:05:02 +02:00
2023-05-07 07:48:12 +02:00
TModificators getModificators();
template<class T>
T* getModificator()
{
for(auto & m : modificators)
if(auto * mm = dynamic_cast<T*>(m.get()))
return mm;
return nullptr;
}
template<class T>
void addModificator()
{
modificators.emplace_back(new T(*this, map, generator));
}
void initModificators();
2023-05-20 11:46:32 +02:00
CRandomGenerator & getRand();
public:
mutable boost::recursive_mutex areaMutex;
using Lock = boost::unique_lock<boost::recursive_mutex>;
protected:
CMapGenerator & generator;
2023-05-20 11:46:32 +02:00
CRandomGenerator rand;
RmgMap & map;
2023-05-07 07:48:12 +02:00
TModificators modificators;
bool finished;
//placement info
int3 pos;
float3 center;
rmg::Area dArea; //irregular area assined to zone
rmg::Area dAreaPossible;
rmg::Area dAreaFree; //core paths of free tiles that all other objects will be linked to
rmg::Area dAreaUsed;
std::vector<int3> possibleQuestArtifactPos;
//template info
2023-11-05 19:13:18 +02:00
FactionID townType;
2022-09-29 11:44:46 +02:00
TerrainId terrainType;
};
VCMI_LIB_NAMESPACE_END