summaryrefslogtreecommitdiffstats
path: root/src/SetChunkData.h
blob: 2f3c3d6a396782c8d0ccfb34dc170e13d4b45bf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125

// SetChunkData.h

// Declares the cSetChunkData class used for sending loaded / generated chunk data into cWorld





#pragma once





class cSetChunkData
{
public:
	/** Constructs a new instance with empty data.
	Allocates new buffers for the block data.
	Prefer to use this constructor, then fill the object with data and then send it to cWorld, as this will
	reduce the copying required to queue the set operation. */
	cSetChunkData(int a_ChunkX, int a_ChunkZ, bool a_ShouldMarkDirty);

	/** Constructs a new instance based on data existing elsewhere, will copy all the memory. Prefer to use the
	other constructor as much as possible.
	Will move the entity and blockentity lists into the internal storage, and invalidate a_Entities and
	a_BlockEntities.
	When passing an lvalue, a_Entities and a_BlockEntities must be explicitly converted to an rvalue beforehand
	with std::move().
	a_BlockTypes and a_BlockMetas must always be valid.
	If either of the light arrays are nullptr, the chunk data will be marked as not having any light at all and
	will be scheduled for re-lighting once it is set into the chunkmap.
	If a_Biomes is not valid, the internal flag is set and the world will calculate the biomes using the chunk
	generator when setting the chunk data.
	If a_HeightMap is not assigned, the world will calculate the heightmap based on the blocktypes when setting
	the chunk data. */
	cSetChunkData(
		int a_ChunkX, int a_ChunkZ,
		const BLOCKTYPE * a_BlockTypes,
		const NIBBLETYPE * a_BlockMetas,
		const NIBBLETYPE * a_BlockLight,
		const NIBBLETYPE * a_SkyLight,
		const cChunkDef::HeightMap * a_HeightMap,
		const cChunkDef::BiomeMap * a_Biomes,
		cEntityList && a_Entities,
		cBlockEntityList && a_BlockEntities,
		bool a_ShouldMarkDirty
	);

	int GetChunkX(void) const { return m_ChunkX; }
	int GetChunkZ(void) const { return m_ChunkZ; }

	/** Returns the internal storage of the block types, read-only. */
	const cChunkDef::BlockTypes & GetBlockTypes(void) const { return m_BlockTypes; }

	/** Returns the internal storage of the block types, read-only. */
	const cChunkDef::BlockNibbles & GetBlockMetas(void) const { return m_BlockMetas; }

	/** Returns the internal storage of the block light, read-only. */
	const cChunkDef::BlockNibbles & GetBlockLight(void) const { return m_BlockLight; }

	/** Returns the internal storage of the block types, read-only. */
	const cChunkDef::BlockNibbles & GetSkyLight(void) const { return m_SkyLight; }

	/** Returns the internal storage for heightmap, read-only. */
	const cChunkDef::HeightMap & GetHeightMap(void) const { return m_HeightMap; }

	/** Returns the internal storage for biomes, read-write. */
	cChunkDef::BiomeMap & GetBiomes(void) { return m_Biomes; }

	/** Returns the internal storage for entities, read-write. */
	cEntityList & GetEntities(void) { return m_Entities; }

	/** Returns the internal storage for block entities, read-write. */
	cBlockEntityList & GetBlockEntities(void) { return m_BlockEntities; }

	/** Returns whether both light arrays stored in this object are valid. */
	bool IsLightValid(void) const { return m_IsLightValid; }

	/** Returns whether the heightmap stored in this object is valid. */
	bool IsHeightMapValid(void) const { return m_IsHeightMapValid; }

	/** Returns whether the biomes stored in this object are valid. */
	bool AreBiomesValid(void) const { return m_AreBiomesValid; }

	/** Returns whether the chunk should be marked as dirty after its data is set.
	Used by the generator to save chunks after generating. */
	bool ShouldMarkDirty(void) const { return m_ShouldMarkDirty; }

	/** Marks the biomes stored in this object as valid. */
	void MarkBiomesValid(void) { m_AreBiomesValid = true; }

	/** Calculates the heightmap based on the contained blocktypes and marks it valid. */
	void CalculateHeightMap(void);

	/** Removes the block entities that don't have a proper blocktype at their corresponding coords. */
	void RemoveInvalidBlockEntities(void);

protected:
	int m_ChunkX;
	int m_ChunkZ;

	cChunkDef::BlockTypes m_BlockTypes;
	cChunkDef::BlockNibbles m_BlockMetas;
	cChunkDef::BlockNibbles m_BlockLight;
	cChunkDef::BlockNibbles m_SkyLight;
	cChunkDef::HeightMap m_HeightMap;
	cChunkDef::BiomeMap m_Biomes;
	cEntityList m_Entities;
	cBlockEntityList m_BlockEntities;

	bool m_IsLightValid;
	bool m_IsHeightMapValid;
	bool m_AreBiomesValid;
	bool m_ShouldMarkDirty;
};

typedef SharedPtr<cSetChunkData> cSetChunkDataPtr;  // TODO: Change to unique_ptr once we go C++11
typedef std::vector<cSetChunkDataPtr> cSetChunkDataPtrs;