2015-07-30 19:24:01 +02:00
|
|
|
package com.plotsquared.sponge.util;
|
2015-07-30 16:25:16 +02:00
|
|
|
|
2015-10-07 08:33:33 +02:00
|
|
|
import java.util.Optional;
|
2015-09-22 15:23:28 +02:00
|
|
|
import java.util.Set;
|
2015-10-07 08:33:33 +02:00
|
|
|
import java.util.function.Predicate;
|
2015-07-30 16:25:16 +02:00
|
|
|
|
2015-08-11 20:04:17 +02:00
|
|
|
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;
|
|
|
|
|
|
|
|
import com.intellectualcrafters.plot.object.ChunkLoc;
|
|
|
|
import com.intellectualcrafters.plot.object.Location;
|
|
|
|
import com.intellectualcrafters.plot.object.Plot;
|
|
|
|
import com.intellectualcrafters.plot.object.PlotBlock;
|
|
|
|
import com.intellectualcrafters.plot.util.ChunkManager;
|
|
|
|
import com.intellectualcrafters.plot.util.SetBlockQueue.ChunkWrapper;
|
2015-07-30 19:24:01 +02:00
|
|
|
import com.intellectualcrafters.plot.util.TaskManager;
|
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 void setChunk(final ChunkWrapper loc, final PlotBlock[][] result) {
|
2015-07-30 16:25:16 +02:00
|
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
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 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);
|
2015-08-11 20:04:17 +02:00
|
|
|
final int bx = pos1.getX();
|
|
|
|
final int bz = pos1.getZ();
|
|
|
|
final int tx = pos2.getX();
|
|
|
|
final int tz = pos2.getZ();
|
2015-10-27 00:57:34 +01:00
|
|
|
final int[] count = new int[6];
|
2015-09-13 06:04:31 +02:00
|
|
|
world.getEntities(new Predicate<Entity>() {
|
2015-08-11 20:04:17 +02:00
|
|
|
@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)) {
|
2015-08-11 20:04:17 +02:00
|
|
|
count[0]++;
|
2015-09-13 06:04:31 +02:00
|
|
|
if (entity instanceof Living) {
|
2015-08-11 20:04:17 +02:00
|
|
|
count[3]++;
|
2015-09-13 06:04:31 +02:00
|
|
|
if (entity instanceof Animal) {
|
2015-08-11 20:04:17 +02:00
|
|
|
count[1]++;
|
2015-09-13 06:04:31 +02:00
|
|
|
} else if (entity instanceof Monster) {
|
2015-08-11 20:04:17 +02:00
|
|
|
count[2]++;
|
|
|
|
}
|
2015-09-13 06:04:31 +02:00
|
|
|
} else {
|
2015-08-11 20:04:17 +02:00
|
|
|
count[4]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
2015-09-13 06:04:31 +02:00
|
|
|
|
2015-08-11 20:04:17 +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> chunk = worldObj.getChunk(loc.x << 4, 0, loc.z << 4);
|
2015-09-13 06:04:31 +02:00
|
|
|
if (chunk.isPresent()) {
|
2015-07-30 16:25:16 +02:00
|
|
|
// TODO regenerate chunk
|
|
|
|
}
|
|
|
|
}
|
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 boolean regenerateRegion(final Location pos1, final Location pos2, final Runnable whenDone) {
|
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);
|
2015-08-11 20:04:17 +02:00
|
|
|
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>() {
|
2015-08-11 20:04:17 +02:00
|
|
|
@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)) {
|
2015-08-11 20:04:17 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@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());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-30 16:25:16 +02:00
|
|
|
}
|