2011-09-20 02:52:08 +00:00
|
|
|
package me.StevenLawson.TotalFreedomMod;
|
|
|
|
|
2011-09-26 15:26:52 +00:00
|
|
|
import java.io.File;
|
2011-09-21 03:31:59 +00:00
|
|
|
import java.util.ArrayList;
|
2011-10-01 17:59:46 +00:00
|
|
|
import java.util.HashMap;
|
2011-09-21 03:31:59 +00:00
|
|
|
import java.util.List;
|
2011-10-10 12:09:19 +00:00
|
|
|
import java.util.Map;
|
2011-09-20 02:52:08 +00:00
|
|
|
import java.util.logging.Level;
|
|
|
|
import java.util.logging.Logger;
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.ChatColor;
|
2011-10-12 19:33:31 +00:00
|
|
|
import org.bukkit.configuration.file.FileConfiguration;
|
|
|
|
import org.bukkit.configuration.file.YamlConfiguration;
|
2011-10-13 23:07:52 +00:00
|
|
|
import org.bukkit.entity.Player;
|
2011-09-23 03:22:10 +00:00
|
|
|
import org.bukkit.event.Event;
|
|
|
|
import org.bukkit.plugin.PluginManager;
|
2011-09-20 02:52:08 +00:00
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
|
|
|
|
public class TotalFreedomMod extends JavaPlugin
|
|
|
|
{
|
2011-09-26 15:26:52 +00:00
|
|
|
private static final Logger log = Logger.getLogger("Minecraft");
|
2011-10-01 17:59:46 +00:00
|
|
|
|
2011-10-10 12:09:19 +00:00
|
|
|
public static final long HEARTBEAT_RATE = 5L; //Seconds
|
2011-10-12 22:45:43 +00:00
|
|
|
public static final String CONFIG_FILE = "config.yml";
|
2011-10-13 23:45:01 +00:00
|
|
|
|
2011-10-02 16:15:16 +00:00
|
|
|
public static final String MSG_NO_PERMS = ChatColor.YELLOW + "You do not have permission to use this command.";
|
|
|
|
public static final String YOU_ARE_OP = ChatColor.YELLOW + "You are now op!";
|
|
|
|
public static final String YOU_ARE_NOT_OP = ChatColor.YELLOW + "You are no longer op!";
|
|
|
|
public static final String CAKE_LYRICS = "But there's no sense crying over every mistake. You just keep on trying till you run out of cake.";
|
2011-10-13 23:45:01 +00:00
|
|
|
|
|
|
|
public Map<Player, TFM_UserInfo> userinfo = new HashMap<Player, TFM_UserInfo>();
|
|
|
|
public boolean allPlayersFrozen = false;
|
2011-10-01 17:59:46 +00:00
|
|
|
|
2011-10-02 16:15:16 +00:00
|
|
|
@Override
|
|
|
|
public void onEnable()
|
|
|
|
{
|
2011-10-12 20:25:26 +00:00
|
|
|
loadTFMConfig();
|
2011-10-02 16:15:16 +00:00
|
|
|
registerEventHandlers();
|
|
|
|
registerCommands();
|
2011-10-12 22:45:43 +00:00
|
|
|
|
|
|
|
Bukkit.getServer().getScheduler().scheduleAsyncRepeatingTask(this, new TFM_Heartbeat(this), HEARTBEAT_RATE * 20L, HEARTBEAT_RATE * 20L);
|
2011-09-30 19:32:13 +00:00
|
|
|
|
2011-10-13 01:33:58 +00:00
|
|
|
log.log(Level.INFO, "[" + getDescription().getName() + "] - Enabled! - Version: " + getDescription().getVersion() + " by Madgeek1450");
|
2011-10-14 05:31:21 +00:00
|
|
|
|
|
|
|
TFM_Util.deleteFolder(new File("./_deleteme"));
|
2011-10-02 16:15:16 +00:00
|
|
|
}
|
2011-09-26 15:26:52 +00:00
|
|
|
|
2011-10-02 16:15:16 +00:00
|
|
|
@Override
|
|
|
|
public void onDisable()
|
|
|
|
{
|
2011-10-12 22:45:43 +00:00
|
|
|
Bukkit.getScheduler().cancelTasks(this);
|
2011-10-13 01:33:58 +00:00
|
|
|
log.log(Level.INFO, "[" + getDescription().getName() + "] - Disabled.");
|
2011-10-12 22:45:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean allowFirePlace = false;
|
|
|
|
public Boolean allowFireSpread = false;
|
|
|
|
public Boolean allowLavaDamage = false;
|
|
|
|
public boolean allowLavaPlace = false;
|
|
|
|
public boolean allowWaterPlace = false;
|
|
|
|
public Boolean allowExplosions = false;
|
|
|
|
public double explosiveRadius = 4.0D;
|
|
|
|
public boolean autoEntityWipe = true;
|
|
|
|
public boolean nukeMonitor = true;
|
|
|
|
public int nukeMonitorCountBreak = 100;
|
|
|
|
public double nukeMonitorRange = 10.0D;
|
|
|
|
public int freecamTriggerCount = 10;
|
|
|
|
public Boolean preprocessLogEnabled = true;
|
2011-10-13 18:30:45 +00:00
|
|
|
public Boolean disableNight = true;
|
2011-10-14 05:31:21 +00:00
|
|
|
public Boolean disableWeather = true;
|
2011-10-12 22:45:43 +00:00
|
|
|
public List<String> superadmins = new ArrayList<String>();
|
|
|
|
public List<String> superadmin_ips = new ArrayList<String>();
|
|
|
|
|
2011-10-12 20:25:26 +00:00
|
|
|
private void loadTFMConfig()
|
2011-10-02 16:15:16 +00:00
|
|
|
{
|
2011-10-13 23:07:52 +00:00
|
|
|
TFM_Util.createDefaultConfiguration(CONFIG_FILE, this, getFile());
|
2011-10-12 22:45:43 +00:00
|
|
|
|
|
|
|
FileConfiguration config = YamlConfiguration.loadConfiguration(new File(getDataFolder(), CONFIG_FILE));
|
|
|
|
|
|
|
|
allowFirePlace = config.getBoolean("allow_fire_place", allowFirePlace);
|
|
|
|
allowFireSpread = config.getBoolean("allow_fire_spread", allowFireSpread);
|
|
|
|
allowLavaDamage = config.getBoolean("allow_lava_damage", allowLavaDamage);
|
|
|
|
allowLavaPlace = config.getBoolean("allow_lava_place", allowLavaPlace);
|
|
|
|
allowWaterPlace = config.getBoolean("allow_water_place", allowWaterPlace);
|
|
|
|
allowExplosions = config.getBoolean("allow_explosions", allowExplosions);
|
|
|
|
explosiveRadius = config.getDouble("explosiveRadius", explosiveRadius);
|
|
|
|
autoEntityWipe = config.getBoolean("auto_wipe", autoEntityWipe);
|
|
|
|
nukeMonitor = config.getBoolean("nuke_monitor", nukeMonitor);
|
|
|
|
nukeMonitorCountBreak = config.getInt("nuke_monitor_count", nukeMonitorCountBreak);
|
|
|
|
nukeMonitorRange = config.getDouble("nuke_monitor_range", nukeMonitorRange);
|
|
|
|
freecamTriggerCount = config.getInt("freecam_trigger_count", freecamTriggerCount);
|
|
|
|
preprocessLogEnabled = config.getBoolean("preprocess_log", preprocessLogEnabled);
|
2011-10-13 18:30:45 +00:00
|
|
|
disableNight = config.getBoolean("disable_night", disableNight);
|
2011-10-14 05:31:21 +00:00
|
|
|
disableWeather = config.getBoolean("disable_weather", disableWeather);
|
2011-10-12 18:13:10 +00:00
|
|
|
|
2011-10-12 19:33:31 +00:00
|
|
|
superadmins = (List<String>) config.getList("superadmins", null);
|
2011-10-12 18:13:10 +00:00
|
|
|
if (superadmins == null)
|
2011-10-02 16:15:16 +00:00
|
|
|
{
|
2011-10-12 18:13:10 +00:00
|
|
|
superadmins = new ArrayList<String>();
|
|
|
|
superadmins.add("Madgeek1450");
|
|
|
|
superadmins.add("markbyron");
|
|
|
|
}
|
|
|
|
|
2011-10-12 19:33:31 +00:00
|
|
|
superadmin_ips = (List<String>) config.getList("superadmin_ips", null);
|
2011-10-12 18:13:10 +00:00
|
|
|
if (superadmin_ips == null)
|
|
|
|
{
|
|
|
|
superadmin_ips = new ArrayList<String>();
|
2011-10-12 22:45:43 +00:00
|
|
|
superadmin_ips.add("127.0.0.1");
|
2011-10-12 18:13:10 +00:00
|
|
|
}
|
|
|
|
}
|
2011-10-13 23:07:52 +00:00
|
|
|
|
2011-10-13 23:45:01 +00:00
|
|
|
private final TFM_EntityListener entityListener = new TFM_EntityListener(this);
|
|
|
|
private final TFM_BlockListener blockListener = new TFM_BlockListener(this);
|
|
|
|
private final TFM_PlayerListener playerListener = new TFM_PlayerListener(this);
|
2011-10-14 05:31:21 +00:00
|
|
|
private final TFM_WeatherListener weatherListener = new TFM_WeatherListener(this);
|
2011-10-13 23:45:01 +00:00
|
|
|
|
2011-10-02 16:15:16 +00:00
|
|
|
private void registerEventHandlers()
|
|
|
|
{
|
|
|
|
PluginManager pm = this.getServer().getPluginManager();
|
2011-10-13 18:30:45 +00:00
|
|
|
|
2011-10-02 16:15:16 +00:00
|
|
|
pm.registerEvent(Event.Type.ENTITY_EXPLODE, entityListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.ENTITY_COMBUST, entityListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.ENTITY_DAMAGE, entityListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.EXPLOSION_PRIME, entityListener, Event.Priority.High, this);
|
|
|
|
|
|
|
|
pm.registerEvent(Event.Type.BLOCK_IGNITE, blockListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.BLOCK_BURN, blockListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.BLOCK_PLACE, blockListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.BLOCK_BREAK, blockListener, Event.Priority.Normal, this);
|
|
|
|
|
|
|
|
pm.registerEvent(Event.Type.PLAYER_COMMAND_PREPROCESS, playerListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.PLAYER_INTERACT, playerListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.PLAYER_MOVE, playerListener, Event.Priority.Normal, this);
|
|
|
|
pm.registerEvent(Event.Type.PLAYER_CHAT, playerListener, Event.Priority.Normal, this);
|
2011-10-14 05:31:21 +00:00
|
|
|
|
|
|
|
pm.registerEvent(Event.Type.WEATHER_CHANGE, weatherListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.THUNDER_CHANGE, weatherListener, Event.Priority.High, this);
|
2011-10-02 16:15:16 +00:00
|
|
|
}
|
|
|
|
|
2011-10-12 22:45:43 +00:00
|
|
|
private TFM_Cmds_OP OPCommands = new TFM_Cmds_OP(this);
|
|
|
|
private TFM_Cmds_Override OverrideCommands = new TFM_Cmds_Override(this);
|
|
|
|
private TFM_Cmds_General GeneralCommands = new TFM_Cmds_General(this);
|
|
|
|
private TFM_Cmds_AntiBlock AntiblockCommands = new TFM_Cmds_AntiBlock(this);
|
|
|
|
private TFM_Cmds_Admin AdminCommands = new TFM_Cmds_Admin(this);
|
|
|
|
|
2011-10-02 16:15:16 +00:00
|
|
|
private void registerCommands()
|
|
|
|
{
|
|
|
|
this.getCommand("deopall").setExecutor(OPCommands);
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("opall").setExecutor(OPCommands);
|
|
|
|
this.getCommand("opme").setExecutor(OPCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
this.getCommand("qdeop").setExecutor(OPCommands);
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("qop").setExecutor(OPCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
|
2011-10-14 23:29:09 +00:00
|
|
|
this.getCommand("tfbanlist").setExecutor(GeneralCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
this.getCommand("creative").setExecutor(GeneralCommands);
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("flatlands").setExecutor(GeneralCommands);
|
2011-10-14 23:29:09 +00:00
|
|
|
this.getCommand("tfipbanlist").setExecutor(GeneralCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
this.getCommand("mp").setExecutor(GeneralCommands);
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("nether").setExecutor(GeneralCommands);
|
|
|
|
this.getCommand("radar").setExecutor(GeneralCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
this.getCommand("rd").setExecutor(GeneralCommands);
|
2011-10-03 01:50:04 +00:00
|
|
|
this.getCommand("skylands").setExecutor(GeneralCommands);
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("status").setExecutor(GeneralCommands);
|
|
|
|
this.getCommand("survival").setExecutor(GeneralCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("cage").setExecutor(AdminCommands);
|
|
|
|
this.getCommand("cake").setExecutor(AdminCommands);
|
|
|
|
this.getCommand("csay").setExecutor(AdminCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
this.getCommand("fr").setExecutor(AdminCommands);
|
|
|
|
this.getCommand("gadmin").setExecutor(AdminCommands);
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("gcmd").setExecutor(AdminCommands);
|
|
|
|
this.getCommand("gtfo").setExecutor(AdminCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
this.getCommand("nonuke").setExecutor(AdminCommands);
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("orbit").setExecutor(AdminCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
this.getCommand("prelog").setExecutor(AdminCommands);
|
2011-10-03 21:41:09 +00:00
|
|
|
this.getCommand("qjail").setExecutor(AdminCommands);
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("tfsmite").setExecutor(AdminCommands);
|
2011-10-03 21:41:09 +00:00
|
|
|
this.getCommand("umd").setExecutor(AdminCommands);
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("wildcard").setExecutor(AdminCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
|
|
|
|
this.getCommand("explosives").setExecutor(AntiblockCommands);
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("fireplace").setExecutor(AntiblockCommands);
|
|
|
|
this.getCommand("firespread").setExecutor(AntiblockCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
this.getCommand("lavadmg").setExecutor(AntiblockCommands);
|
|
|
|
this.getCommand("lavaplace").setExecutor(AntiblockCommands);
|
|
|
|
this.getCommand("waterplace").setExecutor(AntiblockCommands);
|
|
|
|
|
|
|
|
this.getCommand("list").setExecutor(OverrideCommands);
|
|
|
|
this.getCommand("listreal").setExecutor(OverrideCommands);
|
2011-10-14 05:31:21 +00:00
|
|
|
this.getCommand("say").setExecutor(OverrideCommands);
|
|
|
|
this.getCommand("stop").setExecutor(OverrideCommands);
|
2011-10-02 16:15:16 +00:00
|
|
|
}
|
2011-09-20 02:52:08 +00:00
|
|
|
}
|