mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-08 09:54:04 +01:00
Improved sorting
This commit is contained in:
parent
0c3b084f73
commit
d5fe805d8f
@ -149,7 +149,21 @@ public class PlotSquared {
|
||||
Collections.sort(newPlots, new Comparator<Plot>() {
|
||||
@Override
|
||||
public int compare(Plot p1, Plot p2) {
|
||||
return p1.hashCode() + p1.world.hashCode() - p2.hashCode() + p2.world.hashCode();
|
||||
int h1 = p1.hashCode();
|
||||
int h2 = p2.hashCode();
|
||||
if (h1 < 0) {
|
||||
h1 = -h1*2 - 1;
|
||||
}
|
||||
else {
|
||||
h1*=2;
|
||||
}
|
||||
if (h2 < 0) {
|
||||
h2 = -h2*2 - 1;
|
||||
}
|
||||
else {
|
||||
h2*=2;
|
||||
}
|
||||
return h1-h2;
|
||||
}
|
||||
});
|
||||
return newPlots;
|
||||
@ -157,21 +171,15 @@ public class PlotSquared {
|
||||
|
||||
public static ArrayList<Plot> sortPlots(Collection<Plot> plots, final String priorityWorld) {
|
||||
ArrayList<Plot> newPlots = new ArrayList<>();
|
||||
newPlots.addAll(plots);
|
||||
Collections.sort(newPlots, new Comparator<Plot>() {
|
||||
@Override
|
||||
public int compare(Plot p1, Plot p2) {
|
||||
int w1 = 0;
|
||||
int w2 = 0;
|
||||
if (!p1.world.equals(priorityWorld)) {
|
||||
w1 = p1.hashCode();
|
||||
HashMap<PlotId, Plot> worldPlots = PlotSquared.plots.get(priorityWorld);
|
||||
if (worldPlots != null) {
|
||||
newPlots.addAll(sortPlots(worldPlots.values()));
|
||||
}
|
||||
if (!p2.world.equals(priorityWorld)) {
|
||||
w2 = p2.hashCode();
|
||||
for (Entry<String, HashMap<PlotId, Plot>> entry : PlotSquared.plots.entrySet()) {
|
||||
if (!entry.getKey().equals(priorityWorld)) {
|
||||
entry.getValue().values();
|
||||
}
|
||||
return p1.hashCode() + w1 - p2.hashCode() - w2;
|
||||
}
|
||||
});
|
||||
return newPlots;
|
||||
}
|
||||
|
||||
|
@ -92,7 +92,7 @@ public class Purge extends SubCommand {
|
||||
return false;
|
||||
}
|
||||
final String worldname = args[1];
|
||||
if (!BlockManager.manager.isWorld(worldname) || !PlotSquared.isPlotWorld(worldname)) {
|
||||
if (!PlotSquared.getAllPlotsRaw().containsKey(worldname)) {
|
||||
MainUtil.sendMessage(plr, "INVALID WORLD");
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user