geforkt von Mirrors/Paper
SPIGOT-3000: MaterialData for Observers
By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
Ursprung
596839ddb5
Commit
1732ba0fbf
@ -63,6 +63,7 @@ import org.bukkit.material.Wool;
|
|||||||
import com.google.common.collect.Maps;
|
import com.google.common.collect.Maps;
|
||||||
|
|
||||||
import org.bukkit.material.Banner;
|
import org.bukkit.material.Banner;
|
||||||
|
import org.bukkit.material.Observer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An enum of all material IDs accepted by the official server and client
|
* An enum of all material IDs accepted by the official server and client
|
||||||
@ -286,7 +287,7 @@ public enum Material {
|
|||||||
RED_NETHER_BRICK(215),
|
RED_NETHER_BRICK(215),
|
||||||
BONE_BLOCK(216),
|
BONE_BLOCK(216),
|
||||||
STRUCTURE_VOID(217),
|
STRUCTURE_VOID(217),
|
||||||
OBSERVER(218),
|
OBSERVER(218, Observer.class),
|
||||||
WHITE_SHULKER_BOX(219, 1),
|
WHITE_SHULKER_BOX(219, 1),
|
||||||
ORANGE_SHULKER_BOX(220, 1),
|
ORANGE_SHULKER_BOX(220, 1),
|
||||||
MAGENTA_SHULKER_BOX(221, 1),
|
MAGENTA_SHULKER_BOX(221, 1),
|
||||||
|
117
paper-api/src/main/java/org/bukkit/material/Observer.java
Normale Datei
117
paper-api/src/main/java/org/bukkit/material/Observer.java
Normale Datei
@ -0,0 +1,117 @@
|
|||||||
|
package org.bukkit.material;
|
||||||
|
|
||||||
|
import org.bukkit.Material;
|
||||||
|
import org.bukkit.block.BlockFace;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents an observer.
|
||||||
|
*/
|
||||||
|
public class Observer extends MaterialData implements Directional, Redstone {
|
||||||
|
|
||||||
|
public Observer() {
|
||||||
|
super(Material.OBSERVER);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Observer(BlockFace direction) {
|
||||||
|
this();
|
||||||
|
setFacingDirection(direction);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param type the raw type id
|
||||||
|
* @deprecated Magic value
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Observer(final int type) {
|
||||||
|
super(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Observer(final Material type) {
|
||||||
|
super(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param type the raw type id
|
||||||
|
* @param data the raw data value
|
||||||
|
* @deprecated Magic value
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Observer(final int type, final byte data) {
|
||||||
|
super(type, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param type the type
|
||||||
|
* @param data the raw data value
|
||||||
|
* @deprecated Magic value
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public Observer(final Material type, final byte data) {
|
||||||
|
super(type, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isPowered() {
|
||||||
|
return (getData() & 0x8) == 0x8;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setFacingDirection(BlockFace face) {
|
||||||
|
byte data = (byte) (getData() & 0x8);
|
||||||
|
|
||||||
|
switch (face) {
|
||||||
|
case DOWN:
|
||||||
|
data |= 0x0;
|
||||||
|
break;
|
||||||
|
case UP:
|
||||||
|
data |= 0x1;
|
||||||
|
break;
|
||||||
|
case SOUTH:
|
||||||
|
data |= 0x2;
|
||||||
|
break;
|
||||||
|
case NORTH:
|
||||||
|
data |= 0x3;
|
||||||
|
break;
|
||||||
|
case EAST:
|
||||||
|
data |= 0x4;
|
||||||
|
break;
|
||||||
|
case WEST:
|
||||||
|
data |= 0x5;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
setData(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BlockFace getFacing() {
|
||||||
|
int data = getData() & 0x7;
|
||||||
|
|
||||||
|
switch (data) {
|
||||||
|
case 0x0:
|
||||||
|
return BlockFace.DOWN;
|
||||||
|
case 0x1:
|
||||||
|
return BlockFace.UP;
|
||||||
|
case 0x2:
|
||||||
|
return BlockFace.SOUTH;
|
||||||
|
case 0x3:
|
||||||
|
return BlockFace.NORTH;
|
||||||
|
case 0x4:
|
||||||
|
return BlockFace.EAST;
|
||||||
|
case 0x5:
|
||||||
|
return BlockFace.WEST;
|
||||||
|
default:
|
||||||
|
throw new IllegalArgumentException("Illegal facing direction " + data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return super.toString() + " facing " + getFacing();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Observer clone() {
|
||||||
|
return (Observer) super.clone();
|
||||||
|
}
|
||||||
|
}
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren