2012-11-21 23:19:56 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class ItemMapEmpty extends ItemWorldMapBase {
|
|
|
|
|
|
|
|
protected ItemMapEmpty(int i) {
|
|
|
|
super(i);
|
|
|
|
this.a(CreativeModeTab.f);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ItemStack a(ItemStack itemstack, World world, EntityHuman entityhuman) {
|
|
|
|
ItemStack itemstack1 = new ItemStack(Item.MAP, 1, world.b("map"));
|
|
|
|
String s = "map_" + itemstack1.getData();
|
|
|
|
WorldMap worldmap = new WorldMap(s);
|
|
|
|
|
|
|
|
world.a(s, (WorldMapBase) worldmap);
|
|
|
|
worldmap.scale = 0;
|
|
|
|
int i = 128 * (1 << worldmap.scale);
|
|
|
|
|
|
|
|
worldmap.centerX = (int) (Math.round(entityhuman.locX / (double) i) * (long) i);
|
|
|
|
worldmap.centerZ = (int) (Math.round(entityhuman.locZ / (double) i) * (long) i);
|
2012-11-21 23:48:25 +01:00
|
|
|
worldmap.map = (byte) ((WorldServer) world).dimension; // CraftBukkit - use bukkit dimension
|
2012-11-21 23:19:56 +01:00
|
|
|
worldmap.c();
|
2012-11-21 23:48:25 +01:00
|
|
|
|
|
|
|
org.bukkit.craftbukkit.event.CraftEventFactory.callEvent(new org.bukkit.event.server.MapInitializeEvent(worldmap.mapView)); // CraftBukkit
|
|
|
|
|
2012-11-21 23:19:56 +01:00
|
|
|
--itemstack.count;
|
|
|
|
if (itemstack.count <= 0) {
|
|
|
|
return itemstack1;
|
|
|
|
} else {
|
|
|
|
if (!entityhuman.inventory.pickup(itemstack1.cloneItemStack())) {
|
|
|
|
entityhuman.drop(itemstack1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return itemstack;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|