2011-01-08 11:49:42 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2011-01-15 22:36:57 +01:00
|
|
|
import org.bukkit.block.BlockFace;
|
2011-01-15 22:40:18 +01:00
|
|
|
import org.bukkit.craftbukkit.block.CraftBlock;
|
2011-01-15 22:29:17 +01:00
|
|
|
import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
2011-01-15 22:23:28 +01:00
|
|
|
import org.bukkit.craftbukkit.entity.CraftPlayer;
|
2011-01-23 13:23:13 +01:00
|
|
|
import org.bukkit.craftbukkit.CraftServer;
|
2011-01-08 11:49:42 +01:00
|
|
|
import org.bukkit.craftbukkit.CraftWorld;
|
2011-01-23 13:23:13 +01:00
|
|
|
import org.bukkit.entity.Player;
|
2011-01-08 11:49:42 +01:00
|
|
|
import org.bukkit.event.Event.Type;
|
|
|
|
import org.bukkit.event.player.PlayerItemEvent;
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-08 11:49:42 +01:00
|
|
|
|
|
|
|
public class ItemBucket extends Item {
|
|
|
|
|
|
|
|
private int a;
|
|
|
|
|
|
|
|
public ItemBucket(int i, int j) {
|
|
|
|
super(i);
|
2011-01-29 22:50:29 +01:00
|
|
|
this.maxStackSize = 1;
|
|
|
|
this.durability = 64;
|
|
|
|
this.a = j;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public ItemStack a(ItemStack itemstack, World world, EntityHuman entityhuman) {
|
2011-01-08 11:49:42 +01:00
|
|
|
float f = 1.0F;
|
2011-01-29 22:50:29 +01:00
|
|
|
float f1 = entityhuman.lastPitch + (entityhuman.pitch - entityhuman.lastPitch) * f;
|
|
|
|
float f2 = entityhuman.lastYaw + (entityhuman.yaw - entityhuman.lastYaw) * f;
|
|
|
|
double d0 = entityhuman.lastX + (entityhuman.locX - entityhuman.lastX) * (double) f;
|
|
|
|
double d1 = entityhuman.lastY + (entityhuman.locY - entityhuman.lastY) * (double) f + 1.62D - (double) entityhuman.height;
|
|
|
|
double d2 = entityhuman.lastZ + (entityhuman.locZ - entityhuman.lastZ) * (double) f;
|
|
|
|
Vec3D vec3d = Vec3D.b(d0, d1, d2);
|
|
|
|
float f3 = MathHelper.b(-f2 * 0.017453292F - 3.1415927F);
|
|
|
|
float f4 = MathHelper.a(-f2 * 0.017453292F - 3.1415927F);
|
|
|
|
float f5 = -MathHelper.b(-f1 * 0.017453292F);
|
|
|
|
float f6 = MathHelper.a(-f1 * 0.017453292F);
|
2011-01-08 11:49:42 +01:00
|
|
|
float f7 = f4 * f5;
|
2011-01-29 22:50:29 +01:00
|
|
|
float f8 = f3 * f5;
|
|
|
|
double d3 = 5.0D;
|
|
|
|
Vec3D vec3d1 = vec3d.c((double) f7 * d3, (double) f6 * d3, (double) f8 * d3);
|
|
|
|
MovingObjectPosition movingobjectposition = world.a(vec3d, vec3d1, this.a == 0);
|
2011-01-08 11:49:42 +01:00
|
|
|
|
|
|
|
if (movingobjectposition == null) {
|
|
|
|
return itemstack;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
if (movingobjectposition.a == EnumMovingObjectType.TILE) {
|
|
|
|
int i = movingobjectposition.b;
|
|
|
|
int j = movingobjectposition.c;
|
|
|
|
int k = movingobjectposition.d;
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (!world.a(entityhuman, i, j, k)) {
|
|
|
|
return itemstack;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
// CraftBukkit start - Click == placed when handling an empty bucket!
|
|
|
|
CraftWorld craftWorld = ((WorldServer) world).getWorld();
|
|
|
|
CraftServer craftServer = ((WorldServer) world).getServer();
|
|
|
|
|
|
|
|
Type eventType = Type.PLAYER_ITEM;
|
|
|
|
Player who = (entityhuman == null) ? null : (Player) entityhuman.getBukkitEntity();
|
|
|
|
org.bukkit.inventory.ItemStack itemInHand = new CraftItemStack(itemstack);
|
|
|
|
org.bukkit.block.Block blockClicked = craftWorld.getBlockAt(i, j, k);
|
|
|
|
BlockFace blockFace = CraftBlock.notchToBlockFace(movingobjectposition.e);
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
if (this.a == 0) {
|
|
|
|
if (world.getMaterial(i, j, k) == Material.WATER && world.getData(i, j, k) == 0) {
|
|
|
|
// CraftBukkit start
|
|
|
|
PlayerItemEvent event = new PlayerItemEvent(eventType, who, itemInHand, blockClicked, blockFace);
|
|
|
|
craftServer.getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (event.isCancelled()) {
|
|
|
|
return itemstack;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
world.e(i, j, k, 0);
|
|
|
|
return new ItemStack(Item.WATER_BUCKET);
|
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (world.getMaterial(i, j, k) == Material.LAVA && world.getData(i, j, k) == 0) {
|
|
|
|
// CraftBukkit start
|
|
|
|
PlayerItemEvent event = new PlayerItemEvent(eventType, who, itemInHand, blockClicked, blockFace);
|
|
|
|
craftServer.getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (event.isCancelled()) {
|
2011-01-08 11:49:42 +01:00
|
|
|
return itemstack;
|
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
world.e(i, j, k, 0);
|
|
|
|
return new ItemStack(Item.LAVA_BUCKET);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (this.a < 0) {
|
|
|
|
return new ItemStack(Item.BUCKET);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (movingobjectposition.e == 0) {
|
|
|
|
--j;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (movingobjectposition.e == 1) {
|
|
|
|
++j;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (movingobjectposition.e == 2) {
|
|
|
|
--k;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (movingobjectposition.e == 3) {
|
|
|
|
++k;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (movingobjectposition.e == 4) {
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (movingobjectposition.e == 5) {
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (world.isEmpty(i, j, k) || !world.getMaterial(i, j, k).isBuildable()) {
|
|
|
|
if (world.q.d && this.a == Block.WATER.id) {
|
|
|
|
world.a(d0 + 0.5D, d1 + 0.5D, d2 + 0.5D, "random.fizz", 0.5F, 2.6F + (world.l.nextFloat() - world.l.nextFloat()) * 0.8F);
|
|
|
|
|
|
|
|
for (int l = 0; l < 8; ++l) {
|
|
|
|
world.a("largesmoke", (double) i + Math.random(), (double) j + Math.random(), (double) k + Math.random(), 0.0D, 0.0D, 0.0D);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// CraftBukkit start - bucket empty.
|
|
|
|
PlayerItemEvent event = new PlayerItemEvent(eventType, who, itemInHand, blockClicked, blockFace);
|
|
|
|
craftServer.getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (event.isCancelled()) {
|
|
|
|
return itemstack;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
world.b(i, j, k, this.a, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new ItemStack(Item.BUCKET);
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
} else if (this.a == 0 && movingobjectposition.g instanceof EntityCow) {
|
|
|
|
return new ItemStack(Item.MILK_BUCKET);
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
return itemstack;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|