2012-04-02 14:43:59 +02:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.Random;
|
|
|
|
|
2012-04-02 16:01:48 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2012-04-02 14:43:59 +02:00
|
|
|
public class BlockRedstoneLamp extends Block {
|
|
|
|
|
|
|
|
private final boolean a;
|
|
|
|
|
|
|
|
public BlockRedstoneLamp(int i, boolean flag) {
|
|
|
|
super(i, 211, Material.BUILDABLE_GLASS);
|
|
|
|
this.a = flag;
|
|
|
|
if (flag) {
|
|
|
|
this.a(1.0F);
|
|
|
|
++this.textureId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onPlace(World world, int i, int j, int k) {
|
|
|
|
if (!world.isStatic) {
|
|
|
|
if (this.a && !world.isBlockIndirectlyPowered(i, j, k)) {
|
|
|
|
world.c(i, j, k, this.id, 4);
|
|
|
|
} else if (!this.a && world.isBlockIndirectlyPowered(i, j, k)) {
|
2012-04-02 16:01:48 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
if (CraftEventFactory.callRedstoneChange(world, i, j, k, 0, 15).getNewCurrent() != 15) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2012-04-02 14:43:59 +02:00
|
|
|
world.setTypeId(i, j, k, Block.REDSTONE_LAMP_ON.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void doPhysics(World world, int i, int j, int k, int l) {
|
|
|
|
if (!world.isStatic) {
|
|
|
|
if (this.a && !world.isBlockIndirectlyPowered(i, j, k)) {
|
|
|
|
world.c(i, j, k, this.id, 4);
|
|
|
|
} else if (!this.a && world.isBlockIndirectlyPowered(i, j, k)) {
|
2012-04-02 16:01:48 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
if (CraftEventFactory.callRedstoneChange(world, i, j, k, 0, 15).getNewCurrent() != 15) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2012-04-02 14:43:59 +02:00
|
|
|
world.setTypeId(i, j, k, Block.REDSTONE_LAMP_ON.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(World world, int i, int j, int k, Random random) {
|
|
|
|
if (!world.isStatic && this.a && !world.isBlockIndirectlyPowered(i, j, k)) {
|
2012-04-02 16:01:48 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
if (CraftEventFactory.callRedstoneChange(world, i, j, k, 15, 0).getNewCurrent() != 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2012-04-02 14:43:59 +02:00
|
|
|
world.setTypeId(i, j, k, Block.REDSTONE_LAMP_OFF.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getDropType(int i, Random random, int j) {
|
|
|
|
return Block.REDSTONE_LAMP_OFF.id;
|
|
|
|
}
|
|
|
|
}
|