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

103 Zeilen
4.5 KiB
Java

2011-03-07 19:52:25 +01:00
package net.minecraft.server;
// CraftBukkit start
import org.bukkit.craftbukkit.util.BlockStateListPopulator;
import org.bukkit.event.block.BlockRedstoneEvent;
import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
// CraftBukkit end
2011-03-07 19:52:25 +01:00
2012-03-01 11:49:23 +01:00
public class BlockPumpkin extends BlockDirectional {
2011-03-07 19:52:25 +01:00
private boolean a;
2013-03-13 23:33:27 +01:00
protected BlockPumpkin(int i, boolean flag) {
2011-03-07 19:52:25 +01:00
super(i, Material.PUMPKIN);
2012-07-29 09:33:13 +02:00
this.b(true);
2011-03-07 19:52:25 +01:00
this.a = flag;
2012-07-29 09:33:13 +02:00
this.a(CreativeModeTab.b);
2011-03-07 19:52:25 +01:00
}
2012-01-28 07:59:59 +01:00
public void onPlace(World world, int i, int j, int k) {
super.onPlace(world, i, j, k);
2011-11-20 09:01:14 +01:00
if (world.getTypeId(i, j - 1, k) == Block.SNOW_BLOCK.id && world.getTypeId(i, j - 2, k) == Block.SNOW_BLOCK.id) {
if (!world.isStatic) {
2013-03-25 05:22:32 +01:00
// CraftBukkit start - Use BlockStateListPopulator
BlockStateListPopulator blockList = new BlockStateListPopulator(world.getWorld());
blockList.setTypeId(i, j, k, 0);
blockList.setTypeId(i, j - 1, k, 0);
blockList.setTypeId(i, j - 2, k, 0);
2011-11-20 09:01:14 +01:00
EntitySnowman entitysnowman = new EntitySnowman(world);
entitysnowman.setPositionRotation((double) i + 0.5D, (double) j - 1.95D, (double) k + 0.5D, 0.0F, 0.0F);
if (world.addEntity(entitysnowman, SpawnReason.BUILD_SNOWMAN)) {
blockList.updateList();
}
// CraftBukkit end
2011-11-20 09:01:14 +01:00
}
for (int l = 0; l < 120; ++l) {
world.addParticle("snowshovel", (double) i + world.random.nextDouble(), (double) (j - 2) + world.random.nextDouble() * 2.5D, (double) k + world.random.nextDouble(), 0.0D, 0.0D, 0.0D);
2011-11-20 09:01:14 +01:00
}
2012-03-01 11:49:23 +01:00
} else if (world.getTypeId(i, j - 1, k) == Block.IRON_BLOCK.id && world.getTypeId(i, j - 2, k) == Block.IRON_BLOCK.id) {
boolean flag = world.getTypeId(i - 1, j - 1, k) == Block.IRON_BLOCK.id && world.getTypeId(i + 1, j - 1, k) == Block.IRON_BLOCK.id;
boolean flag1 = world.getTypeId(i, j - 1, k - 1) == Block.IRON_BLOCK.id && world.getTypeId(i, j - 1, k + 1) == Block.IRON_BLOCK.id;
if (flag || flag1) {
2013-03-25 05:22:32 +01:00
// CraftBukkit start - Use BlockStateListPopulator
BlockStateListPopulator blockList = new BlockStateListPopulator(world.getWorld());
blockList.setTypeId(i, j, k, 0);
blockList.setTypeId(i, j - 1, k, 0);
blockList.setTypeId(i, j - 2, k, 0);
2012-07-29 09:33:13 +02:00
2012-03-01 11:49:23 +01:00
if (flag) {
blockList.setTypeId(i - 1, j - 1, k, 0);
blockList.setTypeId(i + 1, j - 1, k, 0);
2012-03-01 11:49:23 +01:00
} else {
blockList.setTypeId(i, j - 1, k - 1, 0);
blockList.setTypeId(i, j - 1, k + 1, 0);
2012-03-01 11:49:23 +01:00
}
EntityIronGolem entityirongolem = new EntityIronGolem(world);
entityirongolem.setPlayerCreated(true);
2012-03-01 11:49:23 +01:00
entityirongolem.setPositionRotation((double) i + 0.5D, (double) j - 1.95D, (double) k + 0.5D, 0.0F, 0.0F);
if (world.addEntity(entityirongolem, SpawnReason.BUILD_IRONGOLEM)) {
for (int i1 = 0; i1 < 120; ++i1) {
world.addParticle("snowballpoof", (double) i + world.random.nextDouble(), (double) (j - 2) + world.random.nextDouble() * 3.9D, (double) k + world.random.nextDouble(), 0.0D, 0.0D, 0.0D);
}
2012-03-01 11:49:23 +01:00
blockList.updateList();
2012-03-01 11:49:23 +01:00
}
// CraftBukkit end
2012-03-01 11:49:23 +01:00
}
2011-11-20 09:01:14 +01:00
}
2011-03-07 19:52:25 +01:00
}
public boolean canPlace(World world, int i, int j, int k) {
2011-03-07 19:52:25 +01:00
int l = world.getTypeId(i, j, k);
2013-03-13 23:33:27 +01:00
return (l == 0 || Block.byId[l].material.isReplaceable()) && world.w(i, j - 1, k);
2011-03-07 19:52:25 +01:00
}
2013-03-13 23:33:27 +01:00
public void postPlace(World world, int i, int j, int k, EntityLiving entityliving, ItemStack itemstack) {
2011-04-20 22:47:26 +02:00
int l = MathHelper.floor((double) (entityliving.yaw * 4.0F / 360.0F) + 2.5D) & 3;
2011-03-07 19:52:25 +01:00
2013-03-13 23:33:27 +01:00
world.setData(i, j, k, l, 2);
2011-03-07 19:52:25 +01:00
}
2011-05-14 16:29:42 +02:00
// CraftBukkit start
public void doPhysics(World world, int i, int j, int k, int l) {
if (net.minecraft.server.Block.byId[l] != null && net.minecraft.server.Block.byId[l].isPowerSource()) {
org.bukkit.block.Block block = world.getWorld().getBlockAt(i, j, k);
2011-03-07 19:52:25 +01:00
int power = block.getBlockPower();
2011-03-31 22:40:00 +02:00
2011-03-07 19:52:25 +01:00
BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, power, power);
world.getServer().getPluginManager().callEvent(eventRedstone);
2011-03-07 19:52:25 +01:00
}
}
2011-05-14 16:29:42 +02:00
// CraftBukkit end
2011-03-07 19:52:25 +01:00
}