2011-10-08 22:03:44 +02:00
|
|
|
package com.massivecraft.factions;
|
|
|
|
|
2014-10-25 20:22:41 +02:00
|
|
|
import com.google.gson.GsonBuilder;
|
|
|
|
import com.google.gson.reflect.TypeToken;
|
2012-01-08 00:27:03 +01:00
|
|
|
import com.massivecraft.factions.cmd.CmdAutoHelp;
|
|
|
|
import com.massivecraft.factions.cmd.FCmdRoot;
|
2014-04-05 22:42:01 +02:00
|
|
|
import com.massivecraft.factions.integration.Econ;
|
2014-05-19 18:44:15 +02:00
|
|
|
import com.massivecraft.factions.integration.Essentials;
|
2014-04-05 22:42:01 +02:00
|
|
|
import com.massivecraft.factions.integration.Worldguard;
|
2014-04-04 20:55:21 +02:00
|
|
|
import com.massivecraft.factions.listeners.*;
|
2011-10-08 22:03:44 +02:00
|
|
|
import com.massivecraft.factions.struct.ChatMode;
|
2014-10-25 20:22:41 +02:00
|
|
|
import com.massivecraft.factions.util.*;
|
2011-10-08 22:03:44 +02:00
|
|
|
import com.massivecraft.factions.zcore.MPlugin;
|
2012-03-11 17:41:56 +01:00
|
|
|
import com.massivecraft.factions.zcore.util.TextUtil;
|
2014-10-19 07:37:25 +02:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.player.AsyncPlayerChatEvent;
|
|
|
|
|
|
|
|
import java.lang.reflect.Modifier;
|
|
|
|
import java.lang.reflect.Type;
|
2014-10-25 20:22:41 +02:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.HashSet;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Set;
|
2014-04-04 20:55:21 +02:00
|
|
|
import java.util.logging.Level;
|
2011-10-08 22:03:44 +02:00
|
|
|
|
2012-02-02 22:20:40 +01:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public class P extends MPlugin {
|
2014-08-05 17:17:27 +02:00
|
|
|
|
|
|
|
// Our single plugin instance.
|
|
|
|
// Single 4 life.
|
2014-04-04 20:55:21 +02:00
|
|
|
public static P p;
|
|
|
|
|
|
|
|
// Listeners
|
|
|
|
public final FactionsPlayerListener playerListener;
|
|
|
|
public final FactionsChatListener chatListener;
|
|
|
|
public final FactionsEntityListener entityListener;
|
|
|
|
public final FactionsExploitListener exploitListener;
|
|
|
|
public final FactionsBlockListener blockListener;
|
|
|
|
|
2014-08-05 17:17:27 +02:00
|
|
|
// Persistence related
|
2014-04-04 20:55:21 +02:00
|
|
|
private boolean locked = false;
|
|
|
|
|
|
|
|
public boolean getLocked() {
|
|
|
|
return this.locked;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setLocked(boolean val) {
|
2014-07-01 22:10:18 +02:00
|
|
|
this.locked = val;
|
|
|
|
this.setAutoSave(val);
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private Integer AutoLeaveTask = null;
|
|
|
|
|
|
|
|
// Commands
|
|
|
|
public FCmdRoot cmdBase;
|
|
|
|
public CmdAutoHelp cmdAutoHelp;
|
|
|
|
|
|
|
|
public P() {
|
2014-07-01 22:10:18 +02:00
|
|
|
p = this;
|
|
|
|
this.playerListener = new FactionsPlayerListener(this);
|
|
|
|
this.chatListener = new FactionsChatListener(this);
|
|
|
|
this.entityListener = new FactionsEntityListener(this);
|
|
|
|
this.exploitListener = new FactionsExploitListener();
|
|
|
|
this.blockListener = new FactionsBlockListener(this);
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onEnable() {
|
2014-07-01 22:10:18 +02:00
|
|
|
if (!preEnable()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.loadSuccessful = false;
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
// Load Conf from disk
|
2014-07-01 22:10:18 +02:00
|
|
|
Conf.load();
|
|
|
|
Essentials.setup();
|
2014-10-19 07:37:25 +02:00
|
|
|
FPlayers.getInstance().load();
|
|
|
|
Factions.getInstance().load();
|
|
|
|
for (FPlayer fPlayer : FPlayers.getInstance().getAllFPlayers()) {
|
|
|
|
Faction faction = Factions.getInstance().getFactionById(fPlayer.getFactionId());
|
|
|
|
if (faction == null) {
|
|
|
|
log("Invalid faction id on " + fPlayer.getName() + ":" + fPlayer.getFactionId());
|
|
|
|
fPlayer.resetFactionData(false);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
faction.addFPlayer(fPlayer);
|
|
|
|
}
|
|
|
|
Board.getInstance().load();
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
// Add Base Commands
|
2014-07-01 22:10:18 +02:00
|
|
|
this.cmdBase = new FCmdRoot();
|
|
|
|
this.cmdAutoHelp = new CmdAutoHelp();
|
|
|
|
this.getBaseCommands().add(cmdBase);
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
Econ.setup();
|
|
|
|
|
|
|
|
if (Conf.worldGuardChecking || Conf.worldGuardBuildPriority) {
|
|
|
|
Worldguard.init(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// start up task which runs the autoLeaveAfterDaysOfInactivity routine
|
|
|
|
startAutoLeaveTask(false);
|
|
|
|
|
|
|
|
// Register Event Handlers
|
|
|
|
getServer().getPluginManager().registerEvents(playerListener, this);
|
|
|
|
getServer().getPluginManager().registerEvents(chatListener, this);
|
|
|
|
getServer().getPluginManager().registerEvents(entityListener, this);
|
|
|
|
getServer().getPluginManager().registerEvents(exploitListener, this);
|
|
|
|
getServer().getPluginManager().registerEvents(blockListener, this);
|
|
|
|
|
2014-08-05 17:17:27 +02:00
|
|
|
saveDefaultConfig();
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
// since some other plugins execute commands directly through this command interface, provide it
|
|
|
|
this.getCommand(this.refCommand).setExecutor(this);
|
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
postEnable();
|
|
|
|
this.loadSuccessful = true;
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public GsonBuilder getGsonBuilder() {
|
2014-10-18 10:54:45 +02:00
|
|
|
Type mapFLocToStringSetType = new TypeToken<Map<FLocation, Set<String>>>() {}.getType();
|
2014-07-01 21:52:40 +02:00
|
|
|
|
2014-10-20 13:31:11 +02:00
|
|
|
return new GsonBuilder().setPrettyPrinting().disableHtmlEscaping().excludeFieldsWithModifiers(Modifier.TRANSIENT, Modifier.VOLATILE).registerTypeAdapter(LazyLocation.class, new MyLocationTypeAdapter()).registerTypeAdapter(mapFLocToStringSetType, new MapFLocToStringSetTypeAdapter()).registerTypeAdapterFactory(EnumTypeAdapter.ENUM_FACTORY);
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDisable() {
|
|
|
|
// only save data if plugin actually completely loaded successfully
|
|
|
|
if (this.loadSuccessful) {
|
2014-07-01 22:10:18 +02:00
|
|
|
Conf.save();
|
|
|
|
}
|
|
|
|
if (AutoLeaveTask != null) {
|
|
|
|
this.getServer().getScheduler().cancelTask(AutoLeaveTask);
|
|
|
|
AutoLeaveTask = null;
|
|
|
|
}
|
2014-08-05 17:17:27 +02:00
|
|
|
|
|
|
|
cmdBase.cmdSB.save();
|
2014-07-01 22:10:18 +02:00
|
|
|
super.onDisable();
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void startAutoLeaveTask(boolean restartIfRunning) {
|
|
|
|
if (AutoLeaveTask != null) {
|
2014-07-01 22:10:18 +02:00
|
|
|
if (!restartIfRunning) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.getServer().getScheduler().cancelTask(AutoLeaveTask);
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Conf.autoLeaveRoutineRunsEveryXMinutes > 0.0) {
|
|
|
|
long ticks = (long) (20 * 60 * Conf.autoLeaveRoutineRunsEveryXMinutes);
|
|
|
|
AutoLeaveTask = getServer().getScheduler().scheduleSyncRepeatingTask(this, new AutoLeaveTask(), ticks, ticks);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void postAutoSave() {
|
2014-10-19 07:37:25 +02:00
|
|
|
Board.getInstance().forceSave();
|
2014-07-01 22:10:18 +02:00
|
|
|
Conf.save();
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean logPlayerCommands() {
|
|
|
|
return Conf.logPlayerCommands;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean handleCommand(CommandSender sender, String commandString, boolean testOnly) {
|
2014-07-02 08:37:42 +02:00
|
|
|
return sender instanceof Player && FactionsPlayerListener.preventCommand(commandString, (Player) sender) || super.handleCommand(sender, commandString, testOnly);
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] split) {
|
|
|
|
// if bare command at this point, it has already been handled by MPlugin's command listeners
|
2014-07-01 22:10:18 +02:00
|
|
|
if (split == null || split.length == 0) {
|
2014-07-12 22:50:56 +02:00
|
|
|
return handleCommand(sender, "/f help", false);
|
2014-07-01 22:10:18 +02:00
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
// otherwise, needs to be handled; presumably another plugin directly ran the command
|
|
|
|
String cmd = Conf.baseCommandAliases.isEmpty() ? "/f" : "/" + Conf.baseCommandAliases.get(0);
|
|
|
|
return handleCommand(sender, cmd + " " + TextUtil.implode(Arrays.asList(split), " "), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// Functions for other plugins to hook into
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
// This value will be updated whenever new hooks are added
|
|
|
|
public int hookSupportVersion() {
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If another plugin is handling insertion of chat tags, this should be used to notify Factions
|
|
|
|
public void handleFactionTagExternally(boolean notByFactions) {
|
|
|
|
Conf.chatTagHandledByAnotherPlugin = notByFactions;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Simply put, should this chat event be left for Factions to handle? For now, that means players with Faction Chat
|
|
|
|
// enabled or use of the Factions f command without a slash; combination of isPlayerFactionChatting() and isFactionsCommand()
|
|
|
|
|
|
|
|
public boolean shouldLetFactionsHandleThisChat(AsyncPlayerChatEvent event) {
|
2014-07-02 08:37:42 +02:00
|
|
|
return event != null && (isPlayerFactionChatting(event.getPlayer()) || isFactionsCommand(event.getMessage()));
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Does player have Faction Chat enabled? If so, chat plugins should preferably not do channels,
|
|
|
|
// local chat, or anything else which targets individual recipients, so Faction Chat can be done
|
|
|
|
public boolean isPlayerFactionChatting(Player player) {
|
2014-07-01 22:10:18 +02:00
|
|
|
if (player == null) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-10-19 07:37:25 +02:00
|
|
|
FPlayer me = FPlayers.getInstance().getByPlayer(player);
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2014-07-02 08:37:42 +02:00
|
|
|
return me != null && me.getChatMode().isAtLeast(ChatMode.ALLIANCE);
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Is this chat message actually a Factions command, and thus should be left alone by other plugins?
|
|
|
|
|
|
|
|
// TODO: GET THIS BACK AND WORKING
|
|
|
|
|
|
|
|
public boolean isFactionsCommand(String check) {
|
2014-07-02 08:37:42 +02:00
|
|
|
return !(check == null || check.isEmpty()) && this.handleCommand(null, check, true);
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get a player's faction tag (faction name), mainly for usage by chat plugins for local/channel chat
|
|
|
|
public String getPlayerFactionTag(Player player) {
|
|
|
|
return getPlayerFactionTagRelation(player, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Same as above, but with relation (enemy/neutral/ally) coloring potentially added to the tag
|
|
|
|
public String getPlayerFactionTagRelation(Player speaker, Player listener) {
|
|
|
|
String tag = "~";
|
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
if (speaker == null) {
|
|
|
|
return tag;
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2014-10-19 07:37:25 +02:00
|
|
|
FPlayer me = FPlayers.getInstance().getByPlayer(speaker);
|
2014-07-01 22:10:18 +02:00
|
|
|
if (me == null) {
|
|
|
|
return tag;
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
// if listener isn't set, or config option is disabled, give back uncolored tag
|
|
|
|
if (listener == null || !Conf.chatTagRelationColored) {
|
|
|
|
tag = me.getChatTag().trim();
|
2014-07-01 21:52:40 +02:00
|
|
|
} else {
|
2014-10-19 07:37:25 +02:00
|
|
|
FPlayer you = FPlayers.getInstance().getByPlayer(listener);
|
2014-07-01 22:10:18 +02:00
|
|
|
if (you == null) {
|
|
|
|
tag = me.getChatTag().trim();
|
|
|
|
} else // everything checks out, give the colored tag
|
|
|
|
{
|
|
|
|
tag = me.getChatTag(you).trim();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (tag.isEmpty()) {
|
|
|
|
tag = "~";
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a player's title within their faction, mainly for usage by chat plugins for local/channel chat
|
|
|
|
public String getPlayerTitle(Player player) {
|
2014-07-01 22:10:18 +02:00
|
|
|
if (player == null) {
|
|
|
|
return "";
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2014-10-19 07:37:25 +02:00
|
|
|
FPlayer me = FPlayers.getInstance().getByPlayer(player);
|
2014-07-01 22:10:18 +02:00
|
|
|
if (me == null) {
|
|
|
|
return "";
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
return me.getTitle().trim();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a list of all faction tags (names)
|
|
|
|
public Set<String> getFactionTags() {
|
2014-10-19 07:37:25 +02:00
|
|
|
return Factions.getInstance().getFactionTags();
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get a list of all players in the specified faction
|
|
|
|
public Set<String> getPlayersInFaction(String factionTag) {
|
2014-07-01 22:10:18 +02:00
|
|
|
Set<String> players = new HashSet<String>();
|
2014-10-19 07:37:25 +02:00
|
|
|
Faction faction = Factions.getInstance().getByTag(factionTag);
|
2014-04-04 20:55:21 +02:00
|
|
|
if (faction != null) {
|
|
|
|
for (FPlayer fplayer : faction.getFPlayers()) {
|
|
|
|
players.add(fplayer.getName());
|
|
|
|
}
|
2014-07-01 22:10:18 +02:00
|
|
|
}
|
|
|
|
return players;
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get a list of all online players in the specified faction
|
|
|
|
public Set<String> getOnlinePlayersInFaction(String factionTag) {
|
2014-07-01 22:10:18 +02:00
|
|
|
Set<String> players = new HashSet<String>();
|
2014-10-19 07:37:25 +02:00
|
|
|
Faction faction = Factions.getInstance().getByTag(factionTag);
|
2014-04-04 20:55:21 +02:00
|
|
|
if (faction != null) {
|
|
|
|
for (FPlayer fplayer : faction.getFPlayersWhereOnline(true)) {
|
|
|
|
players.add(fplayer.getName());
|
|
|
|
}
|
2014-07-01 22:10:18 +02:00
|
|
|
}
|
|
|
|
return players;
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
2014-08-05 17:17:27 +02:00
|
|
|
|
|
|
|
public void debug(Level level, String s) {
|
|
|
|
if (getConfig().getBoolean("debug", false)) {
|
|
|
|
getLogger().log(level, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void debug(String s) {
|
|
|
|
debug(Level.INFO, s);
|
|
|
|
}
|
2011-10-08 22:03:44 +02:00
|
|
|
}
|