3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-18 14:00:05 +01:00
Paper/src/main/java/net/minecraft/server/ItemSign.java

80 Zeilen
2.4 KiB
Java

package net.minecraft.server;
// CraftBukkit start
2011-03-21 00:25:26 +01:00
import org.bukkit.craftbukkit.block.CraftBlockState;
import org.bukkit.craftbukkit.event.CraftEventFactory;
import org.bukkit.event.block.BlockPlaceEvent;
// CraftBukkit end
public class ItemSign extends Item {
public ItemSign(int i) {
super(i);
2011-01-29 22:50:29 +01:00
this.maxStackSize = 1;
}
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) {
if (l == 0) {
return false;
2011-01-29 22:50:29 +01:00
} else if (!world.getMaterial(i, j, k).isBuildable()) {
return false;
2011-01-29 22:50:29 +01:00
} else {
2011-05-14 16:29:42 +02:00
int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
2011-01-29 22:50:29 +01:00
if (l == 1) {
++j;
}
2011-01-29 22:50:29 +01:00
if (l == 2) {
--k;
}
2011-01-29 22:50:29 +01:00
if (l == 3) {
++k;
}
if (l == 4) {
--i;
}
if (l == 5) {
++i;
}
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 if (!Block.SIGN_POST.canPlace(world, i, j, k)) {
2011-01-29 22:50:29 +01:00
return false;
} else {
CraftBlockState blockState = CraftBlockState.getBlockState(world, i, j, k); // CraftBukkit
2011-01-29 22:50:29 +01:00
if (l == 1) {
2011-09-15 02:23:52 +02:00
int i1 = MathHelper.floor((double) ((entityhuman.yaw + 180.0F) * 16.0F / 360.0F) + 0.5D) & 15;
world.setTypeIdAndData(i, j, k, Block.SIGN_POST.id, i1);
2011-01-29 22:50:29 +01:00
} else {
world.setTypeIdAndData(i, j, k, Block.WALL_SIGN.id, l);
2011-01-29 22:50:29 +01:00
}
2011-03-21 00:25:26 +01:00
// CraftBukkit start - sign
BlockPlaceEvent event = CraftEventFactory.callBlockPlaceEvent(world, entityhuman, blockState, clickedX, clickedY, clickedZ, l == 1 ? Block.SIGN_POST : Block.WALL_SIGN);
if (event.isCancelled() || !event.canBuild()) {
event.getBlockPlaced().setTypeIdAndData(blockState.getTypeId(), blockState.getRawData(), false);
return false;
}
// CraftBukkit end
2011-01-29 22:50:29 +01:00
--itemstack.count;
TileEntitySign tileentitysign = (TileEntitySign) world.getTileEntity(i, j, k);
if (tileentitysign != null) {
entityhuman.a(tileentitysign);
}
2011-01-29 22:50:29 +01:00
return true;
}
}
}
}