-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlockDispenser.java
More file actions
234 lines (218 loc) · 7.82 KB
/
BlockDispenser.java
File metadata and controls
234 lines (218 loc) · 7.82 KB
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
package net.minecraft.src;
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode
import java.util.Random;
public class BlockDispenser extends BlockContainer
{
protected BlockDispenser(int i)
{
super(i, Material.rock);
blockIndexInTexture = 45;
}
public int tickRate()
{
return 4;
}
public int idDropped(int i, Random random)
{
return Block.dispenser.blockID;
}
public void onBlockAdded(World world, int i, int j, int k)
{
super.onBlockAdded(world, i, j, k);
setDispenserDefaultDirection(world, i, j, k);
}
private void setDispenserDefaultDirection(World world, int i, int j, int k)
{
int l = world.getBlockId(i, j, k - 1);
int i1 = world.getBlockId(i, j, k + 1);
int j1 = world.getBlockId(i - 1, j, k);
int k1 = world.getBlockId(i + 1, j, k);
byte byte0 = 3;
if(Block.opaqueCubeLookup[l] && !Block.opaqueCubeLookup[i1])
{
byte0 = 3;
}
if(Block.opaqueCubeLookup[i1] && !Block.opaqueCubeLookup[l])
{
byte0 = 2;
}
if(Block.opaqueCubeLookup[j1] && !Block.opaqueCubeLookup[k1])
{
byte0 = 5;
}
if(Block.opaqueCubeLookup[k1] && !Block.opaqueCubeLookup[j1])
{
byte0 = 4;
}
world.setBlockMetadataWithNotify(i, j, k, byte0);
}
public int getBlockTexture(IBlockAccess iblockaccess, int i, int j, int k, int l)
{
if(l == 1)
{
return blockIndexInTexture + 17;
}
if(l == 0)
{
return blockIndexInTexture + 17;
}
int i1 = iblockaccess.getBlockMetadata(i, j, k);
if(l != i1)
{
return blockIndexInTexture;
} else
{
return blockIndexInTexture + 1;
}
}
public int getBlockTextureFromSide(int i)
{
if(i == 1)
{
return blockIndexInTexture + 17;
}
if(i == 0)
{
return blockIndexInTexture + 17;
}
if(i == 3)
{
return blockIndexInTexture + 1;
} else
{
return blockIndexInTexture;
}
}
public boolean blockActivated(World world, int i, int j, int k, EntityPlayer entityplayer)
{
if(world.multiplayerWorld)
{
return true;
} else
{
TileEntityDispenser tileentitydispenser = (TileEntityDispenser)world.getBlockTileEntity(i, j, k);
entityplayer.displayGUIDispenser(tileentitydispenser);
return true;
}
}
private void dispenseItem(World world, int i, int j, int k, Random random)
{
int l = world.getBlockMetadata(i, j, k);
float f = 0.0F;
float f1 = 0.0F;
if(l == 3)
{
f1 = 1.0F;
} else
if(l == 2)
{
f1 = -1F;
} else
if(l == 5)
{
f = 1.0F;
} else
{
f = -1F;
}
TileEntityDispenser tileentitydispenser = (TileEntityDispenser)world.getBlockTileEntity(i, j, k);
ItemStack itemstack = tileentitydispenser.getRandomStackFromInventory();
double d = (double)i + (double)f * 0.5D + 0.5D;
double d1 = (double)j + 0.5D;
double d2 = (double)k + (double)f1 * 0.5D + 0.5D;
if(itemstack == null)
{
world.playSoundEffect(i, j, k, "random.click", 1.0F, 1.2F);
} else
{
if(itemstack.itemID == Item.arrow.shiftedIndex)
{
EntityArrow entityarrow = new EntityArrow(world, d, d1, d2);
entityarrow.setArrowHeading(f, 0.10000000149011612D, f1, 1.1F, 6F);
world.entityJoinedWorld(entityarrow);
world.playSoundEffect(i, j, k, "random.bow", 1.0F, 1.2F);
} else
if(itemstack.itemID == Item.egg.shiftedIndex)
{
EntityEgg entityegg = new EntityEgg(world, d, d1, d2);
entityegg.func_20048_a(f, 0.10000000149011612D, f1, 1.1F, 6F);
world.entityJoinedWorld(entityegg);
world.playSoundEffect(i, j, k, "random.bow", 1.0F, 1.2F);
} else
if(itemstack.itemID == Item.snowball.shiftedIndex)
{
EntitySnowball entitysnowball = new EntitySnowball(world, d, d1, d2);
entitysnowball.func_467_a(f, 0.10000000149011612D, f1, 1.1F, 6F);
world.entityJoinedWorld(entitysnowball);
world.playSoundEffect(i, j, k, "random.bow", 1.0F, 1.2F);
} else
{
EntityItem entityitem = new EntityItem(world, d, d1 - 0.29999999999999999D, d2, itemstack);
double d3 = random.nextDouble() * 0.10000000000000001D + 0.20000000000000001D;
entityitem.motionX = (double)f * d3;
entityitem.motionY = 0.20000000298023224D;
entityitem.motionZ = (double)f1 * d3;
entityitem.motionX += random.nextGaussian() * 0.0074999998323619366D * 6D;
entityitem.motionY += random.nextGaussian() * 0.0074999998323619366D * 6D;
entityitem.motionZ += random.nextGaussian() * 0.0074999998323619366D * 6D;
world.entityJoinedWorld(entityitem);
world.playSoundEffect(i, j, k, "random.click", 1.0F, 1.0F);
}
for(int i1 = 0; i1 < 10; i1++)
{
double d4 = random.nextDouble() * 0.20000000000000001D + 0.01D;
double d5 = d + (double)f * 0.01D + (random.nextDouble() - 0.5D) * (double)f1 * 0.5D;
double d6 = d1 + (random.nextDouble() - 0.5D) * 0.5D;
double d7 = d2 + (double)f1 * 0.01D + (random.nextDouble() - 0.5D) * (double)f * 0.5D;
double d8 = (double)f * d4 + random.nextGaussian() * 0.01D;
double d9 = -0.029999999999999999D + random.nextGaussian() * 0.01D;
double d10 = (double)f1 * d4 + random.nextGaussian() * 0.01D;
world.spawnParticle("smoke", d5, d6, d7, d8, d9, d10);
}
}
}
public void onNeighborBlockChange(World world, int i, int j, int k, int l)
{
if(l > 0 && Block.blocksList[l].canProvidePower())
{
boolean flag = world.isBlockIndirectlyGettingPowered(i, j, k) || world.isBlockIndirectlyGettingPowered(i, j + 1, k);
if(flag)
{
world.func_22136_c(i, j, k, blockID, tickRate());
}
}
}
public void updateTick(World world, int i, int j, int k, Random random)
{
if(world.isBlockIndirectlyGettingPowered(i, j, k) || world.isBlockIndirectlyGettingPowered(i, j + 1, k))
{
dispenseItem(world, i, j, k, random);
}
}
protected TileEntity getBlockEntity()
{
return new TileEntityDispenser();
}
public void onBlockPlacedBy(World world, int i, int j, int k, EntityLiving entityliving)
{
int l = MathHelper.floor_double((double)((entityliving.rotationYaw * 4F) / 360F) + 0.5D) & 3;
if(l == 0)
{
world.setBlockMetadataWithNotify(i, j, k, 2);
}
if(l == 1)
{
world.setBlockMetadataWithNotify(i, j, k, 5);
}
if(l == 2)
{
world.setBlockMetadataWithNotify(i, j, k, 3);
}
if(l == 3)
{
world.setBlockMetadataWithNotify(i, j, k, 4);
}
}
}