Added full tile entity data support for all block types that use it, including chests, dispensers, furnaces, mob spawners, and note blocks.

Dieser Commit ist enthalten in:
sk89q 2011-01-23 00:37:10 -08:00
Ursprung e0b04001aa
Commit 9cd81ddd6d
7 geänderte Dateien mit 335 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -0,0 +1,108 @@
package net.minecraft.server;
import java.util.List;
import java.util.Random;
public class TileEntityMobSpawner extends TileEntity {
public int e;
public String h; // CraftBukkit -> public
public double f;
public double g;
public TileEntityMobSpawner() {
e = -1;
g = 0.0D;
h = "Pig";
e = 20;
}
public void a(String s) {
h = s;
}
public boolean a() {
return a.a((double) b + 0.5D, (double) c + 0.5D, (double) d + 0.5D, 16D) != null;
}
public void f() {
g = f;
if (!a()) {
return;
}
double d = (float) b + a.l.nextFloat();
double d2 = (float) c + a.l.nextFloat();
double d4 = (float) this.d + a.l.nextFloat();
a.a("smoke", d, d2, d4, 0.0D, 0.0D, 0.0D);
a.a("flame", d, d2, d4, 0.0D, 0.0D, 0.0D);
for (f += 1000F / ((float) e + 200F); f > 360D;) {
f -= 360D;
g -= 360D;
}
if (e == -1) {
b();
}
if (e > 0) {
e--;
return;
}
byte byte0 = 4;
for (int i = 0; i < byte0; i++) {
EntityLiving entityliving = (EntityLiving) EntityList.a(h, a);
if (entityliving == null) {
return;
}
int j = a.a(((entityliving)).getClass(), AxisAlignedBB.b(b, c, this.d, b + 1, c + 1, this.d + 1).b(8D, 4D, 8D)).size();
if (j >= 6) {
b();
return;
}
if (entityliving == null) {
continue;
}
double d6 = (double) b + (a.l.nextDouble() - a.l.nextDouble()) * 4D;
double d7 = (c + a.l.nextInt(3)) - 1;
double d8 = (double) this.d + (a.l.nextDouble() - a.l.nextDouble()) * 4D;
entityliving.c(d6, d7, d8, a.l.nextFloat() * 360F, 0.0F);
if (!entityliving.b()) {
continue;
}
a.a(((Entity) (entityliving)));
for (int k = 0; k < 20; k++) {
double d1 = (double) b + 0.5D + ((double) a.l.nextFloat() - 0.5D) * 2D;
double d3 = (double) c + 0.5D + ((double) a.l.nextFloat() - 0.5D) * 2D;
double d5 = (double) this.d + 0.5D + ((double) a.l.nextFloat() - 0.5D) * 2D;
a.a("smoke", d1, d3, d5, 0.0D, 0.0D, 0.0D);
a.a("flame", d1, d3, d5, 0.0D, 0.0D, 0.0D);
}
entityliving.R();
b();
}
super.f();
}
private void b() {
e = 200 + a.l.nextInt(600);
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
h = nbttagcompound.h("EntityId");
e = ((int) (nbttagcompound.c("Delay")));
}
public void b(NBTTagCompound nbttagcompound) {
super.b(nbttagcompound);
nbttagcompound.a("EntityId", h);
nbttagcompound.a("Delay", (short) e);
}
}

Datei anzeigen

@ -288,6 +288,17 @@ public class CraftBlock implements Block {
case SIGN_POST: case SIGN_POST:
case WALL_SIGN: case WALL_SIGN:
return new CraftSign(this); return new CraftSign(this);
case CHEST:
return new CraftChest(this);
case BURNING_FURNACE:
case FURNACE:
return new CraftFurnace(this);
case DISPENSER:
return new CraftDispenser(this);
case MOB_SPAWNER:
return new CraftMobSpawner(this);
case NOTE_BLOCK:
return new CraftNoteBlock(this);
default: default:
return new CraftBlockState(this); return new CraftBlockState(this);
} }

Datei anzeigen

@ -0,0 +1,40 @@
package org.bukkit.craftbukkit.block;
import net.minecraft.server.TileEntityChest;
import org.bukkit.block.Block;
import org.bukkit.block.Chest;
import org.bukkit.craftbukkit.CraftWorld;
import org.bukkit.craftbukkit.inventory.CraftInventory;
import org.bukkit.inventory.Inventory;
/**
* Represents a chest.
*
* @author sk89q
*/
public class CraftChest extends CraftBlockState implements Chest {
private final CraftWorld world;
private final TileEntityChest chest;
public CraftChest(final Block block) {
super(block);
world = (CraftWorld)block.getWorld();
chest = (TileEntityChest)world.getTileEntityAt(getX(), getY(), getZ());
}
public Inventory getInventory() {
return new CraftInventory(chest);
}
@Override
public boolean update(boolean force) {
boolean result = super.update(force);
if (result) {
chest.d();
}
return result;
}
}

Datei anzeigen

@ -0,0 +1,40 @@
package org.bukkit.craftbukkit.block;
import net.minecraft.server.TileEntityDispenser;
import org.bukkit.block.Block;
import org.bukkit.block.Dispenser;
import org.bukkit.craftbukkit.CraftWorld;
import org.bukkit.craftbukkit.inventory.CraftInventory;
import org.bukkit.inventory.Inventory;
/**
* Represents a dispenser.
*
* @author sk89q
*/
public class CraftDispenser extends CraftBlockState implements Dispenser {
private final CraftWorld world;
private final TileEntityDispenser dispenser;
public CraftDispenser(final Block block) {
super(block);
world = (CraftWorld)block.getWorld();
dispenser = (TileEntityDispenser)world.getTileEntityAt(getX(), getY(), getZ());
}
public Inventory getInventory() {
return new CraftInventory(dispenser);
}
@Override
public boolean update(boolean force) {
boolean result = super.update(force);
if (result) {
dispenser.d();
}
return result;
}
}

Datei anzeigen

@ -0,0 +1,56 @@
package org.bukkit.craftbukkit.block;
import net.minecraft.server.TileEntityFurnace;
import org.bukkit.block.Block;
import org.bukkit.block.Furnace;
import org.bukkit.craftbukkit.CraftWorld;
import org.bukkit.craftbukkit.inventory.CraftInventory;
import org.bukkit.inventory.Inventory;
/**
* Represents a furnace.
*
* @author sk89q
*/
public class CraftFurnace extends CraftBlockState implements Furnace {
private final CraftWorld world;
private final TileEntityFurnace furnace;
public CraftFurnace(final Block block) {
super(block);
world = (CraftWorld)block.getWorld();
furnace = (TileEntityFurnace)world.getTileEntityAt(getX(), getY(), getZ());
}
public Inventory getInventory() {
return new CraftInventory(furnace);
}
@Override
public boolean update(boolean force) {
boolean result = super.update(force);
if (result) {
furnace.d();
}
return result;
}
public short getBurnTime() {
return (short)furnace.e;
}
public void setBurnTime(short burnTime) {
furnace.e = burnTime;
}
public short getCookTime() {
return (short)furnace.g;
}
public void setCookTime(short cookTime) {
furnace.g = cookTime;
}
}

Datei anzeigen

@ -0,0 +1,49 @@
package org.bukkit.craftbukkit.block;
import net.minecraft.server.TileEntityMobSpawner;
import org.bukkit.block.Block;
import org.bukkit.block.MobSpawner;
import org.bukkit.craftbukkit.CraftWorld;
import org.bukkit.entity.MobType;
public class CraftMobSpawner extends CraftBlockState implements MobSpawner {
private final CraftWorld world;
private final TileEntityMobSpawner spawner;
public CraftMobSpawner(final Block block) {
super(block);
world = (CraftWorld)block.getWorld();
spawner = (TileEntityMobSpawner)world.getTileEntityAt(getX(), getY(), getZ());
}
public MobType getMobType() {
return MobType.fromName(spawner.h);
}
public void setMobType(MobType mobType) {
spawner.h = mobType.getName();
}
public String getMobTypeId() {
return spawner.h;
}
public void setMobTypeId(String mobType) {
// Verify input
MobType type = MobType.fromName(mobType);
if (type == null) {
return;
}
spawner.h = type.getName();
}
public int getDelay() {
return spawner.e;
}
public void setDelay(int delay) {
spawner.e = delay;
}
}

Datei anzeigen

@ -0,0 +1,31 @@
package org.bukkit.craftbukkit.block;
import net.minecraft.server.TileEntityNote;
import org.bukkit.block.Block;
import org.bukkit.block.NoteBlock;
import org.bukkit.craftbukkit.CraftWorld;
/**
* Represents a note block.
*
* @author sk89q
*/
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());
}
public byte getNote() {
return note.e;
}
public void setNote(byte n) {
note.e = n;
}
}