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

142 Zeilen
4.4 KiB
Java

package net.minecraft.server;
import java.util.Random;
import org.bukkit.event.entity.EntityInteractEvent; // CraftBukkit
public class BlockRedstoneOre extends Block {
private boolean a;
2013-03-13 23:33:27 +01:00
public BlockRedstoneOre(int i, boolean flag) {
super(i, Material.STONE);
if (flag) {
2012-07-29 09:33:13 +02:00
this.b(true);
}
this.a = flag;
}
2013-03-13 23:33:27 +01:00
public int a(World world) {
return 30;
}
public void attack(World world, int i, int j, int k, EntityHuman entityhuman) {
2013-03-13 23:33:27 +01:00
this.k(world, i, j, k);
super.attack(world, i, j, k, entityhuman);
}
public void b(World world, int i, int j, int k, Entity entity) {
// CraftBukkit start
if (entity instanceof EntityHuman) {
org.bukkit.event.player.PlayerInteractEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerInteractEvent((EntityHuman) entity, org.bukkit.event.block.Action.PHYSICAL, i, j, k, -1, null);
if (!event.isCancelled()) {
2013-03-13 23:33:27 +01:00
this.k(world, i, j, k);
super.b(world, i, j, k, entity);
}
} else {
EntityInteractEvent event = new EntityInteractEvent(entity.getBukkitEntity(), world.getWorld().getBlockAt(i, j, k));
world.getServer().getPluginManager().callEvent(event);
if (!event.isCancelled()) {
2013-03-13 23:33:27 +01:00
this.k(world, i, j, k);
super.b(world, i, j, k, entity);
}
}
// CraftBukkit end
}
2012-07-29 09:33:13 +02:00
public boolean interact(World world, int i, int j, int k, EntityHuman entityhuman, int l, float f, float f1, float f2) {
2013-03-13 23:33:27 +01:00
this.k(world, i, j, k);
2012-07-29 09:33:13 +02:00
return super.interact(world, i, j, k, entityhuman, l, f, f1, f2);
}
2013-03-13 23:33:27 +01:00
private void k(World world, int i, int j, int k) {
this.m(world, i, j, k);
if (this.id == Block.REDSTONE_ORE.id) {
2013-03-13 23:33:27 +01:00
world.setTypeIdUpdate(i, j, k, Block.GLOWING_REDSTONE_ORE.id);
}
}
2013-03-13 23:33:27 +01:00
public void a(World world, int i, int j, int k, Random random) {
if (this.id == Block.GLOWING_REDSTONE_ORE.id) {
2013-03-13 23:33:27 +01:00
world.setTypeIdUpdate(i, j, k, Block.REDSTONE_ORE.id);
}
}
public int getDropType(int i, Random random, int j) {
return Item.REDSTONE.id;
}
public int getDropCount(int i, Random random) {
return this.a(random) + random.nextInt(i + 1);
}
public int a(Random random) {
return 4 + random.nextInt(2);
}
2012-07-29 09:33:13 +02:00
public void dropNaturally(World world, int i, int j, int k, int l, float f, int i1) {
super.dropNaturally(world, i, j, k, l, f, i1);
/* CraftBukkit start - delegate to getExpDrop
2012-07-29 09:33:13 +02:00
if (this.getDropType(l, world.random, i1) != this.id) {
int j1 = 1 + world.random.nextInt(5);
2013-03-13 23:33:27 +01:00
this.j(world, i, j, k, j1);
} */
}
public int getExpDrop(World world, int l, int i1) {
if (this.getDropType(l, world.random, i1) != this.id) {
int j1 = 1 + world.random.nextInt(5);
return j1;
2012-07-29 09:33:13 +02:00
}
return 0;
// CraftBukkit end
2012-07-29 09:33:13 +02:00
}
2013-03-13 23:33:27 +01:00
private void m(World world, int i, int j, int k) {
Random random = world.random;
double d0 = 0.0625D;
for (int l = 0; l < 6; ++l) {
double d1 = (double) ((float) i + random.nextFloat());
double d2 = (double) ((float) j + random.nextFloat());
double d3 = (double) ((float) k + random.nextFloat());
2013-03-13 23:33:27 +01:00
if (l == 0 && !world.t(i, j + 1, k)) {
d2 = (double) (j + 1) + d0;
}
2013-03-13 23:33:27 +01:00
if (l == 1 && !world.t(i, j - 1, k)) {
d2 = (double) (j + 0) - d0;
}
2013-03-13 23:33:27 +01:00
if (l == 2 && !world.t(i, j, k + 1)) {
d3 = (double) (k + 1) + d0;
}
2013-03-13 23:33:27 +01:00
if (l == 3 && !world.t(i, j, k - 1)) {
d3 = (double) (k + 0) - d0;
}
2013-03-13 23:33:27 +01:00
if (l == 4 && !world.t(i + 1, j, k)) {
d1 = (double) (i + 1) + d0;
}
2013-03-13 23:33:27 +01:00
if (l == 5 && !world.t(i - 1, j, k)) {
d1 = (double) (i + 0) - d0;
}
if (d1 < (double) i || d1 > (double) (i + 1) || d2 < 0.0D || d2 > (double) (j + 1) || d3 < (double) k || d3 > (double) (k + 1)) {
world.addParticle("reddust", d1, d2, d3, 0.0D, 0.0D, 0.0D);
}
}
}
2013-03-13 23:33:27 +01:00
protected ItemStack c_(int i) {
return new ItemStack(Block.REDSTONE_ORE);
}
}