added support for SmoothBrick and changed steps to a TexturedMaterial

By: sunkid <sunkid@iminurnetz.com>
This commit is contained in:
Bukkit/Spigot
2011-09-15 16:33:53 -07:00
parent fd48f02fc3
commit 1968b78a12
4 changed files with 131 additions and 59 deletions

View File

@ -0,0 +1,48 @@
package org.bukkit.material;
import java.util.ArrayList;
import java.util.List;
import org.bukkit.Material;
/**
* Represents the different types of smooth bricks.
*/
public class SmoothBrick extends TexturedMaterial {
private static final List<Material> textures = new ArrayList<Material>();
static {
textures.add(Material.STONE);
textures.add(Material.MOSSY_COBBLESTONE);
textures.add(Material.COBBLESTONE);
}
public SmoothBrick() {
super(Material.SMOOTH_BRICK);
}
public SmoothBrick(final int type) {
super(type);
}
public SmoothBrick(final Material type) {
super((textures.contains(type)) ? Material.SMOOTH_BRICK : type);
if (textures.contains(type)) {
setMaterial(type);
}
}
public SmoothBrick(final int type, final byte data) {
super(type, data);
}
public SmoothBrick(final Material type, final byte data) {
super(type, data);
}
@Override
public List<Material> getTextures() {
return textures;
}
}