2015-07-28 08:06:19 +02:00
|
|
|
package com.plotsquared.bukkit.util;
|
2015-02-21 04:43:08 +01:00
|
|
|
|
2015-07-30 16:25:16 +02:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashSet;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Random;
|
2015-07-28 08:06:19 +02:00
|
|
|
|
2015-02-21 04:43:08 +01:00
|
|
|
import org.bukkit.Bukkit;
|
2015-07-03 04:11:41 +02:00
|
|
|
import org.bukkit.Material;
|
2015-02-21 04:43:08 +01:00
|
|
|
import org.bukkit.World;
|
2015-06-26 09:37:59 +02:00
|
|
|
import org.bukkit.block.Biome;
|
2015-02-21 04:43:08 +01:00
|
|
|
import org.bukkit.block.Block;
|
2015-06-26 09:37:59 +02:00
|
|
|
import org.bukkit.generator.ChunkGenerator;
|
|
|
|
import org.bukkit.generator.ChunkGenerator.BiomeGrid;
|
2015-06-26 11:46:06 +02:00
|
|
|
import org.bukkit.material.Directional;
|
|
|
|
import org.bukkit.material.MaterialData;
|
2015-02-21 04:43:08 +01:00
|
|
|
|
2015-07-30 16:25:16 +02:00
|
|
|
import com.intellectualcrafters.plot.PS;
|
|
|
|
import com.intellectualcrafters.plot.flag.Flag;
|
|
|
|
import com.intellectualcrafters.plot.flag.FlagManager;
|
|
|
|
import com.intellectualcrafters.plot.generator.HybridUtils;
|
|
|
|
import com.intellectualcrafters.plot.object.ChunkLoc;
|
|
|
|
import com.intellectualcrafters.plot.object.Location;
|
|
|
|
import com.intellectualcrafters.plot.object.Plot;
|
|
|
|
import com.intellectualcrafters.plot.object.PlotAnalysis;
|
|
|
|
import com.intellectualcrafters.plot.object.PlotBlock;
|
|
|
|
import com.intellectualcrafters.plot.object.RunnableVal;
|
|
|
|
import com.intellectualcrafters.plot.util.MainUtil;
|
|
|
|
import com.intellectualcrafters.plot.util.MathMan;
|
|
|
|
import com.intellectualcrafters.plot.util.TaskManager;
|
2015-02-21 04:43:08 +01:00
|
|
|
|
|
|
|
public class BukkitHybridUtils extends HybridUtils {
|
2015-07-03 11:30:26 +02:00
|
|
|
|
2015-06-26 09:37:59 +02:00
|
|
|
@Override
|
2015-07-18 05:19:36 +02:00
|
|
|
public void analyzePlot(final Plot plot, final RunnableVal<PlotAnalysis> whenDone) {
|
2015-06-26 09:37:59 +02:00
|
|
|
// int diff, int variety, int verticies, int rotation, int height_sd
|
2015-07-03 11:30:26 +02:00
|
|
|
|
2015-06-26 09:37:59 +02:00
|
|
|
/*
|
|
|
|
* diff: compare to base by looping through all blocks
|
|
|
|
* variety: add to hashset for each plotblock
|
|
|
|
* height_sd: loop over all blocks and get top block
|
2015-07-03 11:30:26 +02:00
|
|
|
*
|
2015-06-26 09:37:59 +02:00
|
|
|
* verticies: store air map and compare with neighbours
|
|
|
|
* for each block check the adjacent
|
|
|
|
* - Store all blocks then go through in second loop
|
|
|
|
* - recheck each block
|
2015-07-03 11:30:26 +02:00
|
|
|
*
|
2015-06-26 09:37:59 +02:00
|
|
|
*/
|
2015-06-28 02:54:57 +02:00
|
|
|
final World world = Bukkit.getWorld(plot.world);
|
|
|
|
final ChunkGenerator gen = world.getGenerator();
|
|
|
|
if (gen == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final BiomeGrid base = new BiomeGrid() { @Override public void setBiome(int a, int b, Biome c) {} @Override public Biome getBiome(int a, int b) {return null;}};
|
2015-07-03 04:11:41 +02:00
|
|
|
Location bot = MainUtil.getPlotBottomLoc(plot.world, plot.id).add(1, 0, 1);
|
|
|
|
Location top = MainUtil.getPlotTopLoc(plot.world, plot.id);
|
|
|
|
final int bx = bot.getX();
|
|
|
|
final int bz = bot.getZ();
|
|
|
|
final int tx = top.getX();
|
|
|
|
final int tz = top.getZ();
|
|
|
|
final int cbx = bx >> 4;
|
|
|
|
final int cbz = bz >> 4;
|
|
|
|
final int ctx = tx >> 4;
|
|
|
|
final int ctz = tz >> 4;
|
2015-06-28 02:54:57 +02:00
|
|
|
final Random r = new Random();
|
2015-07-30 16:25:16 +02:00
|
|
|
MainUtil.initCache();
|
2015-07-03 04:11:41 +02:00
|
|
|
final int width = tx - bx + 1;
|
|
|
|
final int length = tz - bz + 1;
|
2015-07-03 11:30:26 +02:00
|
|
|
|
2015-07-19 15:12:48 +02:00
|
|
|
System.gc();
|
|
|
|
System.gc();
|
2015-07-03 04:11:41 +02:00
|
|
|
final short[][][] oldblocks = new short[256][width][length];
|
|
|
|
final short[][][] newblocks = new short[256][width][length];
|
2015-07-03 11:30:26 +02:00
|
|
|
|
2015-07-19 15:12:48 +02:00
|
|
|
final List<ChunkLoc> chunks = new ArrayList<>();
|
|
|
|
final List<ChunkLoc> processed_chunks = new ArrayList<>();
|
2015-07-03 11:30:26 +02:00
|
|
|
|
2015-07-03 04:11:41 +02:00
|
|
|
for (int X = cbx; X <= ctx; X++) {
|
|
|
|
for (int Z = cbz; Z <= ctz; Z++) {
|
2015-07-19 15:12:48 +02:00
|
|
|
// Chunk chunk = world.getChunkAt(X, Z);
|
|
|
|
chunks.add(new ChunkLoc(X, Z));
|
2015-06-28 02:54:57 +02:00
|
|
|
}
|
|
|
|
}
|
2015-07-03 04:11:41 +02:00
|
|
|
final Runnable run = new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2015-07-19 15:12:48 +02:00
|
|
|
for (ChunkLoc chunk : processed_chunks) {
|
|
|
|
short[][] result = gen.generateExtBlockSections(world, r, chunk.x, chunk.z, base);
|
|
|
|
int X = chunk.x;
|
|
|
|
int Z = chunk.z;
|
2015-07-17 12:48:13 +02:00
|
|
|
int xb = ((X) << 4) - bx;
|
|
|
|
int zb = ((Z) << 4) - bz;
|
2015-07-03 04:11:41 +02:00
|
|
|
for (int i = 0; i < result.length; i++) {
|
|
|
|
if (result[i] == null) {
|
|
|
|
for (int j = 0; j < 4096; j++) {
|
2015-07-30 16:25:16 +02:00
|
|
|
int x = MainUtil.x_loc[i][j] + xb;
|
2015-07-03 04:11:41 +02:00
|
|
|
if (x < 0 || x >= width) continue;
|
2015-07-30 16:25:16 +02:00
|
|
|
int z = MainUtil.z_loc[i][j] + zb;
|
2015-07-03 04:11:41 +02:00
|
|
|
if (z < 0 || z >= length) continue;
|
2015-07-30 16:25:16 +02:00
|
|
|
int y = MainUtil.y_loc[i][j];
|
2015-07-03 04:11:41 +02:00
|
|
|
oldblocks[y][x][z] = 0;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (int j = 0; j < result[i].length; j++) {
|
2015-07-30 16:25:16 +02:00
|
|
|
int x = MainUtil.x_loc[i][j] + xb;
|
2015-07-03 04:11:41 +02:00
|
|
|
if (x < 0 || x >= width) continue;
|
2015-07-30 16:25:16 +02:00
|
|
|
int z = MainUtil.z_loc[i][j] + zb;
|
2015-07-03 04:11:41 +02:00
|
|
|
if (z < 0 || z >= length) continue;
|
2015-07-30 16:25:16 +02:00
|
|
|
int y = MainUtil.y_loc[i][j];
|
2015-07-03 04:11:41 +02:00
|
|
|
oldblocks[y][x][z] = result[i][j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int size = width * length;
|
|
|
|
int[] changes = new int[size];
|
|
|
|
int[] faces = new int[size];
|
|
|
|
int[] data = new int[size];
|
|
|
|
int[] air = new int[size];
|
|
|
|
int[] variety = new int[size];
|
2015-07-03 11:30:26 +02:00
|
|
|
|
2015-07-03 04:11:41 +02:00
|
|
|
int i = 0;
|
|
|
|
for (int x = 0; x < width;x++) {
|
|
|
|
for (int z = 0; z < length;z++) {
|
|
|
|
HashSet<Short> types = new HashSet<>();
|
|
|
|
for (int y = 0; y < 256; y++) {
|
|
|
|
short old = oldblocks[y][x][z];
|
|
|
|
short now = newblocks[y][x][z];
|
|
|
|
if (old != now) {
|
|
|
|
changes[i]++;
|
|
|
|
}
|
|
|
|
if (now == 0) {
|
|
|
|
air[i]++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// check verticies
|
|
|
|
// modifications_adjacent
|
|
|
|
if (x > 0 && z > 0 && y > 0 && x < width - 1 && z < length - 1 && y < 255) {
|
2015-07-17 12:48:13 +02:00
|
|
|
if (newblocks[y - 1][x][z] == 0) faces[i]++;
|
|
|
|
if (newblocks[y][x - 1][z] == 0) faces[i]++;
|
|
|
|
if (newblocks[y][x][z - 1] == 0) faces[i]++;
|
|
|
|
if (newblocks[y + 1][x][z] == 0) faces[i]++;
|
|
|
|
if (newblocks[y][x + 1][z] == 0) faces[i]++;
|
|
|
|
if (newblocks[y][x][z + 1] == 0) faces[i]++;
|
2015-07-03 04:11:41 +02:00
|
|
|
}
|
2015-07-03 11:30:26 +02:00
|
|
|
|
2015-07-03 04:11:41 +02:00
|
|
|
Material material = Material.getMaterial(now);
|
|
|
|
Class<? extends MaterialData> md = material.getData();
|
|
|
|
if (md.equals(Directional.class)) {
|
|
|
|
data[i] += 8;
|
|
|
|
}
|
|
|
|
else if (!md.equals(MaterialData.class)) {
|
|
|
|
data[i]++;
|
|
|
|
}
|
|
|
|
types.add(now);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
variety[i] = types.size();
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// analyze plot
|
|
|
|
// put in analysis obj
|
2015-07-03 11:30:26 +02:00
|
|
|
|
2015-07-03 04:11:41 +02:00
|
|
|
// run whenDone
|
|
|
|
PlotAnalysis analysis = new PlotAnalysis();
|
2015-07-17 18:50:32 +02:00
|
|
|
analysis.changes = (int) (MathMan.getMean(changes) * 100);
|
|
|
|
analysis.faces = (int) (MathMan.getMean(faces) * 100);
|
|
|
|
analysis.data = (int) (MathMan.getMean(data) * 100);
|
|
|
|
analysis.air = (int) (MathMan.getMean(air) * 100);
|
|
|
|
analysis.variety = (int) (MathMan.getMean(variety) * 100);
|
|
|
|
|
2015-07-18 05:19:36 +02:00
|
|
|
analysis.changes_sd = (int) (MathMan.getSD(changes, analysis.changes));
|
|
|
|
analysis.faces_sd = (int) (MathMan.getSD(faces, analysis.faces));
|
|
|
|
analysis.data_sd = (int) (MathMan.getSD(data, analysis.data));
|
|
|
|
analysis.air_sd = (int) (MathMan.getSD(air, analysis.air));
|
|
|
|
analysis.variety_sd = (int) (MathMan.getSD(variety, analysis.variety));
|
2015-07-17 18:50:32 +02:00
|
|
|
|
2015-07-18 05:19:36 +02:00
|
|
|
List<Integer> result = new ArrayList<>();
|
|
|
|
result.add(analysis.changes);
|
|
|
|
result.add(analysis.faces);
|
|
|
|
result.add(analysis.data);
|
|
|
|
result.add(analysis.air);
|
|
|
|
result.add(analysis.variety);
|
|
|
|
|
|
|
|
result.add(analysis.changes_sd);
|
|
|
|
result.add(analysis.faces_sd);
|
|
|
|
result.add(analysis.data_sd);
|
|
|
|
result.add(analysis.air_sd);
|
|
|
|
result.add(analysis.variety_sd);
|
|
|
|
Flag flag = new Flag(FlagManager.getFlag("analysis"), result);
|
|
|
|
FlagManager.addPlotFlag(plot, flag);
|
2015-07-19 15:12:48 +02:00
|
|
|
System.gc();
|
|
|
|
System.gc();
|
2015-07-03 04:11:41 +02:00
|
|
|
whenDone.value = analysis;
|
|
|
|
whenDone.run();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
System.gc();
|
2015-07-30 16:25:16 +02:00
|
|
|
MainUtil.initCache();
|
2015-07-26 20:38:08 +02:00
|
|
|
TaskManager.index.incrementAndGet();
|
|
|
|
final Integer currentIndex = TaskManager.index.get();
|
2015-06-28 02:54:57 +02:00
|
|
|
final Integer task = TaskManager.runTaskRepeat(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
int index = chunks.size() - 1;
|
|
|
|
if (index == -1) {
|
2015-07-03 14:15:20 +02:00
|
|
|
PS.get().TASK.cancelTask(TaskManager.tasks.get(currentIndex));
|
2015-07-03 04:11:41 +02:00
|
|
|
TaskManager.runTaskAsync(run);
|
2015-06-28 02:54:57 +02:00
|
|
|
return;
|
|
|
|
}
|
2015-07-19 15:12:48 +02:00
|
|
|
ChunkLoc chunk = chunks.remove(0);
|
|
|
|
world.loadChunk(chunk.x, chunk.z);
|
2015-07-03 04:11:41 +02:00
|
|
|
processed_chunks.add(chunk);
|
2015-07-19 15:12:48 +02:00
|
|
|
int X = chunk.x;
|
|
|
|
int Z = chunk.z;
|
2015-06-28 02:54:57 +02:00
|
|
|
int minX;
|
|
|
|
int minZ;
|
|
|
|
int maxX;
|
|
|
|
int maxZ;
|
2015-07-20 07:14:46 +02:00
|
|
|
if (X == cbx) minX = bx & 0x0f;
|
2015-06-28 02:54:57 +02:00
|
|
|
else minX = 0;
|
2015-07-20 07:14:46 +02:00
|
|
|
if (Z == cbz) minZ = bz & 0x0f;
|
2015-06-28 02:54:57 +02:00
|
|
|
else minZ = 0;
|
2015-07-20 07:14:46 +02:00
|
|
|
if (X == ctx) maxX = tx & 0x0f;
|
2015-06-28 02:54:57 +02:00
|
|
|
else maxX = 16;
|
2015-07-20 07:14:46 +02:00
|
|
|
if (Z == ctz) maxZ = tz & 0x0f;
|
2015-06-28 02:54:57 +02:00
|
|
|
else maxZ = 16;
|
2015-07-17 12:48:13 +02:00
|
|
|
|
2015-07-19 15:12:48 +02:00
|
|
|
int cbx = X << 4;
|
|
|
|
int cbz = Z << 4;
|
|
|
|
|
|
|
|
int xb = (cbx) - bx;
|
|
|
|
int zb = (cbz) - bz;
|
2015-07-03 04:11:41 +02:00
|
|
|
for (int x = minX; x <= maxX; x++) {
|
2015-07-19 15:12:48 +02:00
|
|
|
int xx = cbx + cbz;
|
2015-07-03 04:11:41 +02:00
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
2015-07-19 15:12:48 +02:00
|
|
|
int zz = cbz + z;
|
2015-06-26 11:46:06 +02:00
|
|
|
for (int y = 0; y < 256; y++) {
|
2015-07-19 15:12:48 +02:00
|
|
|
Block block = world.getBlockAt(xx, y, zz);
|
|
|
|
int xr = xb + x;
|
|
|
|
int zr = zb + z;
|
|
|
|
newblocks[y][xr][zr] = (short) block.getTypeId();
|
2015-06-26 11:46:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-19 15:12:48 +02:00
|
|
|
world.unloadChunkRequest(chunk.x, chunk.z, true);
|
2015-07-03 11:30:26 +02:00
|
|
|
}
|
2015-06-28 02:54:57 +02:00
|
|
|
}, 1);
|
|
|
|
TaskManager.tasks.put(currentIndex, task);
|
2015-06-26 09:37:59 +02:00
|
|
|
}
|
2015-07-03 11:30:26 +02:00
|
|
|
|
2015-02-21 04:43:08 +01:00
|
|
|
@Override
|
2015-04-01 02:52:22 +02:00
|
|
|
public int checkModified(final String worldname, final int x1, final int x2, final int y1, final int y2, final int z1, final int z2, final PlotBlock[] blocks) {
|
2015-02-23 02:32:27 +01:00
|
|
|
final World world = BukkitUtil.getWorld(worldname);
|
2015-02-21 04:43:08 +01:00
|
|
|
int count = 0;
|
|
|
|
for (int y = y1; y <= y2; y++) {
|
|
|
|
for (int x = x1; x <= x2; x++) {
|
|
|
|
for (int z = z1; z <= z2; z++) {
|
|
|
|
final Block block = world.getBlockAt(x, y, z);
|
|
|
|
final int id = block.getTypeId();
|
|
|
|
boolean same = false;
|
|
|
|
for (final PlotBlock p : blocks) {
|
|
|
|
if (id == p.id) {
|
|
|
|
same = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!same) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
2015-07-03 11:30:26 +02:00
|
|
|
|
2015-02-21 04:43:08 +01:00
|
|
|
@Override
|
2015-02-23 02:32:27 +01:00
|
|
|
public int get_ey(final String worldname, final int sx, final int ex, final int sz, final int ez, final int sy) {
|
|
|
|
final World world = BukkitUtil.getWorld(worldname);
|
|
|
|
final int maxY = world.getMaxHeight();
|
2015-02-21 04:43:08 +01:00
|
|
|
int ey = sy;
|
|
|
|
for (int x = sx; x <= ex; x++) {
|
|
|
|
for (int z = sz; z <= ez; z++) {
|
|
|
|
for (int y = sy; y < maxY; y++) {
|
|
|
|
if (y > ey) {
|
|
|
|
final Block block = world.getBlockAt(x, y, z);
|
|
|
|
if (block.getTypeId() != 0) {
|
|
|
|
ey = y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ey;
|
|
|
|
}
|
|
|
|
}
|