Cuberite
A lightweight, fast and extensible game server for Minecraft
PrefabPiecePool.h
Go to the documentation of this file.
1 
2 // PrefabPiecePool.h
3 
4 // Declares the cPrefabPiecePool class that represents a cPiecePool descendant that uses cPrefab instances as the pieces
5 
6 
7 
8 
9 
10 #pragma once
11 
12 #include "PiecePool.h"
13 #include "Prefab.h"
14 
15 
16 
17 
18 
19 // fwd:
20 class cLuaState;
21 
22 
23 
24 
25 
27  public cPiecePool
28 {
29 public:
31  cPrefabPiecePool(void);
32 
42  const cPrefab::sDef * a_PieceDefs, size_t a_NumPieceDefs,
43  const cPrefab::sDef * a_StartingPieceDefs, size_t a_NumStartingPieceDefs,
44  int a_DefaultStartingPieceHeight = -1
45  );
46 
48  virtual ~cPrefabPiecePool() override;
49 
51  void Clear(void);
52 
56  void AddPieceDefs(const cPrefab::sDef * a_PieceDefs, size_t a_NumPieceDefs);
57 
64  const cPrefab::sDef * a_StartingPieceDefs,
65  size_t a_NumStartingPieceDefs,
66  int a_DefaultPieceHeight = -1
67  );
68 
71  bool LoadFromFile(const AString & a_FileName, bool a_LogWarnings);
72 
77  bool LoadFromString(const AString & a_Contents, const AString & a_FileName, bool a_LogWarnings);
78 
83  bool LoadFromCubeset(const AString & a_Contents, const AString & a_FileName, bool a_LogWarnings);
84 
86  size_t GetAllPiecesCount(void) const { return m_AllPieces.size(); }
87 
89  size_t GetStartingPiecesCount(void) const { return m_StartingPieces.size(); }
90 
91  // Metadata accessors:
92  const AString & GetIntendedUse(void) const { return m_IntendedUse; }
93  int GetMinDensity(void) const { return m_MinDensity; }
94  int GetMaxDensity(void) const { return m_MaxDensity; }
99 
101  bool IsBiomeAllowed(EMCSBiome a_Biome) const { return (m_AllowedBiomes.find(a_Biome) != m_AllowedBiomes.end()); }
102 
105  AString GetMetadata(const AString & a_ParamName) const;
106 
107  const AStringMap & GetAllMetadata(void) const { return m_Metadata; }
108 
111  void AssignGens(int a_Seed, cBiomeGen & a_BiomeGen, cTerrainHeightGen & a_HeightGen, int a_SeaLevel);
112 
113  // cPiecePool overrides:
114  virtual cPieces GetPiecesWithConnector(int a_ConnectorType) override;
115  virtual cPieces GetStartingPieces(void) override;
116  virtual int GetPieceWeight(const cPlacedPiece & a_PlacedPiece, const cPiece::cConnector & a_ExistingConnector, const cPiece & a_NewPiece) override;
117  virtual int GetStartingPieceWeight(const cPiece & a_NewPiece) override;
118  virtual void PiecePlaced(const cPiece & a_Piece) override;
119  virtual void Reset(void) override;
120 
121 protected:
122 
124  typedef std::map<int, cPieces> cPiecesMap;
125 
126 
130 
134 
138 
141 
144 
147 
150 
153 
156 
159 
161  std::unordered_set<EMCSBiome, BiomeHasher> m_AllowedBiomes;
162 
165 
166 
168  void AddToPerConnectorMap(cPrefab * a_Prefab);
169 
174  bool LoadFromCubesetVer1(const AString & a_FileName, cLuaState & a_LuaState, bool a_LogWarnings);
175 
181  bool LoadCubesetPieceVer1(const AString & a_FileName, cLuaState & a_LuaState, int a_PieceIndex, bool a_LogWarnings);
182 
188  std::unique_ptr<cPrefab> LoadPrefabFromCubesetVer1(
189  const AString & a_FileName,
190  cLuaState & a_LuaState,
191  const AString & a_PieceName,
192  bool a_LogWarnings
193  );
194 
204  const AString & a_FileName,
205  cLuaState & a_LuaState,
206  const AString & a_PieceName,
207  cPrefab * a_Prefab,
208  bool a_LogWarnings
209  );
210 
218  const AString & a_FileName,
219  cLuaState & a_LuaState,
220  const AString & a_PieceName,
221  cPrefab * a_Prefab,
222  bool a_LogWarnings
223  );
224 
229  const AString & a_FileName,
230  cLuaState & a_LuaState,
231  bool a_LogWarnings
232  );
233 
237  const AString & a_FileName,
238  bool a_LogWarnings
239  );
240 } ;
241 
242 
243 
244 
EMCSBiome
Biome IDs The first batch corresponds to the clientside biomes, used by MineCraft.
Definition: BiomeDef.h:18
unsigned char NIBBLETYPE
The datatype used by nibbledata (meta, light, skylight)
Definition: ChunkDef.h:44
unsigned char BLOCKTYPE
The datatype used by blockdata.
Definition: ChunkDef.h:41
std::vector< cPiece * > cPieces
Definition: PiecePool.h:262
std::string AString
Definition: StringUtils.h:11
std::map< AString, AString > AStringMap
A string dictionary, used for key-value pairs.
Definition: StringUtils.h:16
Encapsulates a Lua state and provides some syntactic sugar for common operations.
Definition: LuaState.h:56
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.
Definition: PiecePool.h:21
This class is an interface that stores pieces for a generator.
Definition: PiecePool.h:278
Represents a single piece that has been placed to specific coords in the world.
Definition: PiecePool.h:328
Definition: Prefab.h:33
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.