43 const cPrefab::sDef * a_StartingPieceDefs,
size_t a_NumStartingPieceDefs,
44 int a_DefaultStartingPieceHeight = -1
65 size_t a_NumStartingPieceDefs,
66 int a_DefaultPieceHeight = -1
119 virtual void Reset(
void)
override;
EMCSBiome
Biome IDs The first batch corresponds to the clientside biomes, used by MineCraft.
unsigned char NIBBLETYPE
The datatype used by nibbledata (meta, light, skylight)
unsigned char BLOCKTYPE
The datatype used by blockdata.
std::vector< cPiece * > cPieces
std::map< AString, AString > AStringMap
A string dictionary, used for key-value pairs.
Encapsulates a Lua state and provides some syntactic sugar for common operations.
The interface that a biome generator must implement A biome generator takes chunk coords on input and...
The interface that is used to query terrain height from the shape generator.
Represents a single piece.
This class is an interface that stores pieces for a generator.
Represents a single piece that has been placed to specific coords in the world.
void ApplyBaseMetadataCubesetVer1(const AString &a_FileName, bool a_LogWarnings)
Applies the base known metadata from the m_Metadata map into this pool.
BLOCKTYPE m_VillageWaterRoadBlockType
The block type used for the village roads if the road is on water.
std::map< int, cPieces > cPiecesMap
The type used to map a connector type to the list of pieces with that connector.
cPrefabPiecePool(void)
Creates an empty instance.
int m_MaxDensity
The maximum density, as read from the metadata.
void Clear(void)
Removes and frees all pieces from this pool.
int m_MinDensity
The minimum density, as read from the metadata.
size_t GetStartingPiecesCount(void) const
Returns the number of starting pieces.
cPiecesMap m_PiecesByConnector
The map that has all pieces by their connector types The pieces are copies out of m_AllPieces and sho...
virtual int GetStartingPieceWeight(const cPiece &a_NewPiece) override
Returns the relative weight with which the a_NewPiece is to be selected for placing as the first piec...
BLOCKTYPE GetVillageWaterRoadBlockType(void) const
NIBBLETYPE GetVillageWaterRoadBlockMeta(void) const
BLOCKTYPE m_VillageRoadBlockType
The block type to use for the village roads.
bool ReadPoolMetadataCubesetVer1(const AString &a_FileName, cLuaState &a_LuaState, bool a_LogWarnings)
Reads the metadata for the entire pool from the cubeset file, stores it in the m_Metadata map.
bool LoadFromCubeset(const AString &a_Contents, const AString &a_FileName, bool a_LogWarnings)
Loads the pieces from the specified string containing Cubeset file data.
bool IsBiomeAllowed(EMCSBiome a_Biome) const
Returns true if a_Biome is among the accepted biomes in the m_AcceptedBiomes metadata member.
virtual ~cPrefabPiecePool() override
Destroys the pool, freeing all pieces.
std::unique_ptr< cPrefab > LoadPrefabFromCubesetVer1(const AString &a_FileName, cLuaState &a_LuaState, const AString &a_PieceName, bool a_LogWarnings)
Loads a single piece's prefab from the cubeset file parsed into the specified Lua state.
cPieces m_StartingPieces
The pieces that are used as starting pieces.
void AddPieceDefs(const cPrefab::sDef *a_PieceDefs, size_t a_NumPieceDefs)
Adds pieces from the specified definitions into m_AllPieces.
virtual int GetPieceWeight(const cPlacedPiece &a_PlacedPiece, const cPiece::cConnector &a_ExistingConnector, const cPiece &a_NewPiece) override
Returns the relative weight with which the a_NewPiece is to be selected for placing under a_PlacedPie...
virtual cPieces GetStartingPieces(void) override
Returns the pieces that should be used as the starting point.
AString m_IntendedUse
The intended use of this piece pool, as specified by the pool's metadata.
bool LoadFromFile(const AString &a_FileName, bool a_LogWarnings)
Loads the pieces from the specified file.
NIBBLETYPE m_VillageRoadBlockMeta
The block meta to use for the village roads.
cPieces m_AllPieces
All the pieces that are allowed for building.
void AddToPerConnectorMap(cPrefab *a_Prefab)
Adds the prefab to the m_PiecesByConnector map for all its connectors.
std::unordered_set< EMCSBiome, BiomeHasher > m_AllowedBiomes
A set of allowed biomes for the pool.
BLOCKTYPE GetVillageRoadBlockType(void) const
virtual cPieces GetPiecesWithConnector(int a_ConnectorType) override
Returns a list of pieces that contain the specified connector type.
virtual void Reset(void) override
Called when the pool has finished the current structure and should reset any piece-counters it has fo...
int GetMinDensity(void) const
const AStringMap & GetAllMetadata(void) const
void AddStartingPieceDefs(const cPrefab::sDef *a_StartingPieceDefs, size_t a_NumStartingPieceDefs, int a_DefaultPieceHeight=-1)
Adds pieces from the specified definitions into m_StartingPieces.
void AssignGens(int a_Seed, cBiomeGen &a_BiomeGen, cTerrainHeightGen &a_HeightGen, int a_SeaLevel)
Called when the piece pool is assigned to a generator, so that the individual starting pieces' vertic...
bool LoadCubesetPieceVer1(const AString &a_FileName, cLuaState &a_LuaState, int a_PieceIndex, bool a_LogWarnings)
Loads a single piece from the cubeset file parsed into the specified Lua state.
bool ReadConnectorsCubesetVer1(const AString &a_FileName, cLuaState &a_LuaState, const AString &a_PieceName, cPrefab *a_Prefab, bool a_LogWarnings)
Reads a single piece's connectors from the cubeset file parsed into the specified Lua state.
AString GetMetadata(const AString &a_ParamName) const
Returns the specified value from the metadata map.
int GetMaxDensity(void) const
bool ReadPieceMetadataCubesetVer1(const AString &a_FileName, cLuaState &a_LuaState, const AString &a_PieceName, cPrefab *a_Prefab, bool a_LogWarnings)
Reads a single piece's metadata from the cubeset file parsed into the specified Lua state.
bool LoadFromString(const AString &a_Contents, const AString &a_FileName, bool a_LogWarnings)
Loads the pieces from the specified string.
NIBBLETYPE GetVillageRoadBlockMeta(void) const
size_t GetAllPiecesCount(void) const
Returns the number of regular (non-starting) pieces.
AStringMap m_Metadata
A dictionary of pool-wide metadata, as read from the cubeset file.
bool LoadFromCubesetVer1(const AString &a_FileName, cLuaState &a_LuaState, bool a_LogWarnings)
Loads the pieces from the cubeset file parsed into the specified Lua state.
NIBBLETYPE m_VillageWaterRoadBlockMeta
The block meta used for the village roads if the road is on water.
const AString & GetIntendedUse(void) const
virtual void PiecePlaced(const cPiece &a_Piece) override
Called after a piece is placed, to notify the pool that it has been used.