Jesse is mean

This commit is contained in:
sauilitired 2015-07-03 12:16:20 +02:00
parent d87de11378
commit 53fe1d1a4c
2 changed files with 43 additions and 220 deletions

View File

@ -33,10 +33,8 @@ import java.util.zip.ZipInputStream;
/** /**
* An implementation of the core, * An implementation of the core,
* with a static getter for easy access * with a static getter for easy access
*
* @see com.intellectualcrafters.plot.PlotSquaredMain Structure
*/ */
public class PlotSquared implements PlotSquaredMain { public class PlotSquared {
public static final String MAIN_PERMISSION = "plots.use"; public static final String MAIN_PERMISSION = "plots.use";
protected static PlotSquared instance; protected static PlotSquared instance;
@ -128,7 +126,7 @@ public class PlotSquared implements PlotSquaredMain {
// PlotMe // PlotMe
if (Settings.CONVERT_PLOTME || Settings.CACHE_PLOTME) { if (Settings.CONVERT_PLOTME || Settings.CACHE_PLOTME) {
TaskManager.runTaskLater(new Runnable() { TaskManager.runTaskLater(new Runnable() {
@Override
public void run() { public void run() {
if (IMP.initPlotMeConverter()) { if (IMP.initPlotMeConverter()) {
log("&c=== IMPORTANT ==="); log("&c=== IMPORTANT ===");
@ -162,12 +160,12 @@ public class PlotSquared implements PlotSquaredMain {
getInstance().IMP.log(message); getInstance().IMP.log(message);
} }
@Override
public Database getDatabase() { public Database getDatabase() {
return database; return database;
} }
@Override
public void updatePlot(final Plot plot) { public void updatePlot(final Plot plot) {
final String world = plot.world; final String world = plot.world;
if (!plots.containsKey(world)) { if (!plots.containsKey(world)) {
@ -177,7 +175,7 @@ public class PlotSquared implements PlotSquaredMain {
plots.get(world).put(plot.id, plot); plots.get(world).put(plot.id, plot);
} }
@Override
public PlotWorld getPlotWorld(final String world) { public PlotWorld getPlotWorld(final String world) {
if (plotworlds.containsKey(world)) { if (plotworlds.containsKey(world)) {
return plotworlds.get(world); return plotworlds.get(world);
@ -185,7 +183,7 @@ public class PlotSquared implements PlotSquaredMain {
return null; return null;
} }
@Override
public void addPlotWorld(final String world, final PlotWorld plotworld, final PlotManager manager) { public void addPlotWorld(final String world, final PlotWorld plotworld, final PlotManager manager) {
plotworlds.put(world, plotworld); plotworlds.put(world, plotworld);
plotmanagers.put(world, manager); plotmanagers.put(world, manager);
@ -194,30 +192,30 @@ public class PlotSquared implements PlotSquaredMain {
} }
} }
@Override
public void removePlotWorld(final String world) { public void removePlotWorld(final String world) {
plots.remove(world); plots.remove(world);
plotmanagers.remove(world); plotmanagers.remove(world);
plotworlds.remove(world); plotworlds.remove(world);
} }
@Override
public void removePlotWorldAbs(final String world) { public void removePlotWorldAbs(final String world) {
plotmanagers.remove(world); plotmanagers.remove(world);
plotworlds.remove(world); plotworlds.remove(world);
} }
@Override
public HashMap<String, HashMap<PlotId, Plot>> getAllPlotsRaw() { public HashMap<String, HashMap<PlotId, Plot>> getAllPlotsRaw() {
return plots; return plots;
} }
@Override
public void setAllPlotsRaw(final LinkedHashMap<String, HashMap<PlotId, Plot>> plots) { public void setAllPlotsRaw(final LinkedHashMap<String, HashMap<PlotId, Plot>> plots) {
this.plots = plots; this.plots = plots;
} }
@Override
public Set<Plot> getPlots() { public Set<Plot> getPlots() {
final ArrayList<Plot> newplots = new ArrayList<>(); final ArrayList<Plot> newplots = new ArrayList<>();
for (final Entry<String, HashMap<PlotId, Plot>> entry : plots.entrySet()) { for (final Entry<String, HashMap<PlotId, Plot>> entry : plots.entrySet()) {
@ -228,7 +226,7 @@ public class PlotSquared implements PlotSquaredMain {
return new LinkedHashSet<>(newplots); return new LinkedHashSet<>(newplots);
} }
@Override
public Set<Plot> getPlotsRaw() { public Set<Plot> getPlotsRaw() {
final ArrayList<Plot> newplots = new ArrayList<>(); final ArrayList<Plot> newplots = new ArrayList<>();
for (final Entry<String, HashMap<PlotId, Plot>> entry : plots.entrySet()) { for (final Entry<String, HashMap<PlotId, Plot>> entry : plots.entrySet()) {
@ -237,12 +235,12 @@ public class PlotSquared implements PlotSquaredMain {
return new LinkedHashSet<>(newplots); return new LinkedHashSet<>(newplots);
} }
@Override
public ArrayList<Plot> sortPlots(Collection<Plot> plots) { public ArrayList<Plot> sortPlots(Collection<Plot> plots) {
ArrayList<Plot> newPlots = new ArrayList<>(); ArrayList<Plot> newPlots = new ArrayList<>();
newPlots.addAll(plots); newPlots.addAll(plots);
Collections.sort(newPlots, new Comparator<Plot>() { Collections.sort(newPlots, new Comparator<Plot>() {
@Override
public int compare(Plot p1, Plot p2) { public int compare(Plot p1, Plot p2) {
int h1 = p1.hashCode(); int h1 = p1.hashCode();
int h2 = p2.hashCode(); int h2 = p2.hashCode();
@ -264,7 +262,7 @@ public class PlotSquared implements PlotSquaredMain {
return newPlots; return newPlots;
} }
@Override
public ArrayList<Plot> sortPlots(Collection<Plot> plots, final String priorityWorld) { public ArrayList<Plot> sortPlots(Collection<Plot> plots, final String priorityWorld) {
ArrayList<Plot> newPlots = new ArrayList<>(); ArrayList<Plot> newPlots = new ArrayList<>();
HashMap<PlotId, Plot> worldPlots = this.plots.get(priorityWorld); HashMap<PlotId, Plot> worldPlots = this.plots.get(priorityWorld);
@ -289,7 +287,7 @@ public class PlotSquared implements PlotSquaredMain {
return newPlots; return newPlots;
} }
@Override
public ArrayList<Plot> sortPlotsByWorld(Collection<Plot> plots) { public ArrayList<Plot> sortPlotsByWorld(Collection<Plot> plots) {
ArrayList<Plot> newPlots = new ArrayList<>(); ArrayList<Plot> newPlots = new ArrayList<>();
ArrayList<String> worlds = new ArrayList<>(this.plots.keySet()); ArrayList<String> worlds = new ArrayList<>(this.plots.keySet());
@ -304,19 +302,19 @@ public class PlotSquared implements PlotSquaredMain {
return newPlots; return newPlots;
} }
@Override
public Set<Plot> getPlots(final String world, final String player) { public Set<Plot> getPlots(final String world, final String player) {
final UUID uuid = UUIDHandler.getUUID(player); final UUID uuid = UUIDHandler.getUUID(player);
return getPlots(world, uuid); return getPlots(world, uuid);
} }
@Override
public Set<Plot> getPlots(final String world, final PlotPlayer player) { public Set<Plot> getPlots(final String world, final PlotPlayer player) {
final UUID uuid = player.getUUID(); final UUID uuid = player.getUUID();
return getPlots(world, uuid); return getPlots(world, uuid);
} }
@Override
public Set<Plot> getPlots(final String world, final UUID uuid) { public Set<Plot> getPlots(final String world, final UUID uuid) {
final ArrayList<Plot> myplots = new ArrayList<>(); final ArrayList<Plot> myplots = new ArrayList<>();
for (final Plot plot : getPlots(world).values()) { for (final Plot plot : getPlots(world).values()) {
@ -329,12 +327,12 @@ public class PlotSquared implements PlotSquaredMain {
return new HashSet<>(myplots); return new HashSet<>(myplots);
} }
@Override
public boolean isPlotWorld(final String world) { public boolean isPlotWorld(final String world) {
return (plotworlds.containsKey(world)); return (plotworlds.containsKey(world));
} }
@Override
public PlotManager getPlotManager(final String world) { public PlotManager getPlotManager(final String world) {
if (plotmanagers.containsKey(world)) { if (plotmanagers.containsKey(world)) {
return plotmanagers.get(world); return plotmanagers.get(world);
@ -342,13 +340,13 @@ public class PlotSquared implements PlotSquaredMain {
return null; return null;
} }
@Override
public String[] getPlotWorldsString() { public String[] getPlotWorldsString() {
final Set<String> strings = plots.keySet(); final Set<String> strings = plots.keySet();
return strings.toArray(new String[strings.size()]); return strings.toArray(new String[strings.size()]);
} }
@Override
public HashMap<PlotId, Plot> getPlots(final String world) { public HashMap<PlotId, Plot> getPlots(final String world) {
if (plots.containsKey(world)) { if (plots.containsKey(world)) {
return plots.get(world); return plots.get(world);
@ -356,12 +354,12 @@ public class PlotSquared implements PlotSquaredMain {
return new HashMap<>(); return new HashMap<>();
} }
@Override
public Set<Plot> getPlots(final PlotPlayer player) { public Set<Plot> getPlots(final PlotPlayer player) {
return getPlots(player.getUUID()); return getPlots(player.getUUID());
} }
@Override
public Set<Plot> getPlots(final UUID uuid) { public Set<Plot> getPlots(final UUID uuid) {
final ArrayList<Plot> myplots = new ArrayList<>(); final ArrayList<Plot> myplots = new ArrayList<>();
for (final String world : plots.keySet()) { for (final String world : plots.keySet()) {
@ -378,7 +376,7 @@ public class PlotSquared implements PlotSquaredMain {
return new HashSet<>(myplots); return new HashSet<>(myplots);
} }
@Override
public boolean removePlot(final String world, final PlotId id, final boolean callEvent) { public boolean removePlot(final String world, final PlotId id, final boolean callEvent) {
if (callEvent) { if (callEvent) {
EventUtil.manager.callDelete(world, id); EventUtil.manager.callDelete(world, id);
@ -395,7 +393,7 @@ public class PlotSquared implements PlotSquaredMain {
return true; return true;
} }
@Override
public void loadWorld(final String world, PlotGenerator generator) { public void loadWorld(final String world, PlotGenerator generator) {
PlotWorld plotWorld = getPlotWorld(world); PlotWorld plotWorld = getPlotWorld(world);
if (plotWorld != null) { if (plotWorld != null) {
@ -492,7 +490,7 @@ public class PlotSquared implements PlotSquaredMain {
} }
} }
@Override
public boolean setupPlotWorld(final String world, final String id) { public boolean setupPlotWorld(final String world, final String id) {
if ((id != null) && (id.length() > 0)) { if ((id != null) && (id.length() > 0)) {
// save configuration // save configuration
@ -585,12 +583,12 @@ public class PlotSquared implements PlotSquaredMain {
return true; return true;
} }
@Override
public Connection getConnection() { public Connection getConnection() {
return connection; return connection;
} }
@Override
public void copyFile(String file, String folder) { public void copyFile(String file, String folder) {
try { try {
byte[] buffer = new byte[2048]; byte[] buffer = new byte[2048];
@ -629,7 +627,7 @@ public class PlotSquared implements PlotSquaredMain {
} }
} }
@Override
public void disable() { public void disable() {
try { try {
database.closeConnection(); database.closeConnection();
@ -638,7 +636,7 @@ public class PlotSquared implements PlotSquaredMain {
} }
} }
@Override
public void setupDatabase() { public void setupDatabase() {
if (Settings.DB.USE_MYSQL) { if (Settings.DB.USE_MYSQL) {
try { try {
@ -695,7 +693,7 @@ public class PlotSquared implements PlotSquaredMain {
} }
} }
@Override
public void setupDefaultFlags() { public void setupDefaultFlags() {
final List<String> booleanFlags = Arrays.asList("notify-enter", "notify-leave", "item-drop", "invincible", "instabreak", "drop-protection", "forcefield", "titles", "pve", "pvp", "no-worldedit", "redstone", "keep"); final List<String> booleanFlags = Arrays.asList("notify-enter", "notify-leave", "item-drop", "invincible", "instabreak", "drop-protection", "forcefield", "titles", "pve", "pvp", "no-worldedit", "redstone", "keep");
final List<String> intervalFlags = Arrays.asList("feed", "heal"); final List<String> intervalFlags = Arrays.asList("feed", "heal");
@ -734,7 +732,7 @@ public class PlotSquared implements PlotSquaredMain {
FlagManager.addFlag(new AbstractFlag("break", new FlagValue.PlotBlockListValue())); FlagManager.addFlag(new AbstractFlag("break", new FlagValue.PlotBlockListValue()));
FlagManager.addFlag(new AbstractFlag("use", new FlagValue.PlotBlockListValue())); FlagManager.addFlag(new AbstractFlag("use", new FlagValue.PlotBlockListValue()));
FlagManager.addFlag(new AbstractFlag("gamemode") { FlagManager.addFlag(new AbstractFlag("gamemode") {
@Override
public String parseValueRaw(final String value) { public String parseValueRaw(final String value) {
switch (value) { switch (value) {
case "creative": case "creative":
@ -754,7 +752,7 @@ public class PlotSquared implements PlotSquaredMain {
} }
} }
@Override
public String getValueDesc() { public String getValueDesc() {
return "Flag value must be a gamemode: 'creative' , 'survival' or 'adventure'"; return "Flag value must be a gamemode: 'creative' , 'survival' or 'adventure'";
} }
@ -762,7 +760,7 @@ public class PlotSquared implements PlotSquaredMain {
FlagManager.addFlag(new AbstractFlag("price", new FlagValue.UnsignedDoubleValue())); FlagManager.addFlag(new AbstractFlag("price", new FlagValue.UnsignedDoubleValue()));
FlagManager.addFlag(new AbstractFlag("time", new FlagValue.LongValue())); FlagManager.addFlag(new AbstractFlag("time", new FlagValue.LongValue()));
FlagManager.addFlag(new AbstractFlag("weather") { FlagManager.addFlag(new AbstractFlag("weather") {
@Override
public String parseValueRaw(final String value) { public String parseValueRaw(final String value) {
switch (value) { switch (value) {
case "rain": case "rain":
@ -781,14 +779,14 @@ public class PlotSquared implements PlotSquaredMain {
} }
} }
@Override
public String getValueDesc() { public String getValueDesc() {
return "Flag value must be weather type: 'clear' or 'rain'"; return "Flag value must be weather type: 'clear' or 'rain'";
} }
}); });
} }
@Override
public void setupConfig() { public void setupConfig() {
config.set("version", VERSION); config.set("version", VERSION);
@ -968,7 +966,7 @@ public class PlotSquared implements PlotSquaredMain {
Settings.METRICS = config.getBoolean("metrics"); Settings.METRICS = config.getBoolean("metrics");
} }
@Override
public void setupConfigs() { public void setupConfigs() {
final File folder = new File(IMP.getDirectory() + File.separator + "config"); final File folder = new File(IMP.getDirectory() + File.separator + "config");
if (!folder.exists() && !folder.mkdirs()) { if (!folder.exists() && !folder.mkdirs()) {
@ -1055,7 +1053,7 @@ public class PlotSquared implements PlotSquaredMain {
Settings.DELETE_PLOTS_ON_BAN = config.getBoolean("clear.on.ban"); Settings.DELETE_PLOTS_ON_BAN = config.getBoolean("clear.on.ban");
} }
@Override
public void showDebug() { public void showDebug() {
C.COLOR_1 = "&" + (style.getString("color.1")); C.COLOR_1 = "&" + (style.getString("color.1"));
C.COLOR_2 = "&" + (style.getString("color.2")); C.COLOR_2 = "&" + (style.getString("color.2"));
@ -1093,17 +1091,17 @@ public class PlotSquared implements PlotSquaredMain {
} }
} }
@Override
public double getJavaVersion() { public double getJavaVersion() {
return Double.parseDouble(System.getProperty("java.specification.version")); return Double.parseDouble(System.getProperty("java.specification.version"));
} }
@Override
public Set<String> getPlotWorlds() { public Set<String> getPlotWorlds() {
return plotworlds.keySet(); return plotworlds.keySet();
} }
@Override
public Collection<PlotWorld> getPlotWorldObjects() { public Collection<PlotWorld> getPlotWorldObjects() {
return plotworlds.values(); return plotworlds.values();
} }

View File

@ -1,175 +0,0 @@
package com.intellectualcrafters.plot;
import com.intellectualcrafters.plot.database.Database;
import com.intellectualcrafters.plot.object.*;
import java.sql.Connection;
import java.util.*;
/**
* Core of the PlotSquared Plugin
*/
public interface PlotSquaredMain {
Database getDatabase();
void updatePlot(Plot plot);
PlotWorld getPlotWorld(String world);
void addPlotWorld(String world, PlotWorld plotworld, PlotManager manager);
void removePlotWorld(String world);
void removePlotWorldAbs(String world);
HashMap<String, HashMap<PlotId, Plot>> getAllPlotsRaw();
void setAllPlotsRaw(LinkedHashMap<String, HashMap<PlotId, Plot>> plots);
Set<Plot> getPlots();
Set<Plot> getPlotsRaw();
ArrayList<Plot> sortPlots(Collection<Plot> plots);
ArrayList<Plot> sortPlots(Collection<Plot> plots, String priorityWorld);
ArrayList<Plot> sortPlotsByWorld(Collection<Plot> plots);
Set<Plot> getPlots(String world, String player);
Set<Plot> getPlots(String world, PlotPlayer player);
Set<Plot> getPlots(String world, UUID uuid);
boolean isPlotWorld(String world);
PlotManager getPlotManager(String world);
String[] getPlotWorldsString();
HashMap<PlotId, Plot> getPlots(String world);
Set<Plot> getPlots(PlotPlayer player);
/**
* Get all plots belonging to a specified
* player UUID
*
* @param uuid Player UUID
* @return A set containing the plots
* @see #getPlots(PlotPlayer) Using PlotPlayer rather than UUID
* @see #getPlots(String, UUID) To limit the search to a specific world
* @see #getPlots(String, String) To limit the search to a specific world, and use player names
*/
Set<Plot> getPlots(UUID uuid);
/**
* Remove a plot from the specified plot world
*
* @param world World Name
* @param id Plot ID
* @param callEvent If the plot delete event should be called
* @return true on success | false on failure
*/
boolean removePlot(String world, PlotId id, boolean callEvent);
/**
* Load a world
*
* @param world World Name
* @param generator PlotGenerator Implementation
*/
void loadWorld(String world, PlotGenerator generator);
/**
* Setup a PlotWorld
*
* @param world World Name
* @param id World ID
* @return true on success | false on failure
*/
boolean setupPlotWorld(String world, String id);
/**
* Get the database connection
*
* @see #getDatabase() Get the database implementation
* @return Database connection
*/
Connection getConnection();
/**
* Copy a file into the specified folder
*
* @param file File to copy
* @param folder Folder to copy to
*/
void copyFile(String file, String folder);
/**
* Disable the PlotSquared core
*/
void disable();
/**
* Setup the database configuration file
*/
void setupDatabase();
/**
* Setup the default flags
*/
void setupDefaultFlags();
/**
* Setup the global configuration file
*/
void setupConfig();
/**
* Setup all configuration classes
*
* @see #setupDatabase() Setup the database configuration file
* @see #setupConfig() Setup the general configuration file
* @see #setupDefaultFlags() Setup the default flags
*/
void setupConfigs();
void showDebug();
/**
* Get the current java version as
* a double
* @code {
* 1.7 = Java 7
* 1.8 = Java 8
* etc...
* }
*
* @return Java version as a double
*/
double getJavaVersion();
/**
* Get a set containing the names of
* all PlotWorlds
*
* @see #getPlotWorldObjects() To get the actual objects
*
* @return A set containing the names of all PlotWorlds
*/
Set<String> getPlotWorlds();
/**
* Get a collection containing the
* PlotWorld objects
*
* @see #getPlotWorlds() To get the names of the worlds
* @see PlotWorld The returned object
*
* @return Collection containing PlotWorld's
*/
Collection<PlotWorld> getPlotWorldObjects();
}