mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Experimenting with String comparison, and help methods
This commit is contained in:
parent
87773d4929
commit
0ff50aed11
@ -277,6 +277,15 @@ public class Plot implements Cloneable {
|
|||||||
PlotHelper.clear(plr, this);
|
PlotHelper.clear(plr, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the plot hashcode
|
||||||
|
*
|
||||||
|
* @return integer. You can easily make this a character array <br>
|
||||||
|
* xI = c[0]
|
||||||
|
* x = c[1 -> xI...]
|
||||||
|
* yI = c[xI ... + 1]
|
||||||
|
* y = c[xI ... + 2 -> yI ...]
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
final int
|
final int
|
||||||
|
@ -11,6 +11,7 @@ import java.util.Collections;
|
|||||||
public class StringComparsion {
|
public class StringComparsion {
|
||||||
|
|
||||||
private String bestMatch;
|
private String bestMatch;
|
||||||
|
private Object bestMatchObject;
|
||||||
private double match;
|
private double match;
|
||||||
|
|
||||||
public StringComparsion(final String input, final Object[] objects) {
|
public StringComparsion(final String input, final Object[] objects) {
|
||||||
@ -19,10 +20,14 @@ public class StringComparsion {
|
|||||||
if ((c = compare(input, o.toString())) > this.match) {
|
if ((c = compare(input, o.toString())) > this.match) {
|
||||||
this.match = c;
|
this.match = c;
|
||||||
this.bestMatch = o.toString();
|
this.bestMatch = o.toString();
|
||||||
|
this.bestMatchObject = o;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Object getMatchObject() {
|
||||||
|
return this.bestMatchObject;
|
||||||
|
}
|
||||||
public String getBestMatch() {
|
public String getBestMatch() {
|
||||||
return this.bestMatch;
|
return this.bestMatch;
|
||||||
}
|
}
|
||||||
|
@ -8,10 +8,10 @@
|
|||||||
|
|
||||||
package com.intellectualcrafters.plot.commands;
|
package com.intellectualcrafters.plot.commands;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import com.intellectualcrafters.plot.C;
|
||||||
import java.util.Arrays;
|
import com.intellectualcrafters.plot.PlayerFunctions;
|
||||||
import java.util.List;
|
import com.intellectualcrafters.plot.PlotMain;
|
||||||
|
import com.intellectualcrafters.plot.StringComparsion;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
import org.bukkit.command.Command;
|
import org.bukkit.command.Command;
|
||||||
import org.bukkit.command.CommandExecutor;
|
import org.bukkit.command.CommandExecutor;
|
||||||
@ -20,10 +20,9 @@ import org.bukkit.command.TabCompleter;
|
|||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.util.ChatPaginator;
|
import org.bukkit.util.ChatPaginator;
|
||||||
|
|
||||||
import com.intellectualcrafters.plot.C;
|
import java.util.ArrayList;
|
||||||
import com.intellectualcrafters.plot.PlayerFunctions;
|
import java.util.Arrays;
|
||||||
import com.intellectualcrafters.plot.PlotMain;
|
import java.util.List;
|
||||||
import com.intellectualcrafters.plot.StringComparsion;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PlotMain command class
|
* PlotMain command class
|
||||||
@ -139,7 +138,10 @@ public class MainCommand implements CommandExecutor, TabCompleter {
|
|||||||
commands[x] = subCommands.get(x).cmd;
|
commands[x] = subCommands.get(x).cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
PlayerFunctions.sendMessage(player, C.DID_YOU_MEAN, new StringComparsion(args[0], commands).getBestMatch());
|
/* Let's try to get a proper usage string */
|
||||||
|
SubCommand command = (SubCommand) new StringComparsion(args[0], commands).getMatchObject();
|
||||||
|
PlayerFunctions.sendMessage(player, C.DID_YOU_MEAN, command.usage.contains("plot") ? command.usage : "/plot " + command.usage);
|
||||||
|
//PlayerFunctions.sendMessage(player, C.DID_YOU_MEAN, new StringComparsion(args[0], commands).getBestMatch());
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -154,34 +156,6 @@ public class MainCommand implements CommandExecutor, TabCompleter {
|
|||||||
return cmds;
|
return cmds;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* // Current page
|
|
||||||
* int page = 0;
|
|
||||||
* //is a page specified? else use 0
|
|
||||||
* if(args.length > 1) {
|
|
||||||
* try {
|
|
||||||
* page = Integer.parseInt(args[1]);
|
|
||||||
* } catch(Exception e) {
|
|
||||||
* page = 0;
|
|
||||||
* }
|
|
||||||
* }
|
|
||||||
* //Get the total pages
|
|
||||||
* int totalPages = ((int) Math.ceil(12 * (PlotMain.getPlotsSorted().size())
|
|
||||||
* / 100));
|
|
||||||
* if(page > totalPages)
|
|
||||||
* page = totalPages;
|
|
||||||
* //Only display 12!
|
|
||||||
* int max = (page * 12) + 12;
|
|
||||||
* if(max > PlotMain.getPlotsSorted().size())
|
|
||||||
* max = PlotMain.getPlotsSorted().size();
|
|
||||||
* StringBuilder string = new StringBuilder();
|
|
||||||
* string.append(C.PLOT_LIST_HEADER_PAGED.s().replaceAll("%cur", page + 1 +
|
|
||||||
* "").replaceAll("%max", totalPages + 1 + "").replaceAll("%word%", "all") +
|
|
||||||
* "\n");
|
|
||||||
* Plot p;
|
|
||||||
* //This might work xD
|
|
||||||
* for (int x = (page * 12); x < max; x++) {
|
|
||||||
*/
|
|
||||||
public static ArrayList<String> helpMenu(final Player player, final SubCommand.CommandCategory category, int page) {
|
public static ArrayList<String> helpMenu(final Player player, final SubCommand.CommandCategory category, int page) {
|
||||||
final List<SubCommand> commands = getCommands(category, player);
|
final List<SubCommand> commands = getCommands(category, player);
|
||||||
// final int totalPages = ((int) Math.ceil(12 * (commands.size()) /
|
// final int totalPages = ((int) Math.ceil(12 * (commands.size()) /
|
||||||
|
Loading…
Reference in New Issue
Block a user