-
Notifications
You must be signed in to change notification settings - Fork 4
/
TombStoneTileEntity.java
245 lines (199 loc) · 6.08 KB
/
TombStoneTileEntity.java
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
package TombStone;
import java.util.logging.Level;
import cpw.mods.fml.common.FMLLog;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.network.INetworkManager;
import net.minecraft.network.packet.Packet;
import net.minecraft.network.packet.Packet132TileEntityData;
import net.minecraft.tileentity.TileEntity;
public class TombStoneTileEntity extends TileEntity implements IInventory {
private ItemStack[] inv;
//NBT tag(s)
private String owner = "Nobody";
private String deathText = "Nobody died\n Died Never";
private boolean isCrafted = true;
private boolean isAddedToTombList = false;
public TombStoneTileEntity(){
//A tombstone holds as much as a double-wide chest (54+)
inv = new ItemStack[54];
}
public TombStoneTileEntity(String newOwner, String newDeathText, boolean newIsCrafted)
{
//A tombstone holds as much as a double-wide chest (54+)
inv = new ItemStack[54];
this.owner = newOwner;
this.deathText = newDeathText;
this.isCrafted = newIsCrafted;
}
public void finalize() throws Throwable
{
super.finalize();
TombStone.instance.tombList.remove(this);
}
///////////////////////////////////////
public boolean isCrafted()
{
return this.isCrafted;
}
public void setIsCrafted(boolean newIsCrafted)
{
this.isCrafted = newIsCrafted;
}
public String getOwner()
{
return this.owner;
}
public void setOwner(String newOwner)
{
this.owner = newOwner;
}
public String getDeathText()
{
return this.deathText;
}
public void setDeathText(String newDeathText)
{
this.deathText = newDeathText;
}
///////////////////////////////////////
@Override
public int getSizeInventory() {
return inv.length;
}
@Override
public ItemStack getStackInSlot(int slot) {
return inv[slot];
}
@Override
public void setInventorySlotContents(int slot, ItemStack stack) {
inv[slot] = stack;
if (stack != null && stack.stackSize > getInventoryStackLimit()) {
stack.stackSize = getInventoryStackLimit();
}
}
@Override
public ItemStack decrStackSize(int slot, int amt) {
ItemStack stack = getStackInSlot(slot);
if (stack != null) {
if (stack.stackSize <= amt) {
setInventorySlotContents(slot, null);
} else {
stack = stack.splitStack(amt);
if (stack.stackSize == 0) {
setInventorySlotContents(slot, null);
}
}
}
return stack;
}
@Override
public ItemStack getStackInSlotOnClosing(int slot) {
ItemStack stack = getStackInSlot(slot);
if (stack != null) {
setInventorySlotContents(slot, null);
}
return stack;
}
@Override
public int getInventoryStackLimit() {
return 64;
}
@Override
public boolean isUseableByPlayer(EntityPlayer player) {
return worldObj.getBlockTileEntity(xCoord, yCoord, zCoord) == this &&
player.getDistanceSq(xCoord + 0.5, yCoord + 0.5, zCoord + 0.5) < 64;
}
@Override
public void openChest() {}
@Override
public void closeChest() {}
@Override
public void readFromNBT(NBTTagCompound tagCompound) {
super.readFromNBT(tagCompound);
owner = tagCompound.getString("owner");
deathText = tagCompound.getString("deathText");
isCrafted = tagCompound.getBoolean("isCrafted");
//FMLLog.log(Level.WARNING, "Loaded Tombstone: owner=%s, deathText=%s, isCrafted=%b", owner, deathText, isCrafted);
NBTTagList tagList = tagCompound.getTagList("Inventory");
for (int i = 0; i < tagList.tagCount(); i++) {
NBTTagCompound tag = (NBTTagCompound) tagList.tagAt(i);
byte slot = tag.getByte("Slot");
if (slot >= 0 && slot < inv.length) {
inv[slot] = ItemStack.loadItemStackFromNBT(tag);
}
}
}
@Override
public void writeToNBT(NBTTagCompound tagCompound) {
super.writeToNBT(tagCompound);
tagCompound.setString("owner", owner);
tagCompound.setString("deathText", deathText);
tagCompound.setBoolean("isCrafted", isCrafted);
//FMLLog.log(Level.WARNING, "Saved Tombstone: owner=%s, deathText=%s, isCrafted=%b", owner, deathText, isCrafted);
NBTTagList itemList = new NBTTagList();
for (int i = 0; i < inv.length; i++) {
ItemStack stack = inv[i];
if (stack != null) {
NBTTagCompound tag = new NBTTagCompound();
tag.setByte("Slot", (byte) i);
stack.writeToNBT(tag);
itemList.appendTag(tag);
}
}
tagCompound.setTag("Inventory", itemList);
}
@Override
public String getInvName() {
return "tco.tombstonetileentity";
}
@Override
public void onDataPacket(INetworkManager net, Packet132TileEntityData pkt)
{
readFromNBT(pkt.customParam1);
boolean foundDuplicate = false;
for(int i=0; i<TombStone.instance.tombList.size(); i++)
{
TombStoneTileEntity item = TombStone.instance.tombList.get(i);
if(item.xCoord == this.xCoord && item.yCoord == this.yCoord && item.zCoord == this.zCoord)
{
foundDuplicate = true;
}
}
if(!isAddedToTombList && !foundDuplicate)
TombStone.instance.tombList.add(this);
}
@Override
public Packet getDescriptionPacket()
{
NBTTagCompound nbtData = new NBTTagCompound();
this.writeToNBT(nbtData);
boolean foundDuplicate = false;
for(int i=0; i<TombStone.instance.tombList.size(); i++)
{
TombStoneTileEntity item = TombStone.instance.tombList.get(i);
if(item.xCoord == this.xCoord && item.yCoord == this.yCoord && item.zCoord == this.zCoord)
{
foundDuplicate = true;
}
}
if(!isAddedToTombList && !foundDuplicate)
TombStone.instance.tombList.add(this);
return new Packet132TileEntityData(this.xCoord, this.yCoord, this.zCoord, 0, nbtData);
}
@Override
public boolean isInvNameLocalized() {
return true; // return false to look-up localized name from language pack
}
/**
* DOC: Returns true if automation is allowed to insert the given stack (ignoring stack size) into the given slot.
*/
@Override
public boolean isStackValidForSlot(int i, ItemStack itemstack) {
return false; // don't allow items to go in (only out)
//return true; // no special restrictions
}
}