Paper/src/main/java/net/minecraft/server/ItemBoat.java

88 Zeilen
3.6 KiB
Java

package net.minecraft.server;
2012-07-29 09:33:13 +02:00
import java.util.Iterator;
2011-11-20 09:01:14 +01:00
import java.util.List;
public class ItemBoat extends Item {
public ItemBoat(int i) {
super(i);
2011-01-29 22:50:29 +01:00
this.maxStackSize = 1;
2012-07-29 09:33:13 +02:00
this.a(CreativeModeTab.e);
}
2011-01-29 22:50:29 +01:00
public ItemStack a(ItemStack itemstack, World world, EntityHuman entityhuman) {
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 = world.getVec3DPool().create(d0, d1, d2);
float f3 = MathHelper.cos(-f2 * 0.017453292F - 3.1415927F);
float f4 = MathHelper.sin(-f2 * 0.017453292F - 3.1415927F);
float f5 = -MathHelper.cos(-f1 * 0.017453292F);
float f6 = MathHelper.sin(-f1 * 0.017453292F);
float f7 = f4 * f5;
2011-01-29 22:50:29 +01:00
float f8 = f3 * f5;
double d3 = 5.0D;
Vec3D vec3d1 = vec3d.add((double) f7 * d3, (double) f6 * d3, (double) f8 * d3);
MovingObjectPosition movingobjectposition = world.rayTrace(vec3d, vec3d1, true);
if (movingobjectposition == null) {
return itemstack;
2011-01-29 22:50:29 +01:00
} else {
2012-07-29 09:33:13 +02:00
Vec3D vec3d2 = entityhuman.i(f);
2011-11-20 09:01:14 +01:00
boolean flag = false;
float f9 = 1.0F;
List list = world.getEntities(entityhuman, entityhuman.boundingBox.a(vec3d2.c * d3, vec3d2.d * d3, vec3d2.e * d3).grow((double) f9, (double) f9, (double) f9));
2012-07-29 09:33:13 +02:00
Iterator iterator = list.iterator();
2011-11-20 09:01:14 +01:00
2012-07-29 09:33:13 +02:00
while (iterator.hasNext()) {
Entity entity = (Entity) iterator.next();
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
if (entity.L()) {
float f10 = entity.Y();
2012-01-12 16:27:39 +01:00
AxisAlignedBB axisalignedbb = entity.boundingBox.grow((double) f10, (double) f10, (double) f10);
2011-11-20 09:01:14 +01:00
if (axisalignedbb.a(vec3d)) {
flag = true;
2011-01-29 22:50:29 +01:00
}
2011-11-20 09:01:14 +01:00
}
}
if (flag) {
return itemstack;
} else {
if (movingobjectposition.type == EnumMovingObjectType.TILE) {
2012-07-29 09:33:13 +02:00
int i = movingobjectposition.b;
int j = movingobjectposition.c;
int k = movingobjectposition.d;
2011-11-20 09:01:14 +01:00
if (!world.isStatic) {
// CraftBukkit start - Boat placement
2012-07-29 09:33:13 +02:00
org.bukkit.event.player.PlayerInteractEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerInteractEvent(entityhuman, org.bukkit.event.block.Action.RIGHT_CLICK_BLOCK, i, j, k, movingobjectposition.face, itemstack);
2011-01-29 22:50:29 +01:00
2011-11-20 09:01:14 +01:00
if (event.isCancelled()) {
return itemstack;
}
// CraftBukkit end
2012-07-29 09:33:13 +02:00
if (world.getTypeId(i, j, k) == Block.SNOW.id) {
--j;
2011-11-20 09:01:14 +01:00
}
2012-07-29 09:33:13 +02:00
world.addEntity(new EntityBoat(world, (double) ((float) i + 0.5F), (double) ((float) j + 1.0F), (double) ((float) k + 0.5F)));
2011-05-26 14:48:22 +02:00
}
2011-11-20 09:01:14 +01:00
if (!entityhuman.abilities.canInstantlyBuild) {
--itemstack.count;
}
}
2011-11-20 09:01:14 +01:00
return itemstack;
}
}
}
}