Paper/src/main/java/org/bukkit/craftbukkit/CraftWorld.java

454 lines
14 KiB
Java
Raw Normal View History

2010-12-27 03:13:03 +01:00
package org.bukkit.craftbukkit;
import org.bukkit.craftbukkit.entity.*;
import org.bukkit.entity.*;
import org.bukkit.entity.Entity;
import java.util.ArrayList;
2010-12-27 03:13:03 +01:00
import java.util.HashMap;
import java.util.List;
2010-12-27 03:13:03 +01:00
import java.util.Map;
import java.util.Random;
import net.minecraft.server.*;
import org.bukkit.entity.Arrow;
import org.bukkit.block.Block;
import org.bukkit.entity.Boat;
2010-12-27 03:13:03 +01:00
import org.bukkit.Chunk;
import org.bukkit.entity.ItemDrop;
import org.bukkit.inventory.ItemStack;
import org.bukkit.util.Vector;
import org.bukkit.BlockChangeDelegate;
2011-01-02 09:40:27 +01:00
import org.bukkit.Location;
import org.bukkit.TreeType;
2010-12-27 03:13:03 +01:00
import org.bukkit.World;
public class CraftWorld implements World {
private final WorldServer world;
private final Environment environment;
private final CraftServer server;
private final ChunkProviderServer provider;
private HashMap<Integer,CraftChunk> unloadedChunks = new HashMap<Integer, CraftChunk>();
2011-02-02 00:32:18 +01:00
private static final Random rand = new Random();
2010-12-27 03:13:03 +01:00
2010-12-30 05:37:32 +01:00
public CraftWorld(WorldServer world) {
2010-12-27 03:13:03 +01:00
this.world = world;
this.server = world.getServer();
this.provider = world.A;
if (world.q instanceof WorldProviderHell) {
environment = Environment.NETHER;
} else {
environment = Environment.NORMAL;
}
server.addWorld(this);
2010-12-27 03:13:03 +01:00
}
public void preserveChunk( CraftChunk chunk ) {
chunk.breakLink();
unloadedChunks.put( chunk.getX() << 16 + chunk.getZ(), chunk );
}
public CraftChunk popPreservedChunk( int x, int z ) {
return unloadedChunks.remove( x << 16 + z );
}
2010-12-27 03:13:03 +01:00
public Block getBlockAt(int x, int y, int z) {
2011-02-01 23:49:28 +01:00
return getChunkAt(x >> 4, z >> 4).getBlock(x & 0xF, y & 0x7F, z & 0xF);
2010-12-27 03:13:03 +01:00
}
public int getBlockTypeIdAt(int x, int y, int z) {
2011-01-29 22:50:29 +01:00
return world.getTypeId(x, y, z);
}
2011-01-03 22:56:09 +01:00
public int getHighestBlockYAt(int x, int z) {
2011-01-10 09:30:34 +01:00
return world.d(x, z);
2011-01-03 22:56:09 +01:00
}
2011-02-02 00:32:18 +01:00
2011-01-16 00:00:01 +01:00
public Location getSpawnLocation() {
2011-01-29 22:50:29 +01:00
return new Location(this, world.spawnX, world.e(world.spawnX, world.spawnZ), world.spawnZ);
2011-01-16 00:00:01 +01:00
}
2010-12-27 03:13:03 +01:00
public Chunk getChunkAt(int x, int z) {
return this.provider.d(x,z).bukkitChunk;
2010-12-27 03:13:03 +01:00
}
public Chunk getChunkAt(Block block) {
2011-01-18 12:37:01 +01:00
return getChunkAt(block.getX() >> 4, block.getZ() >> 4);
2010-12-27 03:13:03 +01:00
}
2011-02-01 23:49:28 +01:00
public boolean isChunkLoaded(int x, int z) {
return provider.a( x, z );
2010-12-27 03:13:03 +01:00
}
2011-02-04 21:11:57 +01:00
public Chunk[] getLoadedChunks() {
2011-02-09 21:00:17 +01:00
Object[] chunks = provider.e.values().toArray();
org.bukkit.Chunk[] craftChunks = new CraftChunk[chunks.length];
for (int i = 0; i < chunks.length; i++) {
2011-02-09 21:00:17 +01:00
net.minecraft.server.Chunk chunk = (net.minecraft.server.Chunk)chunks[i];
craftChunks[i] = chunk.bukkitChunk;
}
return craftChunks;
2011-02-04 21:11:57 +01:00
}
2011-02-01 23:49:28 +01:00
public void loadChunk(int x, int z) {
loadChunk(x, z, true);
}
public boolean unloadChunk(int x, int z) {
return unloadChunk(x, z, true);
}
public boolean unloadChunk(int x, int z, boolean save) {
return unloadChunk(x, z, save, false);
}
public boolean unloadChunkRequest(int x, int z) {
return unloadChunkRequest(x, z, true);
}
public boolean unloadChunkRequest(int x, int z, boolean safe) {
if (safe && isChunkInUse(x, z)) {
return false;
}
provider.c(x, z);
return true;
}
public boolean unloadChunk(int x, int z, boolean save, boolean safe) {
if (safe && isChunkInUse(x, z)) {
return false;
}
net.minecraft.server.Chunk chunk = provider.b(x, z);
if (save) {
chunk.e();
provider.b(chunk);
provider.a(chunk);
}
2011-02-10 14:27:53 +01:00
provider.a.remove(x, z);
provider.a.remove(x, z);
provider.e.remove(x, z);
provider.f.remove(chunk);
return true;
}
public boolean isChunkInUse(int x, int z) {
Player[] players = server.getOnlinePlayers();
for (Player player : players) {
Location loc = player.getLocation();
if (loc.getWorld() != provider.g.getWorld()) {
continue;
}
// If the chunk is within 256 blocks of a player, refuse to accept the unload request
// This is larger than the distance of loaded chunks that actually surround a player
// The player is the center of a 21x21 chunk grid, so the edge is 10 chunks (160 blocks) away from the player
if (Math.abs(loc.getBlockX() - (x << 4)) <= 256 && Math.abs(loc.getBlockZ() - (z << 4)) <= 256) {
return false;
}
}
return true;
}
public boolean loadChunk(int x, int z, boolean generate) {
if (generate) {
// Use the default variant of loadChunk when generate == true.
return provider.d(x, z) != null;
}
provider.a.remove(x, z);
net.minecraft.server.Chunk chunk = (net.minecraft.server.Chunk) provider.e.get(x, z);
if (chunk == null) {
chunk = provider.e(x, z);
if (chunk != null) {
provider.e.put(x, z, chunk);
provider.f.add(chunk);
chunk.c();
chunk.d();
if (!chunk.n && provider.a(x + 1, z + 1) && provider.a(x, z + 1) && provider.a(x + 1, z)) {
provider.a(provider, x, z);
}
if (provider.a(x - 1, z) && !provider.b(x - 1, z).n && provider.a(x - 1, z + 1) && provider.a(x, z + 1) && provider.a(x - 1, z)) {
provider.a(provider, x - 1, z);
}
if (provider.a(x, z - 1) && !provider.b(x, z - 1).n && provider.a(x + 1, z - 1) && provider.a(x, z - 1) && provider.a(x + 1, z)) {
provider.a(provider, x, z - 1);
}
if (provider.a(x - 1, z - 1) && !provider.b(x - 1, z - 1).n && provider.a(x - 1, z - 1) && provider.a(x, z - 1) && provider.a(x - 1, z)) {
provider.a(provider, x - 1, z - 1);
}
}
}
return chunk != null;
2011-01-20 21:57:33 +01:00
}
2011-02-01 23:49:28 +01:00
public boolean isChunkLoaded(Chunk chunk) {
return isChunkLoaded(chunk.getX(), chunk.getZ());
}
2011-02-01 23:49:28 +01:00
public void loadChunk(Chunk chunk) {
loadChunk(chunk.getX(), chunk.getZ());
((CraftChunk) getChunkAt(chunk.getX(), chunk.getZ())).getHandle().bukkitChunk = chunk;
2011-01-04 16:54:41 +01:00
}
public WorldServer getHandle() {
return world;
}
2011-02-01 23:49:28 +01:00
2011-01-08 21:48:45 +01:00
public ItemDrop dropItem(Location loc, ItemStack item) {
2011-01-15 20:53:20 +01:00
net.minecraft.server.ItemStack stack = new net.minecraft.server.ItemStack(
item.getTypeId(),
item.getAmount(),
item.getDurability()
2011-01-15 20:53:20 +01:00
);
EntityItem entity = new EntityItem(world, loc.getX(), loc.getY(), loc.getZ(), stack);
2011-01-08 21:48:45 +01:00
entity.c = 10;
world.a(entity);
//TODO this is inconsistent with how Entity.getBukkitEntity() works.
// However, this entity is not at the moment backed by a server entity class so it may be left.
2011-01-08 21:48:45 +01:00
return new CraftItemDrop(world.getServer(), entity);
}
2011-02-02 00:32:18 +01:00
2011-01-08 21:48:45 +01:00
public ItemDrop dropItemNaturally(Location loc, ItemStack item) {
double xs = world.l.nextFloat() * 0.7F + (1.0F - 0.7F) * 0.5D;
double ys = world.l.nextFloat() * 0.7F + (1.0F - 0.7F) * 0.5D;
double zs = world.l.nextFloat() * 0.7F + (1.0F - 0.7F) * 0.5D;
loc = loc.clone();
loc.setX(loc.getX() + xs);
loc.setY(loc.getY() + ys);
loc.setZ(loc.getZ() + zs);
2011-01-08 21:48:45 +01:00
return dropItem(loc, item);
}
2011-01-15 20:53:20 +01:00
public Arrow spawnArrow(Location loc, Vector velocity, float speed, float spread) {
2011-01-02 09:40:27 +01:00
EntityArrow arrow = new EntityArrow(world);
arrow.c(loc.getX(), loc.getY(), loc.getZ(), 0, 0);
2011-01-02 09:40:27 +01:00
world.a(arrow);
arrow.a(velocity.getX(), velocity.getY(), velocity.getZ(), speed, spread);
return (Arrow) arrow.getBukkitEntity();
2011-01-02 09:40:27 +01:00
}
2011-02-02 00:32:18 +01:00
public Minecart spawnMinecart(Location loc) {
EntityMinecart minecart = new EntityMinecart(
2011-01-15 20:53:20 +01:00
world,
loc.getX(),
loc.getY(),
loc.getZ(),
CraftMinecart.Type.Minecart.getId()
);
world.a(minecart);
return (Minecart) minecart.getBukkitEntity();
}
2011-02-02 00:32:18 +01:00
public StorageMinecart spawnStorageMinecart(Location loc) {
EntityMinecart minecart = new EntityMinecart(
2011-01-15 20:53:20 +01:00
world,
loc.getX(),
loc.getY(),
loc.getZ(),
CraftMinecart.Type.StorageMinecart.getId()
);
world.a(minecart);
return (StorageMinecart) minecart.getBukkitEntity();
}
2011-02-02 00:32:18 +01:00
public PoweredMinecart spawnPoweredMinecart(Location loc) {
EntityMinecart minecart = new EntityMinecart(
2011-01-15 20:53:20 +01:00
world,
loc.getX(),
loc.getY(),
loc.getZ(),
CraftMinecart.Type.PoweredMinecart.getId()
);
world.a(minecart);
return (PoweredMinecart) minecart.getBukkitEntity();
}
2011-02-02 00:32:18 +01:00
public Boat spawnBoat(Location loc) {
2011-01-15 20:53:20 +01:00
EntityBoat boat = new EntityBoat(world, loc.getX(), loc.getY(), loc.getZ());
world.a(boat);
return (Boat) boat.getBukkitEntity();
}
2011-02-02 00:32:18 +01:00
public Creature spawnCreature(Location loc, CreatureType creatureType) {
Creature creature;
try {
EntityCreature entityCreature = (EntityCreature) EntityTypes.a(creatureType.getName(), world);
entityCreature.a(loc.getX(), loc.getY(), loc.getZ());
creature = (Creature) CraftEntity.getEntity(server, entityCreature);
world.a(entityCreature);
} catch (Exception e) {
// if we fail, for any reason, return null.
creature = null;
}
return creature;
}
public boolean generateTree(Location loc, TreeType type) {
return generateTree(loc, type, world);
}
public boolean generateTree(Location loc, TreeType type, BlockChangeDelegate delegate) {
switch (type) {
case BIG_TREE:
2011-02-02 00:32:18 +01:00
return new WorldGenBigTree().generate(delegate, rand, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
case BIRCH:
2011-02-02 00:32:18 +01:00
return new WorldGenForest().generate(delegate, rand, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
case REDWOOD:
2011-02-02 00:32:18 +01:00
return new WorldGenTaiga2().generate(delegate, rand, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
case TALL_REDWOOD:
2011-02-02 00:32:18 +01:00
return new WorldGenTaiga1().generate(delegate, rand, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
case TREE:
default:
2011-02-02 00:32:18 +01:00
return new WorldGenTrees().generate(delegate, rand, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
}
}
2011-02-02 00:32:18 +01:00
public TileEntity getTileEntityAt(final int x, final int y, final int z) {
2011-01-29 22:50:29 +01:00
return world.getTileEntity(x, y, z);
}
2011-01-08 03:29:57 +01:00
public String getName() {
return world.w;
}
public long getId() {
return world.u;
}
@Override
public String toString() {
2011-02-07 02:22:43 +01:00
return "CraftWorld{name=" + getName() + '}';
}
2011-02-01 15:53:39 +01:00
public long getTime() {
long time = getFullTime() % 24000;
if (time < 0) time += 24000;
return time;
}
public void setTime(long time) {
long margin = (time - getFullTime()) % 24000;
if (margin < 0) margin += 24000;
setFullTime(getFullTime() + margin);
}
public long getFullTime() {
return world.e;
}
public void setFullTime(long time) {
world.e = time;
}
public Environment getEnvironment() {
return environment;
}
public Block getBlockAt(Location location) {
return getBlockAt(location.getBlockX(), location.getBlockY(), location.getBlockZ());
}
public int getBlockTypeIdAt(Location location) {
return getBlockTypeIdAt(location.getBlockX(), location.getBlockY(), location.getBlockZ());
}
public int getHighestBlockYAt(Location location) {
return getHighestBlockYAt(location.getBlockX(), location.getBlockZ());
}
public Chunk getChunkAt(Location location) {
return getChunkAt(location.getBlockX() >> 4, location.getBlockZ() >> 4);
}
2010-12-27 03:13:03 +01:00
private final class ChunkCoordinate {
public final int x;
public final int z;
2010-12-27 03:13:03 +01:00
public ChunkCoordinate(final int x, final int z) {
this.x = x;
this.z = z;
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final ChunkCoordinate other = (ChunkCoordinate) obj;
if (this.x != other.x) {
return false;
}
if (this.z != other.z) {
return false;
}
return true;
}
@Override
public int hashCode() {
int hash = 5;
hash = 53 * hash + this.x;
hash = 53 * hash + this.z;
return hash;
}
}
public List<Entity> getEntities() {
List<Entity> list = new ArrayList<Entity>();
2011-02-02 00:32:18 +01:00
for (Object o: world.b) {
if (o instanceof net.minecraft.server.Entity) {
2011-02-02 00:32:18 +01:00
net.minecraft.server.Entity mcEnt = (net.minecraft.server.Entity)o;
Entity bukkitEntity = mcEnt.getBukkitEntity();
// Assuming that bukkitEntity isn't null
if (bukkitEntity != null) {
list.add(bukkitEntity);
}
}
}
2011-02-02 00:32:18 +01:00
return list;
}
public List<LivingEntity> getLivingEntities() {
List<LivingEntity> list = new ArrayList<LivingEntity>();
2011-02-02 00:32:18 +01:00
for (Object o: world.b) {
if (o instanceof net.minecraft.server.Entity) {
2011-02-02 00:32:18 +01:00
net.minecraft.server.Entity mcEnt = (net.minecraft.server.Entity)o;
Entity bukkitEntity = mcEnt.getBukkitEntity();
2011-02-02 00:32:18 +01:00
// Assuming that bukkitEntity isn't null
if (bukkitEntity != null && bukkitEntity instanceof LivingEntity) {
list.add((LivingEntity)bukkitEntity);
}
}
}
2011-02-02 00:32:18 +01:00
return list;
}
2010-12-27 03:13:03 +01:00
}