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

177 lines
6.9 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 18:04:23 +01:00
import com.intellectualcrafters.plot.PS;
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;
2016-02-23 18:04:23 +01:00
import com.intellectualcrafters.plot.util.ReflectionUtils;
import com.intellectualcrafters.plot.util.SetQueue;
2016-02-23 15:55:40 +01:00
import com.intellectualcrafters.plot.util.TaskManager;
2016-02-23 18:04:23 +01:00
import net.minecraft.world.ChunkCoordIntPair;
import net.minecraft.world.chunk.IChunkProvider;
import net.minecraft.world.gen.ChunkProviderServer;
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 java.lang.reflect.Field;
import java.util.Arrays;
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();
2016-02-23 18:04:23 +01:00
final World world = SpongeUtil.getWorld(pos1.getWorld());
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-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) {
2016-02-23 18:04:23 +01:00
final World spongeWorld = SpongeUtil.getWorld(world);
final net.minecraft.world.World nmsWorld = (net.minecraft.world.World) spongeWorld;
final Optional<Chunk> chunkOpt = spongeWorld.getChunk(loc.x, 0, loc.z);
if (chunkOpt.isPresent()) {
2016-02-23 18:04:23 +01:00
try {
Chunk spongeChunk = chunkOpt.get();
IChunkProvider provider = nmsWorld.getChunkProvider();
if (!(provider instanceof ChunkProviderServer)) {
PS.debug("Not valid world generator for: " + world);
return;
}
ChunkProviderServer chunkServer = (ChunkProviderServer) provider;
IChunkProvider chunkProvider = chunkServer.serverChunkGenerator;
long pos = ChunkCoordIntPair.chunkXZ2Int(loc.x, loc.z);
2016-02-23 18:04:23 +01:00
net.minecraft.world.chunk.Chunk mcChunk = (net.minecraft.world.chunk.Chunk) spongeChunk;
if (chunkServer.chunkExists(loc.x, loc.z)) {
mcChunk = chunkServer.loadChunk(loc.x, loc.z);
2016-02-23 18:04:23 +01:00
mcChunk.onChunkUnload();
}
Field fieldDroppedChunksSet;
try {
2016-03-19 19:07:55 +01:00
fieldDroppedChunksSet = chunkServer.getClass().getField("droppedChunksSet");
} catch (Throwable t) {
2016-03-19 19:07:55 +01:00
fieldDroppedChunksSet = ReflectionUtils.findField(chunkServer.getClass(), Set.class);
}
Set<Long> set = (Set<Long>) fieldDroppedChunksSet.get(chunkServer);
2016-02-23 18:04:23 +01:00
set.remove(pos);
chunkServer.id2ChunkMap.remove(pos);
mcChunk = chunkProvider.provideChunk(loc.x, loc.z);
chunkServer.id2ChunkMap.add(pos, mcChunk);
chunkServer.loadedChunks.add(mcChunk);
2016-02-23 18:04:23 +01:00
if (mcChunk != null) {
mcChunk.onChunkLoad();
mcChunk.populateChunk(chunkProvider, chunkProvider, loc.x, loc.z);
SetQueue.IMP.queue.sendChunk(world, Arrays.asList(loc));
}
else {
PS.debug("CHUNK IS NULL!?");
2016-02-23 18:04:23 +01:00
}
} catch (Throwable e){
e.printStackTrace();
}
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");
}
2016-03-19 19:07:55 +01:00
}