mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-23 21:56:45 +01:00
194 lines
8.8 KiB
Java
194 lines
8.8 KiB
Java
package com.plotsquared.bukkit.util;
|
|
|
|
import static com.intellectualcrafters.plot.util.ReflectionUtils.getRefClass;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Collection;
|
|
import java.util.HashMap;
|
|
import java.util.HashSet;
|
|
import java.util.List;
|
|
import java.util.Map.Entry;
|
|
|
|
import org.bukkit.Bukkit;
|
|
import org.bukkit.Chunk;
|
|
import org.bukkit.World;
|
|
import org.bukkit.entity.Player;
|
|
|
|
import com.intellectualcrafters.plot.PS;
|
|
import com.intellectualcrafters.plot.object.ChunkLoc;
|
|
import com.intellectualcrafters.plot.object.Location;
|
|
import com.intellectualcrafters.plot.object.Plot;
|
|
import com.intellectualcrafters.plot.object.PlotPlayer;
|
|
import com.intellectualcrafters.plot.util.ReflectionUtils.RefClass;
|
|
import com.intellectualcrafters.plot.util.ReflectionUtils.RefConstructor;
|
|
import com.intellectualcrafters.plot.util.ReflectionUtils.RefField;
|
|
import com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod;
|
|
import com.intellectualcrafters.plot.util.TaskManager;
|
|
import com.intellectualcrafters.plot.util.UUIDHandler;
|
|
import com.plotsquared.bukkit.object.BukkitPlayer;
|
|
|
|
/**
|
|
* An utility that can be used to send chunks, rather than using bukkit code to do so (uses heavy NMS)
|
|
*
|
|
|
|
*/
|
|
public class SendChunk {
|
|
|
|
// // Ref Class
|
|
private final RefClass classEntityPlayer = getRefClass("{nms}.EntityPlayer");
|
|
private final RefClass classMapChunk = getRefClass("{nms}.PacketPlayOutMapChunk");
|
|
private final RefClass classPacket = getRefClass("{nms}.Packet");
|
|
private final RefClass classConnection = getRefClass("{nms}.PlayerConnection");
|
|
private final RefClass classChunk = getRefClass("{nms}.Chunk");
|
|
private final RefClass classCraftPlayer = getRefClass("{cb}.entity.CraftPlayer");
|
|
private final RefClass classCraftChunk = getRefClass("{cb}.CraftChunk");
|
|
private final RefMethod methodGetHandlePlayer;
|
|
private final RefMethod methodGetHandleChunk;
|
|
private final RefConstructor MapChunk;
|
|
private final RefField connection;
|
|
private final RefMethod send;
|
|
private final RefMethod methodInitLighting;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @throws NoSuchMethodException
|
|
*/
|
|
public SendChunk() throws NoSuchMethodException {
|
|
methodGetHandlePlayer = classCraftPlayer.getMethod("getHandle");
|
|
methodGetHandleChunk = classCraftChunk.getMethod("getHandle");
|
|
methodInitLighting = classChunk.getMethod("initLighting");
|
|
MapChunk = classMapChunk.getConstructor(classChunk.getRealClass(), boolean.class, int.class);
|
|
connection = classEntityPlayer.getField("playerConnection");
|
|
send = classConnection.getMethod("sendPacket", classPacket.getRealClass());
|
|
}
|
|
|
|
public void sendChunk(final Collection<Chunk> input) {
|
|
final HashSet<Chunk> chunks = new HashSet<Chunk>(input);
|
|
final HashMap<String, ArrayList<Chunk>> map = new HashMap<>();
|
|
final int view = Bukkit.getServer().getViewDistance();
|
|
for (final Chunk chunk : chunks) {
|
|
final String world = chunk.getWorld().getName();
|
|
ArrayList<Chunk> list = map.get(world);
|
|
if (list == null) {
|
|
list = new ArrayList<>();
|
|
map.put(world, list);
|
|
}
|
|
list.add(chunk);
|
|
final Object c = methodGetHandleChunk.of(chunk).call();
|
|
methodInitLighting.of(c).call();
|
|
}
|
|
for (Entry<String, PlotPlayer> entry : UUIDHandler.getPlayers().entrySet()) {
|
|
PlotPlayer pp = entry.getValue();
|
|
final Plot plot = pp.getCurrentPlot();
|
|
Location loc = null;
|
|
String world;
|
|
if (plot != null) {
|
|
world = plot.area.worldname;
|
|
} else {
|
|
loc = pp.getLocation();
|
|
world = loc.getWorld();
|
|
}
|
|
final ArrayList<Chunk> list = map.get(world);
|
|
if (list == null) {
|
|
continue;
|
|
}
|
|
if (loc == null) {
|
|
loc = pp.getLocation();
|
|
}
|
|
final int cx = loc.getX() >> 4;
|
|
final int cz = loc.getZ() >> 4;
|
|
final Player player = ((BukkitPlayer) pp).player;
|
|
final Object entity = methodGetHandlePlayer.of(player).call();
|
|
|
|
for (final Chunk chunk : list) {
|
|
final int dx = Math.abs(cx - chunk.getX());
|
|
final int dz = Math.abs(cz - chunk.getZ());
|
|
if ((dx > view) || (dz > view)) {
|
|
continue;
|
|
}
|
|
final Object c = methodGetHandleChunk.of(chunk).call();
|
|
chunks.remove(chunk);
|
|
final Object con = connection.of(entity).get();
|
|
// if (dx != 0 || dz != 0) {
|
|
// Object packet = MapChunk.create(c, true, 0);
|
|
// send.of(con).call(packet);
|
|
// }
|
|
final Object packet = MapChunk.create(c, true, 65535);
|
|
send.of(con).call(packet);
|
|
}
|
|
}
|
|
for (final Chunk chunk : chunks) {
|
|
TaskManager.runTask(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
try {
|
|
chunk.unload(true, false);
|
|
} catch (final Throwable e) {
|
|
final String worldname = chunk.getWorld().getName();
|
|
PS.debug("$4Could not save chunk: " + worldname + ";" + chunk.getX() + ";" + chunk.getZ());
|
|
PS.debug("$3 - $4File may be open in another process (e.g. MCEdit)");
|
|
PS.debug("$3 - $4" + worldname + "/level.dat or " + worldname + "/level_old.dat may be corrupt (try repairing or removing these)");
|
|
}
|
|
}
|
|
});
|
|
}
|
|
//
|
|
//
|
|
// int diffx, diffz;
|
|
// << 4;
|
|
// for (final Chunk chunk : chunks) {
|
|
// if (!chunk.isLoaded()) {
|
|
// continue;
|
|
// }
|
|
// boolean unload = true;
|
|
// final Object c = methodGetHandle.of(chunk).call();
|
|
// final Object w = world.of(c).get();
|
|
// final Object p = players.of(w).get();
|
|
// for (final Object ep : (List<Object>) p) {
|
|
// final int x = ((Double) locX.of(ep).get()).intValue();
|
|
// final int z = ((Double) locZ.of(ep).get()).intValue();
|
|
// diffx = Math.abs(x - (chunk.getX() << 4));
|
|
// diffz = Math.abs(z - (chunk.getZ() << 4));
|
|
// if ((diffx <= view) && (diffz <= view)) {
|
|
// unload = false;
|
|
// if (v1_7_10) {
|
|
// chunk.getWorld().refreshChunk(chunk.getX(), chunk.getZ());
|
|
// chunk.load(true);
|
|
// }
|
|
// else {
|
|
// final Object pair = ChunkCoordIntPairCon.create(chunk.getX(), chunk.getZ());
|
|
// final Object pq = chunkCoordIntPairQueue.of(ep).get();
|
|
// ((List) pq).add(pair);
|
|
// }
|
|
// }
|
|
// }
|
|
// if (unload) {
|
|
// TaskManager.runTask(new Runnable() {
|
|
// @Override
|
|
// public void run() {
|
|
// try {
|
|
// chunk.unload(true, true);
|
|
// }
|
|
// catch (Exception e) {
|
|
// String worldname = chunk.getWorld().getName();
|
|
// PS.debug("$4Could not save chunk: " + worldname + ";" + chunk.getX() + ";" + chunk.getZ());
|
|
// PS.debug("$3 - $4File may be open in another process (e.g. MCEdit)");
|
|
// PS.debug("$3 - $4" + worldname + "/level.dat or " + worldname + "level_old.dat may be corrupt (try repairing or removing these)");
|
|
// }
|
|
// }
|
|
// });
|
|
// }
|
|
//
|
|
// }
|
|
}
|
|
|
|
public void sendChunk(final String worldname, final List<ChunkLoc> locs) {
|
|
final World myworld = Bukkit.getWorld(worldname);
|
|
final ArrayList<Chunk> chunks = new ArrayList<>();
|
|
for (final ChunkLoc loc : locs) {
|
|
chunks.add(myworld.getChunkAt(loc.x, loc.z));
|
|
}
|
|
sendChunk(chunks);
|
|
}
|
|
}
|