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

163 Zeilen
4.5 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.craftbukkit.CraftServer;
import org.bukkit.event.block.BlockBreakEvent;
// CraftBukkit end
2011-01-10 02:36:19 +01:00
public class ItemInWorldManager {
2011-01-10 09:30:34 +01:00
private World b;
2011-01-29 22:50:29 +01:00
public EntityHuman a;
2011-02-23 03:37:56 +01:00
public float c = 0.0F; // CraftBukkit private -> public
private int d;
2011-01-29 22:50:29 +01:00
private int e = 0;
private float f = 0.0F;
2011-01-10 09:30:34 +01:00
private int g;
private int h;
private int i;
2011-02-23 03:37:56 +01:00
private int j;
private boolean k;
private int l;
private int m;
private int n;
private int o;
2011-01-10 02:36:19 +01:00
public ItemInWorldManager(World world) {
2011-01-29 22:50:29 +01:00
this.b = world;
2011-01-10 02:36:19 +01:00
}
2011-02-23 03:37:56 +01:00
public void a() {
++this.j;
if (this.k) {
int i = this.j - this.o;
int j = this.b.getTypeId(this.l, this.m, this.n);
if (j != 0) {
Block block = Block.byId[j];
float f = block.a(this.a) * (float) (i + 1);
if (f >= 1.0F) {
this.k = false;
this.d(this.l, this.m, this.n);
}
} else {
this.k = false;
}
}
}
2011-01-29 22:50:29 +01:00
public void a(int i, int j, int k) {
2011-02-23 03:37:56 +01:00
this.d = this.j;
2011-01-29 22:50:29 +01:00
int l = this.b.getTypeId(i, j, k);
2011-01-10 02:36:19 +01:00
2011-02-23 03:37:56 +01:00
if (l > 0) {
2011-01-29 22:50:29 +01:00
Block.byId[l].b(this.b, i, j, k, this.a);
2011-01-10 02:36:19 +01:00
}
2011-01-29 22:50:29 +01:00
if (l > 0 && Block.byId[l].a(this.a) >= 1.0F) {
2011-02-23 03:37:56 +01:00
this.d(i, j, k);
} else {
this.g = i;
this.h = j;
this.i = k;
2011-01-10 02:36:19 +01:00
}
}
2011-02-23 03:37:56 +01:00
public void b(int i, int j, int k) {
if (i == this.g && j == this.h && k == this.i) {
int l = this.j - this.d;
int i1 = this.b.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];
2011-02-23 03:37:56 +01:00
float f = block.a(this.a) * (float) (l + 1);
if (f >= 1.0F) {
this.d(i, j, k);
} else if (!this.k) {
this.k = true;
this.l = i;
this.m = j;
this.n = k;
this.o = this.d;
2011-01-29 22:50:29 +01:00
}
}
2011-01-10 02:36:19 +01:00
}
2011-02-23 03:37:56 +01:00
this.c = 0.0F;
this.e = 0;
2011-01-10 02:36:19 +01:00
}
2011-02-23 03:37:56 +01:00
public boolean c(int i, int j, int k) {
2011-01-29 22:50:29 +01:00
Block block = Block.byId[this.b.getTypeId(i, j, k)];
int l = this.b.getData(i, j, k);
boolean flag = this.b.e(i, j, k, 0);
2011-01-10 02:36:19 +01:00
if (block != null && flag) {
2011-02-23 03:37:56 +01:00
block.b(this.b, 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;
}
2011-02-23 03:37:56 +01:00
public boolean d(int i, int j, int k) {
// CraftBukkit start
2011-02-23 13:56:36 +01:00
if (this.a instanceof EntityPlayer) {
2011-02-01 18:06:17 +01:00
CraftServer server = ((WorldServer) this.b).getServer();
org.bukkit.block.Block block = ((WorldServer) this.b).getWorld().getBlockAt(i, j, k);
org.bukkit.entity.Player player = (org.bukkit.entity.Player) this.a.getBukkitEntity();
BlockBreakEvent event = new BlockBreakEvent(block,player);
server.getPluginManager().callEvent(event);
2011-02-23 13:56:36 +01:00
if (event.isCancelled()) {
2011-02-01 18:06:17 +01:00
return true;
}
}
2011-02-23 03:37:56 +01:00
// CraftBukkit end
2011-02-01 18:06:17 +01:00
2011-01-29 22:50:29 +01:00
int l = this.b.getTypeId(i, j, k);
int i1 = this.b.getData(i, j, k);
2011-02-23 03:37:56 +01:00
boolean flag = this.c(i, j, k);
ItemStack itemstack = this.a.z();
2011-01-10 02:36:19 +01:00
if (itemstack != null) {
2011-01-29 22:50:29 +01:00
itemstack.a(l, i, j, k);
if (itemstack.count == 0) {
itemstack.a(this.a);
2011-02-23 03:37:56 +01:00
this.a.A();
2011-01-10 02:36:19 +01:00
}
}
2011-01-29 22:50:29 +01:00
if (flag && this.a.b(Block.byId[l])) {
2011-02-23 03:37:56 +01:00
Block.byId[l].a_(this.b, i, j, k, i1);
((EntityPlayer) this.a).a.b((Packet) (new Packet53BlockChange(i, j, k, this.b)));
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;
}
2011-01-29 22:50:29 +01:00
public boolean a(EntityHuman entityhuman, World world, ItemStack itemstack) {
int i = itemstack.count;
ItemStack itemstack1 = itemstack.a(world, entityhuman);
2011-01-10 02:36:19 +01:00
2011-01-29 22:50:29 +01:00
if (itemstack1 == itemstack && (itemstack1 == null || itemstack1.count == i)) {
return false;
} else {
entityhuman.inventory.a[entityhuman.inventory.c] = itemstack1;
if (itemstack1.count == 0) {
entityhuman.inventory.a[entityhuman.inventory.c] = 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;
}
}
2011-01-29 22:50:29 +01:00
public boolean a(EntityHuman entityhuman, World world, ItemStack itemstack, int i, int j, int k, int l) {
int i1 = world.getTypeId(i, j, k);
2011-01-10 02:36:19 +01:00
2011-01-29 22:50:29 +01:00
return i1 > 0 && Block.byId[i1].a(world, i, j, k, entityhuman) ? true : (itemstack == null ? false : itemstack.a(entityhuman, world, i, j, k, l));
2011-01-10 02:36:19 +01:00
}
2011-01-10 09:30:34 +01:00
}