[Bleeding] Add new MaterialData classes for new blocks and update existing blocks with new data

By: Mike Primm <mike@primmhome.com>
This commit is contained in:
Bukkit/Spigot
2012-08-04 21:23:59 -05:00
parent 64ad50197f
commit 5154864bbc
12 changed files with 640 additions and 21 deletions

View File

@@ -0,0 +1,71 @@
package org.bukkit.material;
import org.bukkit.Material;
/**
* Represents the tripwire
*/
public class Tripwire extends MaterialData {
public Tripwire() {
super(Material.TRIPWIRE);
}
public Tripwire(final int type) {
super(type);
}
public Tripwire(final int type, final byte data) {
super(type, data);
}
/**
* Test if tripwire is currently activated
* @return true if activated, false if not
*/
public boolean isActivated() {
return (getData() & 0x4) != 0;
}
/**
* Set tripwire activated state
* @param act - true if activated, false if not
*/
public void setActivated(boolean act) {
int dat = getData() & (0x8 | 0x3);
if (act) {
dat |= 0x4;
}
setData((byte) dat);
}
/**
* Test if object triggering this tripwire directly
* @return true if object activating tripwire, false if not
*/
public boolean isObjectTriggering() {
return (getData() & 0x1) != 0;
}
/**
* Set object triggering state for this tripwire
* @param trig - true if object activating tripwire, false if not
*/
public void setObjectTriggering(boolean trig) {
int dat = getData() & 0xE;
if (trig) {
dat |= 0x1;
}
setData((byte) dat);
}
@Override
public Tripwire clone() {
return (Tripwire) super.clone();
}
@Override
public String toString() {
return super.toString() + (isActivated()?" Activated":"") + (isObjectTriggering()?" Triggered":"");
}
}