blob: 8dd54d0157062eb8be852693f2a55b2947db621c (
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
|
#include "stdafx.h"
#include "net.minecraft.world.level.h"
#include "net.minecraft.world.level.tile.h"
#include "MinecartSpawner.h"
MinecartSpawner::MinecartMobSpawner::MinecartMobSpawner(MinecartSpawner *parent)
{
m_parent = parent;
}
void MinecartSpawner::MinecartMobSpawner::broadcastEvent(int id)
{
m_parent->level->broadcastEntityEvent(m_parent->shared_from_this(), static_cast<byte>(id));
}
Level *MinecartSpawner::MinecartMobSpawner::getLevel()
{
return m_parent->level;
}
int MinecartSpawner::MinecartMobSpawner::getX()
{
return Mth::floor(m_parent->x);
}
int MinecartSpawner::MinecartMobSpawner::getY()
{
return Mth::floor(m_parent->y);
}
int MinecartSpawner::MinecartMobSpawner::getZ()
{
return Mth::floor(m_parent->z);
}
MinecartSpawner::MinecartSpawner(Level *level) : Minecart(level)
{
// 4J Stu - This function call had to be moved here from the Entity ctor to ensure that
// the derived version of the function is called
this->defineSynchedData();
spawner = new MinecartMobSpawner(this);
}
MinecartSpawner::MinecartSpawner(Level *level, double x, double y, double z) : Minecart(level, x, y, z)
{
// 4J Stu - This function call had to be moved here from the Entity ctor to ensure that
// the derived version of the function is called
this->defineSynchedData();
spawner = new MinecartMobSpawner(this);
}
MinecartSpawner::~MinecartSpawner()
{
delete spawner;
}
int MinecartSpawner::getType()
{
return TYPE_SPAWNER;
}
Tile *MinecartSpawner::getDefaultDisplayTile()
{
return Tile::mobSpawner;
}
void MinecartSpawner::readAdditionalSaveData(CompoundTag *tag)
{
Minecart::readAdditionalSaveData(tag);
spawner->load(tag);
}
void MinecartSpawner::addAdditonalSaveData(CompoundTag *tag)
{
Minecart::addAdditonalSaveData(tag);
spawner->save(tag);
}
void MinecartSpawner::handleEntityEvent(byte eventId)
{
spawner->onEventTriggered(eventId);
}
void MinecartSpawner::tick()
{
Minecart::tick();
spawner->tick();
}
BaseMobSpawner *MinecartSpawner::getSpawner()
{
return spawner;
}
|