2011-02-01 22:55:30 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.Random;
|
2011-05-14 16:29:42 +02:00
|
|
|
|
|
|
|
// CraftBukkit start
|
2011-05-08 11:56:40 +02:00
|
|
|
import org.bukkit.block.BlockState;
|
|
|
|
import org.bukkit.block.Dispenser;
|
|
|
|
import org.bukkit.craftbukkit.CraftServer;
|
|
|
|
import org.bukkit.craftbukkit.CraftWorld;
|
|
|
|
import org.bukkit.craftbukkit.block.CraftBlock;
|
|
|
|
import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
|
|
|
import org.bukkit.event.block.BlockDamageEvent;
|
|
|
|
import org.bukkit.event.block.BlockDispenseEvent;
|
|
|
|
import org.bukkit.util.Vector;
|
2011-05-14 16:29:42 +02:00
|
|
|
// CraftBukkit end
|
2011-02-01 22:55:30 +01:00
|
|
|
|
|
|
|
public class BlockDispenser extends BlockContainer {
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
private Random a = new Random();
|
|
|
|
|
2011-02-01 22:55:30 +01:00
|
|
|
protected BlockDispenser(int i) {
|
2011-02-01 23:01:37 +01:00
|
|
|
super(i, Material.STONE);
|
|
|
|
this.textureId = 45;
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
public int c() {
|
2011-02-01 22:55:30 +01:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int a(int i, Random random) {
|
2011-02-01 23:01:37 +01:00
|
|
|
return Block.DISPENSER.id;
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void e(World world, int i, int j, int k) {
|
|
|
|
super.e(world, i, j, k);
|
2011-02-01 23:01:37 +01:00
|
|
|
this.g(world, i, j, k);
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private void g(World world, int i, int j, int k) {
|
2011-04-20 22:47:26 +02:00
|
|
|
if (!world.isStatic) {
|
|
|
|
int l = world.getTypeId(i, j, k - 1);
|
|
|
|
int i1 = world.getTypeId(i, j, k + 1);
|
|
|
|
int j1 = world.getTypeId(i - 1, j, k);
|
|
|
|
int k1 = world.getTypeId(i + 1, j, k);
|
|
|
|
byte b0 = 3;
|
|
|
|
|
|
|
|
if (Block.o[l] && !Block.o[i1]) {
|
|
|
|
b0 = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Block.o[i1] && !Block.o[l]) {
|
|
|
|
b0 = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Block.o[j1] && !Block.o[k1]) {
|
|
|
|
b0 = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Block.o[k1] && !Block.o[j1]) {
|
|
|
|
b0 = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
world.setData(i, j, k, b0);
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public int a(int i) {
|
2011-02-01 23:01:37 +01:00
|
|
|
return i == 1 ? this.textureId + 17 : (i == 0 ? this.textureId + 17 : (i == 3 ? this.textureId + 1 : this.textureId));
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public boolean interact(World world, int i, int j, int k, EntityHuman entityhuman) {
|
2011-02-01 23:01:37 +01:00
|
|
|
if (world.isStatic) {
|
2011-02-01 22:55:30 +01:00
|
|
|
return true;
|
|
|
|
} else {
|
2011-02-01 23:01:37 +01:00
|
|
|
TileEntityDispenser tileentitydispenser = (TileEntityDispenser) world.getTileEntity(i, j, k);
|
2011-02-01 22:55:30 +01:00
|
|
|
|
2011-02-01 23:01:37 +01:00
|
|
|
entityhuman.a(tileentitydispenser);
|
2011-02-01 22:55:30 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-14 16:29:42 +02:00
|
|
|
// CraftBukkit - private -> public
|
2011-04-20 19:05:14 +02:00
|
|
|
public void dispense(World world, int i, int j, int k, Random random) {
|
2011-02-01 23:01:37 +01:00
|
|
|
int l = world.getData(i, j, k);
|
2011-05-26 14:48:22 +02:00
|
|
|
byte b0 = 0;
|
|
|
|
byte b1 = 0;
|
2011-02-01 22:55:30 +01:00
|
|
|
|
|
|
|
if (l == 3) {
|
2011-05-26 14:48:22 +02:00
|
|
|
b1 = 1;
|
2011-02-01 22:55:30 +01:00
|
|
|
} else if (l == 2) {
|
2011-05-26 14:48:22 +02:00
|
|
|
b1 = -1;
|
2011-02-01 22:55:30 +01:00
|
|
|
} else if (l == 5) {
|
2011-05-26 14:48:22 +02:00
|
|
|
b0 = 1;
|
2011-02-01 22:55:30 +01:00
|
|
|
} else {
|
2011-05-26 14:48:22 +02:00
|
|
|
b0 = -1;
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
2011-02-01 23:01:37 +01:00
|
|
|
|
|
|
|
TileEntityDispenser tileentitydispenser = (TileEntityDispenser) world.getTileEntity(i, j, k);
|
2011-05-08 11:56:40 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
int dispenseSlot = tileentitydispenser.findDispenseSlot();
|
|
|
|
ItemStack itemstack = null;
|
|
|
|
if (dispenseSlot > -1) {
|
|
|
|
itemstack = tileentitydispenser.getContents()[dispenseSlot];
|
2011-05-14 16:29:42 +02:00
|
|
|
|
2011-05-08 11:56:40 +02:00
|
|
|
// Copy item stack, because we want it to have 1 item
|
|
|
|
itemstack = new ItemStack(itemstack.id, 1, itemstack.damage);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-05-14 16:29:42 +02:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
double d0 = (double) i + (double) b0 * 0.6D + 0.5D;
|
2011-02-01 22:55:30 +01:00
|
|
|
double d1 = (double) j + 0.5D;
|
2011-05-26 14:48:22 +02:00
|
|
|
double d2 = (double) k + (double) b1 * 0.6D + 0.5D;
|
2011-02-01 22:55:30 +01:00
|
|
|
|
|
|
|
if (itemstack == null) {
|
2011-05-26 14:48:22 +02:00
|
|
|
world.e(1001, i, j, k, 0);
|
2011-02-01 22:55:30 +01:00
|
|
|
} else {
|
2011-05-08 11:56:40 +02:00
|
|
|
// CraftBukkit start
|
2011-06-12 00:02:58 +02:00
|
|
|
double d3 = random.nextDouble() * 0.1D + 0.2D;
|
2011-05-26 14:48:22 +02:00
|
|
|
double motX = (double) b0 * d3;
|
2011-05-08 11:56:40 +02:00
|
|
|
double motY = 0.20000000298023224D;
|
2011-05-26 14:48:22 +02:00
|
|
|
double motZ = (double) b1 * d3;
|
2011-05-08 11:56:40 +02:00
|
|
|
motX += random.nextGaussian() * 0.007499999832361937D * 6.0D;
|
|
|
|
motY += random.nextGaussian() * 0.007499999832361937D * 6.0D;
|
|
|
|
motZ += random.nextGaussian() * 0.007499999832361937D * 6.0D;
|
|
|
|
|
|
|
|
CraftWorld craftWorld = ((WorldServer) world).getWorld();
|
|
|
|
CraftServer server = ((WorldServer) world).getServer();
|
|
|
|
CraftBlock block = (CraftBlock) craftWorld.getBlockAt(i, j, k);
|
|
|
|
org.bukkit.inventory.ItemStack bukkitItem = (new CraftItemStack(itemstack)).clone();
|
|
|
|
BlockDispenseEvent event = new BlockDispenseEvent(block, bukkitItem, new Vector(motX, motY, motZ));
|
|
|
|
server.getPluginManager().callEvent(event);
|
2011-05-14 16:29:42 +02:00
|
|
|
|
2011-05-08 11:56:40 +02:00
|
|
|
if (event.isCancelled()) {
|
|
|
|
return;
|
|
|
|
}
|
2011-05-14 16:29:42 +02:00
|
|
|
|
2011-05-08 11:56:40 +02:00
|
|
|
// Actually remove the item
|
|
|
|
tileentitydispenser.a(dispenseSlot, 1);
|
|
|
|
|
|
|
|
motX = event.getVelocity().getX();
|
|
|
|
motY = event.getVelocity().getY();
|
|
|
|
motZ = event.getVelocity().getZ();
|
2011-05-14 16:29:42 +02:00
|
|
|
|
|
|
|
itemstack = new ItemStack(event.getItem().getTypeId(), event.getItem().getAmount(), event.getItem().getDurability());
|
2011-05-08 11:56:40 +02:00
|
|
|
// CraftBukkit end
|
2011-02-01 23:01:37 +01:00
|
|
|
|
|
|
|
if (itemstack.id == Item.ARROW.id) {
|
|
|
|
EntityArrow entityarrow = new EntityArrow(world, d0, d1, d2);
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
entityarrow.a((double) b0, 0.10000000149011612D, (double) b1, 1.1F, 6.0F);
|
|
|
|
entityarrow.a = true;
|
2011-04-20 19:05:14 +02:00
|
|
|
world.addEntity(entityarrow);
|
2011-05-26 14:48:22 +02:00
|
|
|
world.e(1002, i, j, k, 0);
|
2011-02-01 23:01:37 +01:00
|
|
|
} else if (itemstack.id == Item.EGG.id) {
|
|
|
|
EntityEgg entityegg = new EntityEgg(world, d0, d1, d2);
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
entityegg.a((double) b0, 0.10000000149011612D, (double) b1, 1.1F, 6.0F);
|
2011-04-20 19:05:14 +02:00
|
|
|
world.addEntity(entityegg);
|
2011-05-26 14:48:22 +02:00
|
|
|
world.e(1002, i, j, k, 0);
|
2011-02-01 23:01:37 +01:00
|
|
|
} else if (itemstack.id == Item.SNOW_BALL.id) {
|
|
|
|
EntitySnowball entitysnowball = new EntitySnowball(world, d0, d1, d2);
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
entitysnowball.a((double) b0, 0.10000000149011612D, (double) b1, 1.1F, 6.0F);
|
2011-04-20 19:05:14 +02:00
|
|
|
world.addEntity(entitysnowball);
|
2011-05-26 14:48:22 +02:00
|
|
|
world.e(1002, i, j, k, 0);
|
2011-02-01 22:55:30 +01:00
|
|
|
} else {
|
2011-02-01 23:01:37 +01:00
|
|
|
EntityItem entityitem = new EntityItem(world, d0, d1 - 0.3D, d2, itemstack);
|
2011-05-08 11:56:40 +02:00
|
|
|
// CraftBukkit start
|
2011-06-12 00:02:58 +02:00
|
|
|
// double d3 = random.nextDouble() * 0.1D + 0.2D; // Moved up
|
|
|
|
|
2011-05-08 11:56:40 +02:00
|
|
|
entityitem.motX = motX;
|
|
|
|
entityitem.motY = motY;
|
|
|
|
entityitem.motZ = motZ;
|
|
|
|
// CraftBukkit end
|
2011-04-20 19:05:14 +02:00
|
|
|
world.addEntity(entityitem);
|
2011-05-26 14:48:22 +02:00
|
|
|
world.e(1000, i, j, k, 0);
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
2011-02-01 23:01:37 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
world.e(2000, i, j, k, b0 + 1 + (b1 + 1) * 3);
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void doPhysics(World world, int i, int j, int k, int l) {
|
|
|
|
if (l > 0 && Block.byId[l].isPowerSource()) {
|
|
|
|
boolean flag = world.isBlockIndirectlyPowered(i, j, k) || world.isBlockIndirectlyPowered(i, j + 1, k);
|
2011-02-01 22:55:30 +01:00
|
|
|
|
|
|
|
if (flag) {
|
2011-05-26 14:48:22 +02:00
|
|
|
world.c(i, j, k, this.id, this.c());
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(World world, int i, int j, int k, Random random) {
|
2011-04-20 19:05:14 +02:00
|
|
|
if (world.isBlockIndirectlyPowered(i, j, k) || world.isBlockIndirectlyPowered(i, j + 1, k)) {
|
|
|
|
this.dispense(world, i, j, k, random);
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected TileEntity a_() {
|
2011-02-01 23:01:37 +01:00
|
|
|
return new TileEntityDispenser();
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void postPlace(World world, int i, int j, int k, EntityLiving entityliving) {
|
|
|
|
int l = MathHelper.floor((double) (entityliving.yaw * 4.0F / 360.0F) + 0.5D) & 3;
|
2011-02-01 22:55:30 +01:00
|
|
|
|
|
|
|
if (l == 0) {
|
2011-04-20 19:05:14 +02:00
|
|
|
world.setData(i, j, k, 2);
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
2011-02-01 23:01:37 +01:00
|
|
|
|
2011-02-01 22:55:30 +01:00
|
|
|
if (l == 1) {
|
2011-04-20 19:05:14 +02:00
|
|
|
world.setData(i, j, k, 5);
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
2011-02-01 23:01:37 +01:00
|
|
|
|
2011-02-01 22:55:30 +01:00
|
|
|
if (l == 2) {
|
2011-04-20 19:05:14 +02:00
|
|
|
world.setData(i, j, k, 3);
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
2011-02-01 23:01:37 +01:00
|
|
|
|
2011-02-01 22:55:30 +01:00
|
|
|
if (l == 3) {
|
2011-04-20 19:05:14 +02:00
|
|
|
world.setData(i, j, k, 4);
|
2011-02-01 22:55:30 +01:00
|
|
|
}
|
|
|
|
}
|
2011-05-26 14:48:22 +02:00
|
|
|
|
|
|
|
public void remove(World world, int i, int j, int k) {
|
|
|
|
TileEntityDispenser tileentitydispenser = (TileEntityDispenser) world.getTileEntity(i, j, k);
|
|
|
|
|
|
|
|
for (int l = 0; l < tileentitydispenser.getSize(); ++l) {
|
|
|
|
ItemStack itemstack = tileentitydispenser.getItem(l);
|
|
|
|
|
|
|
|
if (itemstack != null) {
|
|
|
|
float f = this.a.nextFloat() * 0.8F + 0.1F;
|
|
|
|
float f1 = this.a.nextFloat() * 0.8F + 0.1F;
|
|
|
|
float f2 = this.a.nextFloat() * 0.8F + 0.1F;
|
|
|
|
|
|
|
|
while (itemstack.count > 0) {
|
|
|
|
int i1 = this.a.nextInt(21) + 10;
|
|
|
|
|
|
|
|
if (i1 > itemstack.count) {
|
|
|
|
i1 = itemstack.count;
|
|
|
|
}
|
|
|
|
|
|
|
|
itemstack.count -= i1;
|
|
|
|
EntityItem entityitem = new EntityItem(world, (double) ((float) i + f), (double) ((float) j + f1), (double) ((float) k + f2), new ItemStack(itemstack.id, i1, itemstack.getData()));
|
|
|
|
float f3 = 0.05F;
|
|
|
|
|
|
|
|
entityitem.motX = (double) ((float) this.a.nextGaussian() * f3);
|
|
|
|
entityitem.motY = (double) ((float) this.a.nextGaussian() * f3 + 0.2F);
|
|
|
|
entityitem.motZ = (double) ((float) this.a.nextGaussian() * f3);
|
|
|
|
world.addEntity(entityitem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
super.remove(world, i, j, k);
|
|
|
|
}
|
2011-02-02 00:32:18 +01:00
|
|
|
}
|