BlockState for Command Blocks. Adds BUKKIT-3805.

By: Nate Mortensen <nate.richard.mortensen@gmail.com>
This commit is contained in:
CraftBukkit/Spigot 2013-03-18 00:32:11 -06:00
parent b9af9ef239
commit eabf3db614
2 changed files with 50 additions and 0 deletions

View file

@ -261,6 +261,8 @@ public class CraftBlock implements Block {
return new CraftBrewingStand(this);
case SKULL:
return new CraftSkull(this);
case COMMAND:
return new CraftCommandBlock(this);
default:
return new CraftBlockState(this);
}

View file

@ -0,0 +1,48 @@
package org.bukkit.craftbukkit.block;
import net.minecraft.server.TileEntityCommand;
import org.bukkit.block.Block;
import org.bukkit.block.CommandBlock;
import org.bukkit.craftbukkit.CraftWorld;
public class CraftCommandBlock extends CraftBlockState implements CommandBlock {
private final TileEntityCommand commandBlock;
private String command;
private String name;
public CraftCommandBlock(Block block) {
super(block);
CraftWorld world = (CraftWorld) block.getWorld();
commandBlock = (TileEntityCommand) world.getTileEntityAt(getX(), getY(), getZ());
command = commandBlock.b;
name = commandBlock.getName();
}
public String getCommand() {
return command;
}
public void setCommand(String command) {
this.command = command != null ? command : "";
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name != null ? name : "@";
}
public boolean update(boolean forced) {
boolean result = super.update(forced);
if (result) {
commandBlock.b(command);
commandBlock.c(name);
}
return result;
}
}