87 lines
2.1 KiB
Java
87 lines
2.1 KiB
Java
package org.bukkit.craftbukkit.block;
|
|
|
|
import net.minecraft.server.TileEntityNote;
|
|
|
|
import org.bukkit.Instrument;
|
|
import org.bukkit.Material;
|
|
import org.bukkit.Note;
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.block.NoteBlock;
|
|
import org.bukkit.craftbukkit.CraftWorld;
|
|
|
|
/**
|
|
* Represents a note block.
|
|
*/
|
|
public class CraftNoteBlock extends CraftBlockState implements NoteBlock {
|
|
private final CraftWorld world;
|
|
private final TileEntityNote note;
|
|
|
|
public CraftNoteBlock(final Block block) {
|
|
super(block);
|
|
|
|
world = (CraftWorld) block.getWorld();
|
|
note = (TileEntityNote) world.getTileEntityAt(getX(), getY(), getZ());
|
|
}
|
|
|
|
@Deprecated
|
|
public byte getNote() {
|
|
return note.note;
|
|
}
|
|
|
|
public byte getRawNote() {
|
|
return note.note;
|
|
}
|
|
|
|
public void setNote(Note n) {
|
|
note.note = n.getId();
|
|
}
|
|
|
|
@Deprecated
|
|
public void setNote(byte n) {
|
|
note.note = n;
|
|
}
|
|
|
|
public void setRawNote(byte n) {
|
|
note.note = n;
|
|
}
|
|
|
|
public boolean play() {
|
|
Block block = getBlock();
|
|
|
|
synchronized (block) {
|
|
if (block.getType() == Material.NOTE_BLOCK) {
|
|
note.play(world.getHandle(), getX(), getY(), getZ());
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
public boolean play(byte instrument, byte note) {
|
|
Block block = getBlock();
|
|
|
|
synchronized (block) {
|
|
if (block.getType() == Material.NOTE_BLOCK) {
|
|
world.getHandle().playNote(getX(), getY(), getZ(), instrument, note);
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
public boolean play(Instrument instrument, Note note) {
|
|
Block block = getBlock();
|
|
|
|
synchronized (block) {
|
|
if (block.getType() == Material.NOTE_BLOCK) {
|
|
world.getHandle().playNote(getX(), getY(), getZ(), instrument.getType(), note.getId());
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|