2012-10-25 05:53:23 +02:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
|
|
|
import org.bukkit.event.block.BlockDispenseEvent;
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2013-03-13 23:33:27 +01:00
|
|
|
final class DispenseBehaviorFilledBucket extends DispenseBehaviorItem {
|
2012-10-25 05:53:23 +02:00
|
|
|
|
2013-03-13 23:33:27 +01:00
|
|
|
private final DispenseBehaviorItem b = new DispenseBehaviorItem();
|
2012-10-25 05:53:23 +02:00
|
|
|
|
2013-03-13 23:33:27 +01:00
|
|
|
DispenseBehaviorFilledBucket() {}
|
2012-10-25 05:53:23 +02:00
|
|
|
|
|
|
|
public ItemStack b(ISourceBlock isourceblock, ItemStack itemstack) {
|
|
|
|
ItemBucket itembucket = (ItemBucket) itemstack.getItem();
|
|
|
|
int i = isourceblock.getBlockX();
|
|
|
|
int j = isourceblock.getBlockY();
|
|
|
|
int k = isourceblock.getBlockZ();
|
2013-11-04 14:07:38 +01:00
|
|
|
EnumFacing enumfacing = BlockDispenser.b(isourceblock.h());
|
2012-10-25 05:53:23 +02:00
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
World world = isourceblock.k();
|
2013-03-20 16:24:22 +01:00
|
|
|
int x = i + enumfacing.c();
|
|
|
|
int y = j + enumfacing.d();
|
|
|
|
int z = k + enumfacing.e();
|
2013-11-04 14:07:38 +01:00
|
|
|
if (world.isEmpty(x, y, z) || !world.getType(x, y, z).getMaterial().isBuildable()) {
|
2012-10-25 05:53:23 +02:00
|
|
|
org.bukkit.block.Block block = world.getWorld().getBlockAt(i, j, k);
|
2012-12-17 08:31:41 +01:00
|
|
|
CraftItemStack craftItem = CraftItemStack.asCraftMirror(itemstack);
|
2012-10-25 05:53:23 +02:00
|
|
|
|
2013-03-20 16:24:22 +01:00
|
|
|
BlockDispenseEvent event = new BlockDispenseEvent(block, craftItem.clone(), new org.bukkit.util.Vector(x, y, z));
|
2012-10-25 05:53:23 +02:00
|
|
|
if (!BlockDispenser.eventFired) {
|
|
|
|
world.getServer().getPluginManager().callEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event.isCancelled()) {
|
|
|
|
return itemstack;
|
|
|
|
}
|
|
|
|
|
2012-12-17 08:31:41 +01:00
|
|
|
if (!event.getItem().equals(craftItem)) {
|
2012-10-25 05:53:23 +02:00
|
|
|
// Chain to handler for new item
|
2012-12-17 08:31:41 +01:00
|
|
|
ItemStack eventStack = CraftItemStack.asNMSCopy(event.getItem());
|
2012-11-08 01:26:35 +01:00
|
|
|
IDispenseBehavior idispensebehavior = (IDispenseBehavior) BlockDispenser.a.a(eventStack.getItem());
|
2012-10-25 05:53:23 +02:00
|
|
|
if (idispensebehavior != IDispenseBehavior.a && idispensebehavior != this) {
|
2012-11-08 01:26:35 +01:00
|
|
|
idispensebehavior.a(isourceblock, eventStack);
|
2012-10-25 05:53:23 +02:00
|
|
|
return itemstack;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-17 08:31:41 +01:00
|
|
|
itembucket = (ItemBucket) CraftItemStack.asNMSCopy(event.getItem()).getItem();
|
2012-10-25 05:53:23 +02:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
if (itembucket.a(isourceblock.k(), i + enumfacing.c(), j + enumfacing.d(), k + enumfacing.e())) {
|
2013-03-25 05:22:32 +01:00
|
|
|
// CraftBukkit start - Handle stacked buckets
|
2013-11-04 14:07:38 +01:00
|
|
|
Item item = Items.BUCKET;
|
2012-10-25 05:53:23 +02:00
|
|
|
if (--itemstack.count == 0) {
|
2013-11-04 14:07:38 +01:00
|
|
|
itemstack.setItem(Items.BUCKET);
|
2012-10-25 05:53:23 +02:00
|
|
|
itemstack.count = 1;
|
|
|
|
} else if (((TileEntityDispenser) isourceblock.getTileEntity()).addItem(new ItemStack(item)) < 0) {
|
2013-03-13 23:33:27 +01:00
|
|
|
this.b.a(isourceblock, new ItemStack(item));
|
2012-10-25 05:53:23 +02:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
return itemstack;
|
|
|
|
} else {
|
2013-03-13 23:33:27 +01:00
|
|
|
return this.b.a(isourceblock, itemstack);
|
2012-10-25 05:53:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|