PlotSquared/Sponge/src/main/java/com/plotsquared/sponge/util/SpongeChunkManager.java

134 lines
4.8 KiB
Java
Raw Normal View History

2015-07-30 19:24:01 +02:00
package com.plotsquared.sponge.util;
2015-07-30 16:25:16 +02:00
2016-02-23 15:55:40 +01:00
import com.intellectualcrafters.plot.object.ChunkLoc;
import com.intellectualcrafters.plot.object.Location;
import com.intellectualcrafters.plot.object.Plot;
import com.intellectualcrafters.plot.util.ChunkManager;
import com.intellectualcrafters.plot.util.TaskManager;
import org.spongepowered.api.entity.Entity;
import org.spongepowered.api.entity.living.Living;
import org.spongepowered.api.entity.living.animal.Animal;
import org.spongepowered.api.entity.living.monster.Monster;
2015-07-30 16:25:16 +02:00
import org.spongepowered.api.world.Chunk;
import org.spongepowered.api.world.World;
2016-02-23 15:55:40 +01:00
import java.util.Optional;
import java.util.Set;
import java.util.function.Predicate;
2015-07-30 16:25:16 +02:00
2015-09-13 06:04:31 +02:00
public class SpongeChunkManager extends ChunkManager {
2015-07-30 16:25:16 +02:00
@Override
2015-09-13 06:04:31 +02:00
public int[] countEntities(final Plot plot) {
2015-09-22 15:23:28 +02:00
final Location pos1 = plot.getBottomAbs();
final Location pos2 = plot.getTopAbs();
2015-09-13 06:04:31 +02:00
2015-09-11 12:09:22 +02:00
final String worldname = pos1.getWorld();
final World world = SpongeUtil.getWorld(worldname);
final int bx = pos1.getX();
final int bz = pos1.getZ();
final int tx = pos2.getX();
final int tz = pos2.getZ();
final int[] count = new int[6];
2016-02-23 15:55:40 +01:00
world.getEntities(entity -> {
final org.spongepowered.api.world.Location loc = entity.getLocation();
final int x = loc.getBlockX();
if ((x >= bx) && (x <= tx)) {
final int z = loc.getBlockZ();
if ((z >= bz) && (z <= tz)) {
count[0]++;
if (entity instanceof Living) {
count[3]++;
if (entity instanceof Animal) {
count[1]++;
} else if (entity instanceof Monster) {
count[2]++;
}
2016-02-23 15:55:40 +01:00
} else {
count[4]++;
}
}
}
2016-02-23 15:55:40 +01:00
return false;
});
2015-09-13 06:04:31 +02:00
return count;
2015-07-30 16:25:16 +02:00
}
2015-09-13 06:04:31 +02:00
2015-07-30 16:25:16 +02:00
@Override
2015-09-13 06:04:31 +02:00
public boolean loadChunk(final String world, final ChunkLoc loc, final boolean force) {
2015-09-11 12:09:22 +02:00
final World worldObj = SpongeUtil.getWorld(world);
2015-07-30 16:25:16 +02:00
return worldObj.loadChunk(loc.x << 4, 0, loc.z << 4, force).isPresent();
}
2015-09-13 06:04:31 +02:00
2015-07-30 16:25:16 +02:00
@Override
2015-09-22 15:23:28 +02:00
public Set<ChunkLoc> getChunkChunks(final String world) {
2015-10-07 08:33:33 +02:00
// TODO save world;
return super.getChunkChunks(world);
2015-07-30 16:25:16 +02:00
}
2015-09-13 06:04:31 +02:00
2015-07-30 16:25:16 +02:00
@Override
2015-09-13 06:04:31 +02:00
public void regenerateChunk(final String world, final ChunkLoc loc) {
2015-09-11 12:09:22 +02:00
final World worldObj = SpongeUtil.getWorld(world);
final Optional<Chunk> chunkOpt = worldObj.getChunk(loc.x << 4, 0, loc.z << 4);
if (chunkOpt.isPresent()) {
Chunk chunk = chunkOpt.get();
// TODO FIXME
throw new UnsupportedOperationException("NOT IMPLEMENTED YET");
2015-07-30 16:25:16 +02:00
}
}
2015-09-13 06:04:31 +02:00
2015-07-30 16:25:16 +02:00
@Override
2015-09-13 06:04:31 +02:00
public boolean copyRegion(final Location pos1, final Location pos2, final Location newPos, final Runnable whenDone) {
2015-10-07 08:33:33 +02:00
// TODO copy a region
2015-07-30 16:25:16 +02:00
TaskManager.runTask(whenDone);
return false;
}
2015-09-13 06:04:31 +02:00
2015-07-30 16:25:16 +02:00
@Override
2015-09-13 06:04:31 +02:00
public void clearAllEntities(final Location pos1, final Location pos2) {
2015-09-11 12:09:22 +02:00
final String worldname = pos1.getWorld();
final World world = SpongeUtil.getWorld(worldname);
final int bx = pos1.getX();
final int bz = pos1.getZ();
final int tx = pos2.getX();
final int tz = pos2.getZ();
2015-09-13 06:04:31 +02:00
world.getEntities(new Predicate<Entity>() {
@Override
2015-10-07 08:33:33 +02:00
public boolean test(final Entity entity) {
2015-09-11 12:09:22 +02:00
final org.spongepowered.api.world.Location loc = entity.getLocation();
final int x = loc.getBlockX();
2015-09-13 06:04:31 +02:00
if ((x >= bx) && (x <= tx)) {
2015-09-11 12:09:22 +02:00
final int z = loc.getBlockZ();
2015-09-13 06:04:31 +02:00
if ((z >= bz) && (z <= tz)) {
entity.remove();
}
}
return false;
}
});
2015-07-30 16:25:16 +02:00
}
2015-09-13 06:04:31 +02:00
2015-10-07 08:33:33 +02:00
@Override
public void swap(Location bot1, Location top1, Location bot2, Location top2, Runnable whenDone) {
// TODO swap region
throw new UnsupportedOperationException("NOT IMPLEMENTED YET");
2015-10-07 08:33:33 +02:00
}
@Override
public void unloadChunk(String world, ChunkLoc loc, boolean save, boolean safe) {
final World worldObj = SpongeUtil.getWorld(world);
final Optional<Chunk> chunk = worldObj.getChunk(loc.x << 4, 0, loc.z << 4);
if (chunk.isPresent()) {
worldObj.unloadChunk(chunk.get());
}
}
@Override
public boolean regenerateRegion(Location pos1, Location pos2, boolean ignoreAugment, Runnable whenDone) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("NOT IMPLEMENTED YET");
}
2015-07-30 16:25:16 +02:00
}