aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/BaseRailTile.cpp
blob: db854bb330d5489f442ab04af45052cd523bd3a8 (plain)
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
#include "stdafx.h"
#include "net.minecraft.world.phys.h"
#include "net.minecraft.world.level.h"
#include "net.minecraft.world.h"
#include "BaseRailTile.h"

BaseRailTile::Rail::Rail(Level *level, int x, int y, int z)
{
	this->level = level;
	this->x = x;
	this->y = y;
	this->z = z;

	int id = level->getTile(x, y, z);

	// 4J Stu - We saw a random crash near the end of development on XboxOne orignal version where the id here isn't a tile any more
	// Adding this check in to avoid that crash
	m_bValidRail = isRail(id);
	if(m_bValidRail)
	{
		int direction = level->getData(x, y, z);
		if (((BaseRailTile *) Tile::tiles[id])->usesDataBit)
		{
			usesDataBit = true;
			direction = direction & ~RAIL_DATA_BIT;
		}
		else
		{
			usesDataBit = false;
		}
		updateConnections(direction);
	}
}

BaseRailTile::Rail::~Rail()
{
	for( int i = 0; i < connections.size(); i++ )
	{
		delete connections[i];
	}
}

void BaseRailTile::Rail::updateConnections(int direction)
{
	if(m_bValidRail)
	{
		for( int i = 0; i < connections.size(); i++ )
		{
			delete connections[i];
		}
		connections.clear();
		MemSect(50);
		if (direction == DIR_FLAT_Z)
		{
			connections.push_back(new TilePos(x, y, z - 1));
			connections.push_back(new TilePos(x, y, z + 1));
		} else if (direction == DIR_FLAT_X)
		{
			connections.push_back(new TilePos(x - 1, y, z));
			connections.push_back(new TilePos(x + 1, y, z));
		} else if (direction == 2)
		{
			connections.push_back(new TilePos(x - 1, y, z));
			connections.push_back(new TilePos(x + 1, y + 1, z));
		} else if (direction == 3)
		{
			connections.push_back(new TilePos(x - 1, y + 1, z));
			connections.push_back(new TilePos(x + 1, y, z));
		} else if (direction == 4)
		{
			connections.push_back(new TilePos(x, y + 1, z - 1));
			connections.push_back(new TilePos(x, y, z + 1));
		} else if (direction == 5)
		{
			connections.push_back(new TilePos(x, y, z - 1));
			connections.push_back(new TilePos(x, y + 1, z + 1));
		} else if (direction == 6)
		{
			connections.push_back(new TilePos(x + 1, y, z));
			connections.push_back(new TilePos(x, y, z + 1));
		} else if (direction == 7)
		{
			connections.push_back(new TilePos(x - 1, y, z));
			connections.push_back(new TilePos(x, y, z + 1));
		} else if (direction == 8)
		{
			connections.push_back(new TilePos(x - 1, y, z));
			connections.push_back(new TilePos(x, y, z - 1));
		} else if (direction == 9)
		{
			connections.push_back(new TilePos(x + 1, y, z));
			connections.push_back(new TilePos(x, y, z - 1));
		}
		MemSect(0);
	}
}

void BaseRailTile::Rail::removeSoftConnections()
{
	if(m_bValidRail)
	{
		for (unsigned int i = 0; i < connections.size(); i++)
		{
			Rail *rail = getRail(connections[i]);
			if (rail == NULL || !rail->connectsTo(this))
			{
				delete connections[i];
				connections.erase(connections.begin()+i);
				i--;
			} else
			{
				delete connections[i];
				MemSect(50);
				connections[i] =new TilePos(rail->x, rail->y, rail->z);
				MemSect(0);
			}
			delete rail;
		}
	}
}

bool BaseRailTile::Rail::hasRail(int x, int y, int z)
{
	if(!m_bValidRail) return false;
	if (isRail(level, x, y, z)) return true;
	if (isRail(level, x, y + 1, z)) return true;
	if (isRail(level, x, y - 1, z)) return true;
	return false;
}

BaseRailTile::Rail *BaseRailTile::Rail::getRail(TilePos *p)
{
	if(!m_bValidRail) return NULL;
	if (isRail(level, p->x, p->y, p->z)) return new Rail(level, p->x, p->y, p->z);
	if (isRail(level, p->x, p->y + 1, p->z)) return new Rail(level, p->x, p->y + 1, p->z);
	if (isRail(level, p->x, p->y - 1, p->z)) return new Rail(level, p->x, p->y - 1, p->z);
	return NULL;
}


bool BaseRailTile::Rail::connectsTo(Rail *rail)
{
	if(m_bValidRail)
	{
		for ( const auto& p : connections )
		{
			if (p->x == rail->x && p->z == rail->z)
			{
				return true;
			}
		}
	}
	return false;
}

bool BaseRailTile::Rail::hasConnection(int x, int y, int z)
{
	if(m_bValidRail)
	{
		for ( const auto& p : connections )
		{
			if (p->x == x && p->z == z)
			{
				return true;
			}
		}
	}
	return false;
}


int BaseRailTile::Rail::countPotentialConnections()
{
	int count = 0;

	if(m_bValidRail)
	{
		if (hasRail(x, y, z - 1)) count++;
		if (hasRail(x, y, z + 1)) count++;
		if (hasRail(x - 1, y, z)) count++;
		if (hasRail(x + 1, y, z)) count++;
	}

	return count;
}

bool BaseRailTile::Rail::canConnectTo(Rail *rail)
{
	if(!m_bValidRail) return false;
	if (connectsTo(rail)) return true;
	if (connections.size() == 2)
	{
		return false;
	}
	if (connections.empty())
	{
		return true;
	}

	return true;
}

void BaseRailTile::Rail::connectTo(Rail *rail)
{
	if(m_bValidRail)
	{
		MemSect(50);
		connections.push_back(new TilePos(rail->x, rail->y, rail->z));
		MemSect(0);

		bool n = hasConnection(x, y, z - 1);
		bool s = hasConnection(x, y, z + 1);
		bool w = hasConnection(x - 1, y, z);
		bool e = hasConnection(x + 1, y, z);

		int dir = -1;

		if (n || s) dir = DIR_FLAT_Z;
		if (w || e) dir = DIR_FLAT_X;

		if (!usesDataBit)
		{
			if (s && e && !n && !w) dir = 6;
			if (s && w && !n && !e) dir = 7;
			if (n && w && !s && !e) dir = 8;
			if (n && e && !s && !w) dir = 9;
		}
		if (dir == DIR_FLAT_Z)
		{
			if (isRail(level, x, y + 1, z - 1)) dir = 4;
			if (isRail(level, x, y + 1, z + 1)) dir = 5;
		}
		if (dir == DIR_FLAT_X)
		{
			if (isRail(level, x + 1, y + 1, z)) dir = 2;
			if (isRail(level, x - 1, y + 1, z)) dir = 3;
		}

		if (dir < 0) dir = DIR_FLAT_Z;

		int data = dir;
		if (usesDataBit)
		{
			data = (level->getData(x, y, z) & RAIL_DATA_BIT) | dir;
		}

		level->setData(x, y, z, data, Tile::UPDATE_ALL);
	}
}

bool BaseRailTile::Rail::hasNeighborRail(int x, int y, int z)
{
	if(!m_bValidRail) return false;
	TilePos tp(x,y,z);
	Rail *neighbor = getRail( &tp );
	if (neighbor == NULL) return false;
	neighbor->removeSoftConnections();
	bool retval = neighbor->canConnectTo(this);
	delete neighbor;
	return retval;
}

void BaseRailTile::Rail::place(bool hasSignal, bool first)
{
	if(m_bValidRail)
	{
		bool n = hasNeighborRail(x, y, z - 1);
		bool s = hasNeighborRail(x, y, z + 1);
		bool w = hasNeighborRail(x - 1, y, z);
		bool e = hasNeighborRail(x + 1, y, z);

		int dir = -1;

		if ((n || s) && !w && !e) dir = DIR_FLAT_Z;
		if ((w || e) && !n && !s) dir = DIR_FLAT_X;

		if (!usesDataBit)
		{
			if (s && e && !n && !w) dir = 6;
			if (s && w && !n && !e) dir = 7;
			if (n && w && !s && !e) dir = 8;
			if (n && e && !s && !w) dir = 9;
		}
		if (dir == -1)
		{
			if (n || s) dir = DIR_FLAT_Z;
			if (w || e) dir = DIR_FLAT_X;

			if (!usesDataBit)
			{
				if (hasSignal)
				{
					if (s && e) dir = 6;
					if (w && s) dir = 7;
					if (e && n) dir = 9;
					if (n && w) dir = 8;
				} else {
					if (n && w) dir = 8;
					if (e && n) dir = 9;
					if (w && s) dir = 7;
					if (s && e) dir = 6;
				}
			}
		}

		if (dir == DIR_FLAT_Z)
		{
			if (isRail(level, x, y + 1, z - 1)) dir = 4;
			if (isRail(level, x, y + 1, z + 1)) dir = 5;
		}
		if (dir == DIR_FLAT_X)
		{
			if (isRail(level, x + 1, y + 1, z)) dir = 2;
			if (isRail(level, x - 1, y + 1, z)) dir = 3;
		}

		if (dir < 0) dir = DIR_FLAT_Z;

		updateConnections(dir);

		int data = dir;
		if (usesDataBit)
		{
			data = (level->getData(x, y, z) & RAIL_DATA_BIT) | dir;
		}

		if (first || level->getData(x, y, z) != data)
		{
			level->setData(x, y, z, data, Tile::UPDATE_ALL);

			for ( auto& it : connections )
			{
				Rail *neighbor = getRail(it);
				if (neighbor == NULL) continue;
				neighbor->removeSoftConnections();

				if (neighbor->canConnectTo(this))
				{
					neighbor->connectTo(this);
				}
				delete neighbor;
			}
		}
	}
}

bool BaseRailTile::isRail(Level *level, int x, int y, int z)
{
	return isRail(level->getTile(x, y, z));
}

bool BaseRailTile::isRail(int id)
{
	return id == Tile::rail_Id || id == Tile::goldenRail_Id || id == Tile::detectorRail_Id || id == Tile::activatorRail_Id;
}

BaseRailTile::BaseRailTile(int id, bool usesDataBit) : Tile(id, Material::decoration, isSolidRender())
{
	this->usesDataBit = usesDataBit;
	setShape(0, 0, 0, 1, 2 / 16.0f, 1);

	iconTurn = NULL;
}

bool BaseRailTile::isUsesDataBit()
{
	return usesDataBit;
}

AABB *BaseRailTile::getAABB(Level *level, int x, int y, int z)
{
	return NULL;
}

bool BaseRailTile::blocksLight()
{
	return false;
}

bool BaseRailTile::isSolidRender(bool isServerLevel)
{
	return false;
}

HitResult *BaseRailTile::clip(Level *level, int xt, int yt, int zt, Vec3 *a, Vec3 *b)
{
	updateShape(level, xt, yt, zt);
	return Tile::clip(level, xt, yt, zt, a, b);
}

void BaseRailTile::updateShape(LevelSource *level, int x, int y, int z, int forceData, shared_ptr<TileEntity> forceEntity) // 4J added forceData, forceEntity param
{
	int data = level->getData(x, y, z);
	if (data >= 2 && data <= 5)
	{
		setShape(0, 0, 0, 1, 2 / 16.0f + 0.5f, 1);
	} else
	{
		setShape(0, 0, 0, 1, 2 / 16.0f, 1);
	}
}

bool BaseRailTile::isCubeShaped()
{
	return false;
}

int BaseRailTile::getRenderShape()
{
	return Tile::SHAPE_RAIL;
}

int BaseRailTile::getResourceCount(Random random)
{
	return 1;
}

bool BaseRailTile::mayPlace(Level *level, int x, int y, int z)
{
	if (level->isTopSolidBlocking(x, y - 1, z))
	{
		return true;
	}
	return false;
}

void BaseRailTile::onPlace(Level *level, int x, int y, int z)
{
	if (!level->isClientSide)
	{
		updateDir(level, x, y, z, true);

		if (usesDataBit)
		{
			neighborChanged(level, x, y, z, id);
		}
	}
}

void BaseRailTile::neighborChanged(Level *level, int x, int y, int z, int type)
{
	if (level->isClientSide) return;

	int data = level->getData(x, y, z);
	int dir = data;
	if (usesDataBit) {
		dir = dir & RAIL_DIRECTION_MASK;
	}
	bool remove = false;

	if (!level->isTopSolidBlocking(x, y - 1, z)) remove = true;
	if (dir == 2 && !level->isTopSolidBlocking(x + 1, y, z)) remove = true;
	if (dir == 3 && !level->isTopSolidBlocking(x - 1, y, z)) remove = true;
	if (dir == 4 && !level->isTopSolidBlocking(x, y, z - 1)) remove = true;
	if (dir == 5 && !level->isTopSolidBlocking(x, y, z + 1)) remove = true;

	if (remove)
	{
		spawnResources(level, x, y, z, level->getData(x, y, z), 0);
		level->removeTile(x, y, z);
	}
	else
	{
		updateState(level, x, y, z, data, dir, type);
	}

}

void BaseRailTile::updateState(Level *level, int x, int y, int z, int data, int dir, int type)
{
}

void BaseRailTile::updateDir(Level *level, int x, int y, int z, bool first)
{
	if (level->isClientSide) return;
	Rail *rail = new Rail(level, x, y, z);
	rail->place(level->hasNeighborSignal(x, y, z), first);
	delete rail;
}

int BaseRailTile::getPistonPushReaction()
{
	// override the decoration material's reaction
	return Material::PUSH_NORMAL;
}

void BaseRailTile::onRemove(Level *level, int x, int y, int z, int id, int data)
{
	int dir = data;
	if (usesDataBit)
	{
		dir &= RAIL_DIRECTION_MASK;
	}

	Tile::onRemove(level, x, y, z, id, data);

	if (dir == 2 || dir == 3 || dir == 4 || dir == 5)
	{
		level->updateNeighborsAt(x, y + 1, z, id);
	}
	if (usesDataBit)
	{
		level->updateNeighborsAt(x, y, z, id);
		level->updateNeighborsAt(x, y - 1, z, id);
	}
}