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

393 Zeilen
15 KiB
Java

2011-01-10 02:36:19 +01:00
package net.minecraft.server;
2011-02-01 18:06:17 +01:00
// CraftBukkit start
import org.bukkit.event.block.BlockBreakEvent;
import org.bukkit.craftbukkit.event.CraftEventFactory;
import org.bukkit.event.Event;
import org.bukkit.event.block.Action;
import org.bukkit.event.player.PlayerInteractEvent;
2011-02-01 18:06:17 +01:00
// CraftBukkit end
2011-01-10 02:36:19 +01:00
public class ItemInWorldManager {
2011-09-15 02:23:52 +02:00
public World world;
2012-07-29 09:33:13 +02:00
public EntityPlayer player;
private EnumGamemode gamemode;
private boolean d;
private int lastDigTick;
2011-03-31 22:40:00 +02:00
private int f;
2011-01-10 09:30:34 +01:00
private int g;
2011-09-15 02:23:52 +02:00
private int h;
private int currentTick;
2011-09-15 02:23:52 +02:00
private boolean j;
2011-03-31 22:40:00 +02:00
private int k;
2011-02-23 03:37:56 +01:00
private int l;
private int m;
2011-09-15 02:23:52 +02:00
private int n;
2012-07-29 09:33:13 +02:00
private int o;
2011-01-10 02:36:19 +01:00
2011-09-15 02:23:52 +02:00
public ItemInWorldManager(World world) {
2012-07-29 09:33:13 +02:00
this.gamemode = EnumGamemode.NONE;
this.o = -1;
2011-09-15 02:23:52 +02:00
this.world = world;
}
2011-09-26 09:07:06 +02:00
// CraftBukkit start - keep this for backwards compatibility
public ItemInWorldManager(WorldServer world) {
2012-07-29 09:33:13 +02:00
this((World) world);
2011-09-26 09:07:06 +02:00
}
// CraftBukkit end
2012-07-29 09:33:13 +02:00
public void setGameMode(EnumGamemode enumgamemode) {
this.gamemode = enumgamemode;
enumgamemode.a(this.player.abilities);
this.player.updateAbilities();
2011-09-15 02:23:52 +02:00
}
2012-07-29 09:33:13 +02:00
public EnumGamemode getGameMode() {
return this.gamemode;
2011-09-15 02:23:52 +02:00
}
public boolean isCreative() {
2012-07-29 09:33:13 +02:00
return this.gamemode.d();
2011-09-15 02:23:52 +02:00
}
2012-07-29 09:33:13 +02:00
public void b(EnumGamemode enumgamemode) {
if (this.gamemode == EnumGamemode.NONE) {
this.gamemode = enumgamemode;
2011-09-15 02:23:52 +02:00
}
2012-07-29 09:33:13 +02:00
this.setGameMode(this.gamemode);
2011-01-10 02:36:19 +01:00
}
2012-07-29 09:33:13 +02:00
public void a() {
this.currentTick = (int) (System.currentTimeMillis() / 50); // CraftBukkit
2012-07-29 09:33:13 +02:00
int i;
float f;
int j;
2011-09-15 02:23:52 +02:00
if (this.j) {
2012-07-29 09:33:13 +02:00
i = this.currentTick - this.n;
int k = this.world.getTypeId(this.k, this.l, this.m);
2011-02-23 03:37:56 +01:00
2012-07-29 09:33:13 +02:00
if (k == 0) {
this.j = false;
} else {
Block block = Block.byId[k];
f = block.getDamage(this.player, this.player.world, this.k, this.l, this.m) * (float) (i + 1);
j = (int) (f * 10.0F);
if (j != this.o) {
this.world.f(this.player.id, this.k, this.l, this.m, j);
this.o = j;
}
2011-02-23 03:37:56 +01:00
if (f >= 1.0F) {
2011-09-15 02:23:52 +02:00
this.j = false;
this.breakBlock(this.k, this.l, this.m);
2011-02-23 03:37:56 +01:00
}
2012-07-29 09:33:13 +02:00
}
} else if (this.d) {
i = this.world.getTypeId(this.f, this.g, this.h);
Block block1 = Block.byId[i];
if (block1 == null) {
this.world.f(this.player.id, this.f, this.g, this.h, -1);
this.o = -1;
this.d = false;
2011-02-23 03:37:56 +01:00
} else {
2012-07-29 09:33:13 +02:00
int l = this.currentTick - this.lastDigTick;
f = block1.getDamage(this.player, this.player.world, this.f, this.g, this.h) * (float) (l + 1);
j = (int) (f * 10.0F);
if (j != this.o) {
this.world.f(this.player.id, this.f, this.g, this.h, j);
this.o = j;
}
2011-02-23 03:37:56 +01:00
}
}
}
2011-05-26 14:48:22 +02:00
public void dig(int i, int j, int k, int l) {
// this.world.douseFire((EntityHuman) null, i, j, k, l); // CraftBukkit - moved down
// CraftBukkit
PlayerInteractEvent event = CraftEventFactory.callPlayerInteractEvent(this.player, Action.LEFT_CLICK_BLOCK, i, j, k, l, this.player.inventory.getItemInHand());
2012-07-29 09:33:13 +02:00
if (!this.gamemode.isAdventure()) {
// CraftBukkit start
if (event.isCancelled()) {
// Let the client know the block still exists
((EntityPlayer) this.player).netServerHandler.sendPacket(new Packet53BlockChange(i, j, k, this.world));
return;
}
// CraftBukkit end
2012-07-29 09:33:13 +02:00
if (this.isCreative()) {
if (!this.world.douseFire((EntityHuman) null, i, j, k, l)) {
this.breakBlock(i, j, k);
}
} else {
this.world.douseFire(this.player, i, j, k, l);
this.lastDigTick = this.currentTick;
float f = 1.0F;
int i1 = this.world.getTypeId(i, j, k);
// CraftBukkit start - Swings at air do *NOT* exist.
if (i1 <= 0) {
return;
}
2011-01-10 02:36:19 +01:00
2012-07-29 09:33:13 +02:00
if (event.useInteractedBlock() == Event.Result.DENY) {
// If we denied a door from opening, we need to send a correcting update to the client, as it already opened the door.
if (i1 == Block.WOODEN_DOOR.id) {
// For some reason *BOTH* the bottom/top part have to be marked updated.
boolean bottom = (this.world.getData(i, j, k) & 8) == 0;
((EntityPlayer) this.player).netServerHandler.sendPacket(new Packet53BlockChange(i, j, k, this.world));
((EntityPlayer) this.player).netServerHandler.sendPacket(new Packet53BlockChange(i, j + (bottom ? 1 : -1), k, this.world));
} else if (i1 == Block.TRAP_DOOR.id) {
((EntityPlayer) this.player).netServerHandler.sendPacket(new Packet53BlockChange(i, j, k, this.world));
}
} else {
Block.byId[i1].attack(this.world, i, j, k, this.player);
// Allow fire punching to be blocked
this.world.douseFire((EntityHuman) null, i, j, k, l);
}
2012-07-29 09:33:13 +02:00
// Handle hitting a block
float toolDamage = Block.byId[i1].getDamage(this.player, this.world, i, j, k);
if (event.useItemInHand() == Event.Result.DENY) {
// If we 'insta destroyed' then the client needs to be informed.
if (toolDamage > 1.0f) {
((EntityPlayer) this.player).netServerHandler.sendPacket(new Packet53BlockChange(i, j, k, this.world));
}
return;
2011-09-15 02:23:52 +02:00
}
2012-07-29 09:33:13 +02:00
org.bukkit.event.block.BlockDamageEvent blockEvent = CraftEventFactory.callBlockDamageEvent(this.player, i, j, k, this.player.inventory.getItemInHand(), toolDamage >= 1.0f);
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
if (blockEvent.isCancelled()) {
// Let the client know the block still exists
2011-09-15 02:23:52 +02:00
((EntityPlayer) this.player).netServerHandler.sendPacket(new Packet53BlockChange(i, j, k, this.world));
2012-07-29 09:33:13 +02:00
return;
2011-09-15 02:23:52 +02:00
}
2011-03-23 16:38:42 +01:00
2012-07-29 09:33:13 +02:00
if (blockEvent.getInstaBreak()) {
toolDamage = 2.0f;
}
2011-03-23 16:38:42 +01:00
2012-07-29 09:33:13 +02:00
if (toolDamage >= 1.0F) {
// CraftBukkit end
this.breakBlock(i, j, k);
} else {
this.d = true;
this.f = i;
this.g = j;
this.h = k;
int j1 = (int) (f * 10.0F);
this.world.f(this.player.id, i, j, k, j1);
this.o = j1;
}
2011-09-15 02:23:52 +02:00
}
2011-01-10 02:36:19 +01:00
}
}
2011-05-26 14:48:22 +02:00
public void a(int i, int j, int k) {
2011-09-15 02:23:52 +02:00
if (i == this.f && j == this.g && k == this.h) {
this.currentTick = (int) (System.currentTimeMillis() / 50); // CraftBukkit
int l = this.currentTick - this.lastDigTick;
int i1 = this.world.getTypeId(i, j, k);
2011-01-29 22:50:29 +01:00
2011-02-23 03:37:56 +01:00
if (i1 != 0) {
2011-01-29 22:50:29 +01:00
Block block = Block.byId[i1];
2012-07-29 09:33:13 +02:00
float f = block.getDamage(this.player, this.player.world, i, j, k) * (float) (l + 1);
2011-02-23 03:37:56 +01:00
2011-04-20 22:47:26 +02:00
if (f >= 0.7F) {
2012-07-29 09:33:13 +02:00
this.d = false;
this.world.f(this.player.id, i, j, k, -1);
this.breakBlock(i, j, k);
2011-09-15 02:23:52 +02:00
} else if (!this.j) {
2012-07-29 09:33:13 +02:00
this.d = false;
2011-09-15 02:23:52 +02:00
this.j = true;
this.k = i;
this.l = j;
this.m = k;
this.n = this.lastDigTick;
2011-01-29 22:50:29 +01:00
}
}
2011-05-14 16:29:42 +02:00
// CraftBukkit start - force blockreset to client
2011-03-24 22:42:23 +01:00
} else {
((EntityPlayer) this.player).netServerHandler.sendPacket(new Packet53BlockChange(i, j, k, this.world));
2011-03-24 22:42:23 +01:00
// CraftBukkit end
2011-01-10 02:36:19 +01:00
}
2012-07-29 09:33:13 +02:00
}
2011-02-23 03:37:56 +01:00
2012-07-29 09:33:13 +02:00
public void c(int i, int j, int k) {
this.d = false;
this.world.f(this.player.id, this.f, this.g, this.h, -1);
2011-01-10 02:36:19 +01:00
}
2012-07-29 09:33:13 +02:00
private boolean d(int i, int j, int k) {
Block block = Block.byId[this.world.getTypeId(i, j, k)];
int l = this.world.getData(i, j, k);
2012-07-29 09:33:13 +02:00
if (block != null) {
block.a(this.world, i, j, k, l, this.player);
}
boolean flag = this.world.setTypeId(i, j, k, 0);
2011-01-10 02:36:19 +01:00
if (block != null && flag) {
block.postBreak(this.world, i, j, k, l);
2011-01-10 02:36:19 +01:00
}
2011-01-29 22:50:29 +01:00
2011-01-10 02:36:19 +01:00
return flag;
}
public boolean breakBlock(int i, int j, int k) {
// CraftBukkit start
BlockBreakEvent event = null;
if (this.player instanceof EntityPlayer) {
org.bukkit.block.Block block = this.world.getWorld().getBlockAt(i, j, k);
// Tell client the block is gone immediately then process events
if (world.getTileEntity(i, j, k) == null) {
Packet53BlockChange packet = new Packet53BlockChange(i, j, k, this.world);
packet.material = 0;
packet.data = 0;
((EntityPlayer) this.player).netServerHandler.sendPacket(packet);
}
event = new BlockBreakEvent(block, this.player.getBukkitEntity());
// Adventure mode pre-cancel
event.setCancelled(this.gamemode.isAdventure());
// Calculate default block experience
Block nmsBlock = Block.byId[block.getTypeId()];
if (nmsBlock != null && !event.isCancelled() && !this.isCreative() && this.player.b(nmsBlock)) {
// Copied from Block.a(world, entityhuman, int, int, int, int)
if (!(nmsBlock.q_() && EnchantmentManager.hasSilkTouchEnchantment(this.player.inventory))) {
int data = block.getData();
int bonusLevel = EnchantmentManager.getBonusBlockLootEnchantmentLevel(this.player.inventory);
event.setExpToDrop(nmsBlock.getExpDrop(this.world, data, bonusLevel));
}
}
this.world.getServer().getPluginManager().callEvent(event);
if (event.isCancelled()) {
// Let the client know the block still exists
((EntityPlayer) this.player).netServerHandler.sendPacket(new Packet53BlockChange(i, j, k, this.world));
2011-02-25 04:37:47 +01:00
return false;
2011-02-01 18:06:17 +01:00
}
}
2012-07-29 09:33:13 +02:00
if (false) { // Never trigger
// CraftBukkit end
return false;
} else {
int l = this.world.getTypeId(i, j, k);
if (Block.byId[l] == null) return false; // CraftBukkit - a plugin set block to air without cancelling
2012-07-29 09:33:13 +02:00
int i1 = this.world.getData(i, j, k);
2012-07-29 09:33:13 +02:00
this.world.a(this.player, 2001, i, j, k, l + (this.world.getData(i, j, k) << 12));
boolean flag = this.d(i, j, k);
2011-01-10 02:36:19 +01:00
2012-07-29 09:33:13 +02:00
if (this.isCreative()) {
this.player.netServerHandler.sendPacket(new Packet53BlockChange(i, j, k, this.world));
} else {
ItemStack itemstack = this.player.bC();
boolean flag1 = this.player.b(Block.byId[l]);
if (itemstack != null) {
itemstack.a(this.world, l, i, j, k, this.player);
if (itemstack.count == 0) {
this.player.bD();
}
2011-09-15 02:23:52 +02:00
}
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
if (flag && flag1) {
Block.byId[l].a(this.world, this.player, i, j, k, i1);
}
2011-09-15 02:23:52 +02:00
}
2011-01-29 22:50:29 +01:00
// CraftBukkit start - drop event experience
if (flag && event != null) {
Block.byId[l].g(this.world, i, j, k, event.getExpToDrop());
}
// CraftBukkit end
2012-07-29 09:33:13 +02:00
return flag;
}
2011-01-10 02:36:19 +01:00
}
public boolean useItem(EntityHuman entityhuman, World world, ItemStack itemstack) {
2011-01-29 22:50:29 +01:00
int i = itemstack.count;
2011-09-15 02:23:52 +02:00
int j = itemstack.getData();
2011-01-29 22:50:29 +01:00
ItemStack itemstack1 = itemstack.a(world, entityhuman);
2011-01-10 02:36:19 +01:00
2012-07-29 09:33:13 +02:00
if (itemstack1 == itemstack && (itemstack1 == null || itemstack1.count == i) && (itemstack1 == null || itemstack1.m() <= 0)) {
2011-01-29 22:50:29 +01:00
return false;
} else {
entityhuman.inventory.items[entityhuman.inventory.itemInHandIndex] = itemstack1;
if (this.isCreative()) {
2011-09-15 02:23:52 +02:00
itemstack1.count = i;
itemstack1.setData(j);
2011-09-15 02:23:52 +02:00
}
2011-01-29 22:50:29 +01:00
if (itemstack1.count == 0) {
entityhuman.inventory.items[entityhuman.inventory.itemInHandIndex] = null;
2011-01-10 02:36:19 +01:00
}
2011-01-29 22:50:29 +01:00
2011-01-10 02:36:19 +01:00
return true;
}
}
// CraftBukkit - TODO: Review this code, it changed in 1.8 but I'm not sure if we need to update or not
2012-07-29 09:33:13 +02:00
public boolean interact(EntityHuman entityhuman, World world, ItemStack itemstack, int i, int j, int k, int l, float f, float f1, float f2) {
2011-01-29 22:50:29 +01:00
int i1 = world.getTypeId(i, j, k);
2011-01-10 02:36:19 +01:00
// CraftBukkit start - Interact
boolean result = false;
if (i1 > 0) {
PlayerInteractEvent event = CraftEventFactory.callPlayerInteractEvent(entityhuman, Action.RIGHT_CLICK_BLOCK, i, j, k, l, itemstack);
2011-03-24 12:11:28 +01:00
if (event.useInteractedBlock() == Event.Result.DENY) {
// If we denied a door from opening, we need to send a correcting update to the client, as it already opened the door.
if (i1 == Block.WOODEN_DOOR.id) {
boolean bottom = (world.getData(i, j, k) & 8) == 0;
((EntityPlayer) entityhuman).netServerHandler.sendPacket(new Packet53BlockChange(i, j + (bottom ? 1 : -1), k, world));
}
result = (event.useItemInHand() != Event.Result.ALLOW);
} else {
2012-07-29 09:33:13 +02:00
result = Block.byId[i1].interact(world, i, j, k, entityhuman, l, f, f1, f2);
}
if (itemstack != null && !result) {
int j1 = itemstack.getData();
int k1 = itemstack.count;
2012-07-29 09:33:13 +02:00
result = itemstack.placeItem(entityhuman, world, i, j, k, l, f, f1, f2);
// The item count should not decrement in Creative mode.
if (this.isCreative()) {
itemstack.setData(j1);
itemstack.count = k1;
}
}
2011-03-24 12:11:28 +01:00
// If we have 'true' and no explicit deny *or* an explicit allow -- run the item part of the hook
if (itemstack != null && ((!result && event.useItemInHand() != Event.Result.DENY) || event.useItemInHand() == Event.Result.ALLOW)) {
this.useItem(entityhuman, world, itemstack);
}
}
return result;
2011-05-14 16:29:42 +02:00
// CraftBukkit end
2011-01-10 02:36:19 +01:00
}
2011-09-15 02:23:52 +02:00
public void a(WorldServer worldserver) {
this.world = worldserver;
}
2011-01-10 09:30:34 +01:00
}