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-12-05 06:04:00 +01:00
|
|
|
import com.massivecraft.factions.integration.dynmap.EngineDynmap;
|
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.*;
|
2018-04-03 16:38:11 +02:00
|
|
|
import com.massivecraft.factions.util.Particles.ReflectionUtils;
|
2011-10-08 22:03:44 +02:00
|
|
|
import com.massivecraft.factions.zcore.MPlugin;
|
2018-01-05 00:44:39 +01:00
|
|
|
import com.massivecraft.factions.zcore.fperms.Access;
|
2018-02-06 04:46:43 +01:00
|
|
|
import com.massivecraft.factions.zcore.fperms.Permissable;
|
2018-02-03 21:49:04 +01:00
|
|
|
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
2018-03-26 23:43:15 +02:00
|
|
|
import com.massivecraft.factions.zcore.fupgrades.CropUpgrades;
|
|
|
|
import com.massivecraft.factions.zcore.fupgrades.EXPUpgrade;
|
|
|
|
import com.massivecraft.factions.zcore.fupgrades.FUpgradesGUI;
|
|
|
|
import com.massivecraft.factions.zcore.fupgrades.SpawnerUpgrades;
|
2012-03-11 17:41:56 +01:00
|
|
|
import com.massivecraft.factions.zcore.util.TextUtil;
|
2018-03-26 23:43:15 +02:00
|
|
|
import net.milkbowl.vault.economy.Economy;
|
2014-11-13 20:49:13 +01:00
|
|
|
import net.milkbowl.vault.permission.Permission;
|
2018-03-26 23:43:15 +02:00
|
|
|
import org.bukkit.*;
|
2014-04-04 20:55:21 +02:00
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
2018-08-05 04:41:31 +02:00
|
|
|
import org.bukkit.configuration.ConfigurationSection;
|
2018-03-26 23:43:15 +02:00
|
|
|
import org.bukkit.entity.ArmorStand;
|
|
|
|
import org.bukkit.entity.EntityType;
|
2014-04-04 20:55:21 +02:00
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.player.AsyncPlayerChatEvent;
|
2018-03-26 23:43:15 +02:00
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
import org.bukkit.inventory.meta.ItemMeta;
|
2016-05-31 01:22:45 +02:00
|
|
|
import org.bukkit.plugin.Plugin;
|
2014-11-13 20:49:13 +01:00
|
|
|
import org.bukkit.plugin.RegisteredServiceProvider;
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
import java.lang.reflect.Modifier;
|
|
|
|
import java.lang.reflect.Type;
|
2018-03-26 23:43:15 +02:00
|
|
|
import java.util.*;
|
2014-04-04 20:55:21 +02:00
|
|
|
import java.util.logging.Level;
|
2011-10-08 22:03:44 +02:00
|
|
|
|
2018-03-26 23:43:15 +02: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;
|
2015-02-26 15:58:09 +01:00
|
|
|
public static Permission perms = null;
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2018-04-09 05:13:41 +02:00
|
|
|
|
2018-06-21 21:16:55 +02:00
|
|
|
public boolean PlaceholderApi;
|
2018-07-12 18:11:07 +02:00
|
|
|
// Commands
|
|
|
|
public FCmdRoot cmdBase;
|
|
|
|
public CmdAutoHelp cmdAutoHelp;
|
|
|
|
public boolean mc17 = false;
|
|
|
|
public boolean mc18 = false;
|
2018-08-05 04:41:31 +02:00
|
|
|
public boolean mc113 = false;
|
2018-07-29 21:34:40 +02:00
|
|
|
public boolean useNonPacketParticles = false;
|
2018-07-12 18:11:07 +02:00
|
|
|
public boolean factionsFlight = false;
|
2018-04-25 02:32:26 +02:00
|
|
|
ItemStack item = new ItemStack(Material.CAKE);
|
2014-08-05 17:17:27 +02:00
|
|
|
// Persistence related
|
2014-04-04 20:55:21 +02:00
|
|
|
private boolean locked = false;
|
2018-07-12 18:11:07 +02:00
|
|
|
private Integer AutoLeaveTask = null;
|
|
|
|
private boolean hookedPlayervaults;
|
|
|
|
private ClipPlaceholderAPIManager clipPlaceholderAPIManager;
|
|
|
|
private boolean mvdwPlaceholderAPIManager = false;
|
|
|
|
|
|
|
|
public P() {
|
|
|
|
p = this;
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-03-26 23:43:15 +02:00
|
|
|
public void playSoundForAll(String sound) {
|
|
|
|
for (Player pl : Bukkit.getOnlinePlayers()) {
|
|
|
|
playSound(pl, sound);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void playSoundForAll(List<String> sounds) {
|
|
|
|
for (Player pl : Bukkit.getOnlinePlayers()) {
|
|
|
|
playSound(pl, sounds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void playSound(Player p, List<String> sounds) {
|
|
|
|
for (String sound : sounds) {
|
|
|
|
playSound(p, sound);
|
|
|
|
}
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2018-03-26 23:43:15 +02:00
|
|
|
public void playSound(Player p, String sound) {
|
|
|
|
float pitch = Float.valueOf(sound.split(":")[1]);
|
|
|
|
sound = sound.split(":")[0];
|
|
|
|
p.playSound(p.getLocation(), Sound.valueOf(sound), pitch, 5.0F);
|
|
|
|
}
|
2018-05-12 00:47:58 +02:00
|
|
|
|
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;
|
2015-01-10 21:42:52 +01:00
|
|
|
saveDefaultConfig();
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
// Load Conf from disk
|
2014-07-01 22:10:18 +02:00
|
|
|
Conf.load();
|
2018-03-26 23:43:15 +02:00
|
|
|
Essentials.setup();
|
2016-05-31 01:22:45 +02:00
|
|
|
hookedPlayervaults = setupPlayervaults();
|
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-12-07 22:15:42 +01:00
|
|
|
Board.getInstance().clean();
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2018-04-09 05:13:41 +02:00
|
|
|
//inspect stuff
|
2018-04-14 04:05:43 +02:00
|
|
|
|
2018-04-09 05:13:41 +02:00
|
|
|
|
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();
|
2015-02-26 15:58:09 +01:00
|
|
|
setupPermissions();
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
if (Conf.worldGuardChecking || Conf.worldGuardBuildPriority) {
|
|
|
|
Worldguard.init(this);
|
|
|
|
}
|
|
|
|
|
2014-12-05 06:04:00 +01:00
|
|
|
EngineDynmap.getInstance().init();
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
// start up task which runs the autoLeaveAfterDaysOfInactivity routine
|
|
|
|
startAutoLeaveTask(false);
|
|
|
|
|
2018-03-31 04:22:06 +02:00
|
|
|
//massive stats
|
|
|
|
MassiveStats massive = new MassiveStats(this);
|
2018-03-26 23:43:15 +02:00
|
|
|
|
2018-07-29 21:34:40 +02:00
|
|
|
|
2018-04-03 16:38:11 +02:00
|
|
|
int version = Integer.parseInt(ReflectionUtils.PackageType.getServerVersion().split("_")[1]);
|
|
|
|
if (version == 7) {
|
2018-05-12 00:47:58 +02:00
|
|
|
P.p.log("Minecraft Version 1.7 found, disabling banners, itemflags inside GUIs, and Titles.");
|
2018-04-03 16:38:11 +02:00
|
|
|
mc17 = true;
|
2018-05-12 00:47:58 +02:00
|
|
|
} else if (version == 8) {
|
|
|
|
P.p.log("Minecraft Version 1.8 found, Title Fadeouttime etc will not be configurable.");
|
|
|
|
mc18 = true;
|
2018-08-05 04:41:31 +02:00
|
|
|
} else if (version == 13) {
|
|
|
|
P.p.log("Minecraft Version 1.13 found, New Items will be used.");
|
|
|
|
mc113 = true;
|
|
|
|
changeItemIDSInConfig();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (version > 8) {
|
2018-07-29 21:34:40 +02:00
|
|
|
useNonPacketParticles = true;
|
|
|
|
P.p.log("Minecraft Version 1.9 or higher found, using non packet based particle API");
|
2018-04-03 16:38:11 +02:00
|
|
|
}
|
2018-03-26 23:43:15 +02:00
|
|
|
|
2018-06-21 21:16:55 +02:00
|
|
|
if (P.p.getConfig().getBoolean("enable-faction-flight")) {
|
|
|
|
factionsFlight = true;
|
|
|
|
}
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
// Register Event Handlers
|
2015-01-10 21:42:52 +01:00
|
|
|
getServer().getPluginManager().registerEvents(new FactionsPlayerListener(this), this);
|
|
|
|
getServer().getPluginManager().registerEvents(new FactionsChatListener(this), this);
|
|
|
|
getServer().getPluginManager().registerEvents(new FactionsEntityListener(this), this);
|
|
|
|
getServer().getPluginManager().registerEvents(new FactionsExploitListener(), this);
|
|
|
|
getServer().getPluginManager().registerEvents(new FactionsBlockListener(this), this);
|
2018-03-26 23:43:15 +02:00
|
|
|
getServer().getPluginManager().registerEvents(new FUpgradesGUI(), this);
|
2018-07-12 18:11:07 +02:00
|
|
|
getServer().getPluginManager().registerEvents(new EXPUpgrade(), this);
|
|
|
|
getServer().getPluginManager().registerEvents(new CropUpgrades(), this);
|
|
|
|
getServer().getPluginManager().registerEvents(new SpawnerUpgrades(), this);
|
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);
|
|
|
|
|
2018-07-23 19:48:06 +02:00
|
|
|
if (P.p.getDescription().getFullName().contains("BETA")) {
|
|
|
|
divider();
|
|
|
|
System.out.println("You are using a BETA version of the plugin!");
|
|
|
|
System.out.println("This comes with risks of small bugs in newer features!");
|
|
|
|
System.out.println("For support head to: https://github.com/ProSavage/SavageFactions/issues");
|
|
|
|
divider();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-04-09 05:13:41 +02:00
|
|
|
|
2017-12-31 03:44:42 +01:00
|
|
|
setupPlaceholderAPI();
|
2014-07-01 22:10:18 +02:00
|
|
|
postEnable();
|
|
|
|
this.loadSuccessful = true;
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
2017-12-31 03:44:42 +01:00
|
|
|
private void setupPlaceholderAPI() {
|
2018-01-07 01:56:43 +01:00
|
|
|
Plugin clip = getServer().getPluginManager().getPlugin("PlaceholderAPI");
|
|
|
|
if (clip != null && clip.isEnabled()) {
|
|
|
|
this.clipPlaceholderAPIManager = new ClipPlaceholderAPIManager();
|
2018-03-20 18:06:42 +01:00
|
|
|
if (this.clipPlaceholderAPIManager.register()) {
|
2018-06-21 21:16:55 +02:00
|
|
|
PlaceholderApi = true;
|
2018-03-20 18:06:42 +01:00
|
|
|
log(Level.INFO, "Successfully registered placeholders with PlaceholderAPI.");
|
2018-06-21 21:16:55 +02:00
|
|
|
} else {
|
|
|
|
PlaceholderApi = false;
|
2018-03-20 18:06:42 +01:00
|
|
|
}
|
2018-06-21 21:16:55 +02:00
|
|
|
} else {
|
|
|
|
PlaceholderApi = false;
|
2017-12-31 03:44:42 +01:00
|
|
|
}
|
2018-01-07 01:56:43 +01:00
|
|
|
|
|
|
|
Plugin mvdw = getServer().getPluginManager().getPlugin("MVdWPlaceholderAPI");
|
|
|
|
if (mvdw != null && mvdw.isEnabled()) {
|
|
|
|
this.mvdwPlaceholderAPIManager = true;
|
|
|
|
log(Level.INFO, "Found MVdWPlaceholderAPI. Adding hooks.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-05 04:41:31 +02:00
|
|
|
|
|
|
|
public void changeItemIDSInConfig() {
|
|
|
|
|
|
|
|
|
|
|
|
P.p.log("Starting conversion of legacy material in config to 1.13 materials.");
|
|
|
|
|
|
|
|
|
|
|
|
replaceStringInConfig("fperm-gui.relation.materials.recruit", "WOOD_SWORD", "WOODEN_SWORD");
|
|
|
|
|
|
|
|
replaceStringInConfig("fperm-gui.relation.materials.normal", "GOLD_SWORD", "GOLDEN_SWORD");
|
|
|
|
|
|
|
|
replaceStringInConfig("fperm-gui.relation.materials.ally", "GOLD_AXE", "GOLDEN_AXE");
|
|
|
|
|
|
|
|
replaceStringInConfig("fperm-gui.relation.materials.neutral", "WOOD_AXE", "WOODEN_AXE");
|
|
|
|
|
|
|
|
ConfigurationSection actionMaterialsConfigSection = getConfig().getConfigurationSection("fperm-gui.action.materials");
|
|
|
|
|
|
|
|
Set<String> actionMaterialKeys = actionMaterialsConfigSection.getKeys(true);
|
|
|
|
|
|
|
|
|
|
|
|
for (String key : actionMaterialKeys) {
|
|
|
|
replaceStringInConfig("fperm-gui.action.materials." + key, "STAINED_GLASS", "GRAY_STAINED_GLASS");
|
|
|
|
}
|
|
|
|
|
|
|
|
replaceStringInConfig("fperm-gui.dummy-items.0.material", "STAINED_GLASS_PANE", "GRAY_STAINED_GLASS_PANE");
|
|
|
|
|
|
|
|
replaceStringInConfig("fwarp-gui.dummy-items.0.material", "STAINED_GLASS_PANE", "GRAY_STAINED_GLASS_PANE");
|
|
|
|
|
|
|
|
replaceStringInConfig("fupgrades.MainMenu.DummyItem.Type", "STAINED_GLASS_PANE", "GRAY_STAINED_GLASS_PANE");
|
|
|
|
|
|
|
|
replaceStringInConfig("fupgrades.MainMenu.EXP.EXPItem.Type", "EXP_BOTTLE", "EXPERIENCE_BOTTLE");
|
|
|
|
|
|
|
|
replaceStringInConfig("fupgrades.MainMenu.Spawners.SpawnerItem.Type", "MOB_SPAWNER", "SPAWNER");
|
|
|
|
|
2018-08-05 07:08:48 +02:00
|
|
|
replaceStringInConfig("fperm-gui.action.access.allow", "LIME", "LIME_STAINED_GLASS");
|
|
|
|
|
|
|
|
replaceStringInConfig("fperm-gui.action.access.deny", "RED", "RED_STAINED_GLASS");
|
|
|
|
|
|
|
|
replaceStringInConfig("fperm-gui.action.access.undefined", "CYAN", "CYAN_STAINED_GLASS");
|
|
|
|
|
2018-08-05 04:41:31 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void replaceStringInConfig(String path, String stringToReplace, String replacementString) {
|
|
|
|
if (getConfig().getString(path).equals(stringToReplace)) {
|
2018-08-05 07:08:48 +02:00
|
|
|
P.p.log("Replacing legacy material '" + stringToReplace + "' with '" + replacementString + "' for config node '" + path + "'.");
|
2018-08-05 04:41:31 +02:00
|
|
|
getConfig().set(path, replacementString);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-07 01:56:43 +01:00
|
|
|
public boolean isClipPlaceholderAPIHooked() {
|
|
|
|
return this.clipPlaceholderAPIManager != null;
|
2017-12-31 03:44:42 +01:00
|
|
|
}
|
|
|
|
|
2018-01-07 01:56:43 +01:00
|
|
|
public boolean isMVdWPlaceholderAPIHooked() {
|
|
|
|
return this.mvdwPlaceholderAPIManager;
|
2018-01-06 23:04:42 +01:00
|
|
|
}
|
|
|
|
|
2014-11-13 20:49:13 +01:00
|
|
|
private boolean setupPermissions() {
|
2015-03-01 17:44:10 +01:00
|
|
|
try {
|
2015-03-02 22:24:46 +01:00
|
|
|
RegisteredServiceProvider<Permission> rsp = getServer().getServicesManager().getRegistration(Permission.class);
|
|
|
|
if (rsp != null) {
|
2018-01-05 02:40:27 +01:00
|
|
|
perms = rsp.getProvider();
|
2015-03-02 22:24:46 +01:00
|
|
|
}
|
2015-03-01 17:44:10 +01:00
|
|
|
} catch (NoClassDefFoundError ex) {
|
2015-03-02 22:24:46 +01:00
|
|
|
return false;
|
2015-03-01 17:44:10 +01:00
|
|
|
}
|
2014-11-13 20:49:13 +01:00
|
|
|
return perms != null;
|
|
|
|
}
|
|
|
|
|
2016-05-31 01:22:45 +02:00
|
|
|
private boolean setupPlayervaults() {
|
|
|
|
Plugin plugin = getServer().getPluginManager().getPlugin("PlayerVaults");
|
|
|
|
return plugin != null && plugin.isEnabled();
|
|
|
|
}
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
@Override
|
|
|
|
public GsonBuilder getGsonBuilder() {
|
2014-11-06 01:36:47 +01:00
|
|
|
Type mapFLocToStringSetType = new TypeToken<Map<FLocation, Set<String>>>() {
|
|
|
|
}.getType();
|
2014-07-01 21:52:40 +02:00
|
|
|
|
2018-02-06 04:46:43 +01:00
|
|
|
Type accessTypeAdatper = new TypeToken<Map<Permissable, Map<PermissableAction, Access>>>() {
|
2018-01-05 00:44:39 +01:00
|
|
|
}.getType();
|
|
|
|
|
2018-07-18 16:48:25 +02:00
|
|
|
return new GsonBuilder().setPrettyPrinting().disableHtmlEscaping().enableComplexMapKeySerialization().excludeFieldsWithModifiers(Modifier.TRANSIENT, Modifier.VOLATILE)
|
|
|
|
.registerTypeAdapter(accessTypeAdatper, new PermissionsMapTypeAdapter())
|
|
|
|
.registerTypeAdapter(LazyLocation.class, new MyLocationTypeAdapter())
|
|
|
|
.registerTypeAdapter(mapFLocToStringSetType, new MapFLocToStringSetTypeAdapter())
|
|
|
|
.registerTypeAdapterFactory(EnumTypeAdapter.ENUM_FACTORY);
|
2018-07-12 18:11:07 +02:00
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2018-07-23 19:48:06 +02:00
|
|
|
private void divider() {
|
|
|
|
System.out.println(" .-.-. .-.-. .-.-. .-.-. .-.-. .-.-. .-.-. .-.-");
|
|
|
|
System.out.println(" / / \\ \\ / / \\ \\ / / \\ \\ / / \\ \\ / / \\ \\ / / \\ \\ / / \\ \\ / / \\");
|
|
|
|
System.out.println("`-' `-`-' `-`-' `-`-' `-`-' `-`-' `-`-' `-`-'");
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
}
|
2018-07-18 16:48:25 +02:00
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
if (AutoLeaveTask != null) {
|
|
|
|
this.getServer().getScheduler().cancelTask(AutoLeaveTask);
|
|
|
|
AutoLeaveTask = null;
|
|
|
|
}
|
2014-08-05 17:17:27 +02:00
|
|
|
|
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() {
|
2015-08-07 00:41:37 +02:00
|
|
|
//Board.getInstance().forceSave(); Not sure why this was there as it's called after the board is already saved.
|
2014-07-01 22:10:18 +02:00
|
|
|
Conf.save();
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
2018-07-12 18:11:07 +02:00
|
|
|
|
2018-03-26 23:43:15 +02:00
|
|
|
public ItemStack createItem(Material material, int amount, short datavalue, String name, List<String> lore) {
|
|
|
|
ItemStack item = new ItemStack(material, amount, datavalue);
|
|
|
|
ItemMeta meta = item.getItemMeta();
|
|
|
|
meta.setDisplayName(color(name));
|
|
|
|
meta.setLore(colorList(lore));
|
|
|
|
item.setItemMeta(meta);
|
|
|
|
return item;
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2018-03-26 23:43:15 +02:00
|
|
|
public ItemStack createLazyItem(Material material, int amount, short datavalue, String name, String lore) {
|
|
|
|
ItemStack item = new ItemStack(material, amount, datavalue);
|
|
|
|
ItemMeta meta = item.getItemMeta();
|
|
|
|
meta.setDisplayName(color(P.p.getConfig().getString(name)));
|
|
|
|
meta.setLore(colorList(P.p.getConfig().getStringList(lore)));
|
|
|
|
item.setItemMeta(meta);
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Economy getEcon() {
|
|
|
|
RegisteredServiceProvider<Economy> rsp = P.p.getServer().getServicesManager().getRegistration(Economy.class);
|
|
|
|
Economy econ = rsp.getProvider();
|
|
|
|
return econ;
|
|
|
|
}
|
2018-07-12 18:11:07 +02:00
|
|
|
|
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) {
|
2015-09-08 20:12:11 +02:00
|
|
|
if (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);
|
|
|
|
}
|
|
|
|
|
2018-07-12 18:11:07 +02:00
|
|
|
public void createTimedHologram(final Location location, String text, Long timeout) {
|
|
|
|
ArmorStand as = (ArmorStand) location.add(0.5, 1, 0.5).getWorld().spawnEntity(location, EntityType.ARMOR_STAND); //Spawn the ArmorStand
|
2018-03-26 23:43:15 +02:00
|
|
|
as.setVisible(false); //Makes the ArmorStand invisible
|
|
|
|
as.setGravity(false); //Make sure it doesn't fall
|
|
|
|
as.setCanPickupItems(false); //I'm not sure what happens if you leave this as it is, but you might as well disable it
|
|
|
|
as.setCustomName(P.p.color(text)); //Set this to the text you want
|
|
|
|
as.setCustomNameVisible(true); //This makes the text appear no matter if your looking at the entity or not
|
|
|
|
final ArmorStand armorStand = as;
|
|
|
|
Bukkit.getScheduler().scheduleSyncDelayedTask(P.p, new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
Bukkit.broadcastMessage("removing stand");
|
|
|
|
armorStand.remove();
|
|
|
|
}
|
2018-07-12 18:11:07 +02:00
|
|
|
}, timeout * 20);
|
2018-03-26 23:43:15 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2018-04-09 05:13:41 +02:00
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2018-03-26 23:43:15 +02:00
|
|
|
public String color(String line) {
|
|
|
|
line = ChatColor.translateAlternateColorCodes('&', line);
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
|
|
|
|
//colors a string list
|
|
|
|
public List<String> colorList(List<String> lore) {
|
2018-07-12 18:11:07 +02:00
|
|
|
for (int i = 0; i <= lore.size() - 1; i++) {
|
|
|
|
lore.set(i, color(lore.get(i)));
|
2018-03-26 23:43:15 +02:00
|
|
|
}
|
|
|
|
return lore;
|
|
|
|
}
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
// 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) {
|
2017-12-19 11:18:13 +01:00
|
|
|
Set<String> players = new HashSet<>();
|
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) {
|
2017-12-19 11:18:13 +01:00
|
|
|
Set<String> players = new HashSet<>();
|
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
|
|
|
|
2016-05-31 01:22:45 +02:00
|
|
|
public boolean isHookedPlayervaults() {
|
|
|
|
return hookedPlayervaults;
|
|
|
|
}
|
|
|
|
|
2014-11-13 20:49:13 +01:00
|
|
|
public String getPrimaryGroup(OfflinePlayer player) {
|
2015-03-31 03:51:50 +02:00
|
|
|
return perms == null || !perms.hasGroupSupport() ? " " : perms.getPrimaryGroup(Bukkit.getWorlds().get(0).toString(), player);
|
2014-11-13 20:49:13 +01: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
|
|
|
}
|