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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
#include "stdafx.h"
#include "Arrays.h"
#include "net.minecraft.world.level.h"
#include "net.minecraft.world.phys.h"
#include "EmptyLevelChunk.h"
EmptyLevelChunk::EmptyLevelChunk(Level *level, int x, int z) : LevelChunk(level,x,z)
{
dontSave = true;
// Set this as fully post-processed, so we don't try and run post-processing on any edge chunks that will overlap into real chunks
terrainPopulated = LevelChunk::sTerrainPopulatedAllNeighbours | LevelChunk::sTerrainPostPostProcessed;
}
EmptyLevelChunk::EmptyLevelChunk(Level *level, byteArray blocks, int x, int z): LevelChunk(level,blocks,x,z)
{
dontSave = true;
delete [] blocks.data;
// Set this as fully post-processed, so we don't try and run post-processing on any edge chunks that will overlap into real chunks
terrainPopulated = LevelChunk::sTerrainPopulatedAllNeighbours | LevelChunk::sTerrainPostPostProcessed;
}
bool EmptyLevelChunk::isAt(int x, int z)
{
return x == this->x && z == this->z;
}
int EmptyLevelChunk::getHeightmap(int x, int z)
{
return 0;
}
void EmptyLevelChunk::recalcBlockLights()
{
}
void EmptyLevelChunk::recalcHeightmapOnly()
{
}
void EmptyLevelChunk::recalcHeightmap()
{
}
void EmptyLevelChunk::lightLava()
{
}
int EmptyLevelChunk::getTile(int x, int y, int z)
{
return 0;
}
bool EmptyLevelChunk::setTileAndData(int x, int y, int z, int _tile, int _data)
{
return true;
}
bool EmptyLevelChunk::setTile(int x, int y, int z, int _tile)
{
return true;
}
int EmptyLevelChunk::getData(int x, int y, int z)
{
return 0;
}
bool EmptyLevelChunk::setData(int x, int y, int z, int val, int mask, bool *maskedBitsChanged)
{
*maskedBitsChanged = true;
return false;
}
int EmptyLevelChunk::getBrightness(LightLayer::variety layer, int x, int y, int z)
{
return 0;
}
// 4J added
void EmptyLevelChunk::getNeighbourBrightnesses(int *brightnesses, LightLayer::variety layer, int x, int y, int z)
{
for(int i = 0; i < 6; i++ )
{
brightnesses[i] = 0;
}
}
void EmptyLevelChunk::setBrightness(LightLayer::variety layer, int x, int y, int z, int brightness)
{
}
int EmptyLevelChunk::getRawBrightness(int x, int y, int z, int skyDampen)
{
return 0;
}
void EmptyLevelChunk::addEntity(shared_ptr<Entity> e)
{
}
void EmptyLevelChunk::removeEntity(shared_ptr<Entity> e)
{
}
void EmptyLevelChunk::removeEntity(shared_ptr<Entity> e, int yc)
{
}
bool EmptyLevelChunk::isSkyLit(int x, int y, int z)
{
return false;
}
void EmptyLevelChunk::skyBrightnessChanged()
{
}
shared_ptr<TileEntity> EmptyLevelChunk::getTileEntity(int x, int y, int z)
{
return shared_ptr<TileEntity>();
}
void EmptyLevelChunk::addTileEntity(shared_ptr<TileEntity> te)
{
}
void EmptyLevelChunk::setTileEntity(int x, int y, int z, shared_ptr<TileEntity> tileEntity)
{
}
void EmptyLevelChunk::removeTileEntity(int x, int y, int z)
{
}
void EmptyLevelChunk::load()
{
}
void EmptyLevelChunk::unload(bool unloadTileEntities) // 4J - added parameter
{
}
bool EmptyLevelChunk::containsPlayer()
{
return false;
}
void EmptyLevelChunk::markUnsaved()
{
}
void EmptyLevelChunk::getEntities(shared_ptr<Entity> except, AABB bb, vector<shared_ptr<Entity> > &es, EntitySelector *selector)
{
}
void EmptyLevelChunk::getEntitiesOfClass(const type_info& ec, AABB bb, vector<shared_ptr<Entity> > &es, EntitySelector *selector)
{
}
int EmptyLevelChunk::countEntities()
{
return 0;
}
bool EmptyLevelChunk::shouldSave(bool force)
{
return false;
}
void EmptyLevelChunk::setBlocks(byteArray newBlocks, int sub)
{
}
int EmptyLevelChunk::getBlocksAndData(byteArray data, int x0, int y0, int z0, int x1, int y1, int z1, int p, bool includeLighting/* = true*/)
{
int xs = x1 - x0;
int ys = y1 - y0;
int zs = z1 - z0;
int s = xs * ys * zs;
int len;
if( includeLighting )
{
len = s + s / 2 * 3;
}
else
{
len = s + s / 2;
}
Arrays::fill(data, p, p + len, (byte) 0);
return len;
}
int EmptyLevelChunk::setBlocksAndData(byteArray data, int x0, int y0, int z0, int x1, int y1, int z1, int p, bool includeLighting/* = true*/)
{
int xs = x1 - x0;
int ys = y1 - y0;
int zs = z1 - z0;
int s = xs * ys * zs;
if( includeLighting )
{
return s + s / 2 * 3;
}
else
{
return s + s / 2;
}
}
bool EmptyLevelChunk::testSetBlocksAndData(byteArray data, int x0, int y0, int z0, int x1, int y1, int z1, int p)
{
return false;
}
Random *EmptyLevelChunk::getRandom(__int64 l)
{
return new Random((level->getSeed() + x * x * 4987142 + x * 5947611 + z * z * 4392871l + z * 389711) ^ l);
}
bool EmptyLevelChunk::isEmpty()
{
return true;
}
|