2011-01-08 12:18:05 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2011-03-21 00:25:26 +01:00
|
|
|
import org.bukkit.craftbukkit.block.CraftBlockState;
|
|
|
|
import org.bukkit.craftbukkit.event.CraftEventFactory;
|
2011-01-18 22:44:01 +01:00
|
|
|
import org.bukkit.entity.Player;
|
2011-01-10 22:37:16 +01:00
|
|
|
import org.bukkit.event.block.BlockIgniteEvent;
|
2011-03-21 00:25:26 +01:00
|
|
|
import org.bukkit.event.block.BlockPlaceEvent;
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-08 12:18:05 +01:00
|
|
|
|
|
|
|
public class ItemFlintAndSteel extends Item {
|
|
|
|
|
|
|
|
public ItemFlintAndSteel(int i) {
|
|
|
|
super(i);
|
2011-01-29 22:50:29 +01:00
|
|
|
this.maxStackSize = 1;
|
2012-01-14 21:03:48 +01:00
|
|
|
this.setMaxDurability(64);
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public boolean a(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l) {
|
2011-05-14 16:29:42 +02:00
|
|
|
int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 12:18:05 +01:00
|
|
|
if (l == 0) {
|
2011-01-29 22:50:29 +01:00
|
|
|
--j;
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 12:18:05 +01:00
|
|
|
if (l == 1) {
|
2011-01-29 22:50:29 +01:00
|
|
|
++j;
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 12:18:05 +01:00
|
|
|
if (l == 2) {
|
2011-01-29 22:50:29 +01:00
|
|
|
--k;
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 12:18:05 +01:00
|
|
|
if (l == 3) {
|
2011-01-29 22:50:29 +01:00
|
|
|
++k;
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 12:18:05 +01:00
|
|
|
if (l == 4) {
|
2011-01-29 22:50:29 +01:00
|
|
|
--i;
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 12:18:05 +01:00
|
|
|
if (l == 5) {
|
2011-01-29 22:50:29 +01:00
|
|
|
++i;
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (!entityhuman.d(i, j, k)) {
|
2011-09-15 02:23:52 +02:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
int i1 = world.getTypeId(i, j, k);
|
|
|
|
|
|
|
|
if (i1 == 0) {
|
|
|
|
// CraftBukkit start - store the clicked block
|
|
|
|
org.bukkit.block.Block blockClicked = world.getWorld().getBlockAt(i, j, k);
|
|
|
|
Player thePlayer = (Player) entityhuman.getBukkitEntity();
|
|
|
|
|
|
|
|
BlockIgniteEvent eventIgnite = new BlockIgniteEvent(blockClicked, BlockIgniteEvent.IgniteCause.FLINT_AND_STEEL, thePlayer);
|
|
|
|
world.getServer().getPluginManager().callEvent(eventIgnite);
|
|
|
|
|
|
|
|
if (eventIgnite.isCancelled()) {
|
|
|
|
itemstack.damage(1, entityhuman);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CraftBlockState blockState = CraftBlockState.getBlockState(world, i, j, k);
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
world.makeSound((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "fire.ignite", 1.0F, c.nextFloat() * 0.4F + 0.8F);
|
2011-09-15 02:23:52 +02:00
|
|
|
world.setTypeId(i, j, k, Block.FIRE.id);
|
|
|
|
|
|
|
|
// CraftBukkit start
|
2012-02-18 16:14:44 +01:00
|
|
|
BlockPlaceEvent placeEvent = CraftEventFactory.callBlockPlaceEvent(world, entityhuman, blockState, clickedX, clickedY, clickedZ);
|
2011-09-15 02:23:52 +02:00
|
|
|
|
|
|
|
if (placeEvent.isCancelled() || !placeEvent.canBuild()) {
|
|
|
|
placeEvent.getBlockPlaced().setTypeIdAndData(0, (byte) 0, false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
itemstack.damage(1, entityhuman);
|
|
|
|
return true;
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|