TFM-4.3-Reloaded/src/me/StevenLawson/TotalFreedomMod/TotalFreedomMod.java

226 lines
9.9 KiB
Java
Raw Normal View History

2011-09-20 02:52:08 +00:00
package me.StevenLawson.TotalFreedomMod;
import java.io.File;
import java.util.ArrayList;
2011-10-01 17:59:46 +00:00
import java.util.HashMap;
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-02 04:18:52 +00:00
import org.bukkit.World;
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-10-01 17:59:46 +00:00
public TotalFreedomMod tfm = this;
2011-10-02 04:23:22 +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-01 17:59:46 +00:00
private static final Logger log = Logger.getLogger("Minecraft");
2011-10-01 17:59:46 +00:00
2011-10-12 22:45:43 +00:00
public boolean allPlayersFrozen = false;
public static Map<Player, TFM_UserInfo> userinfo = new HashMap<Player, TFM_UserInfo>();
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";
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-01 17:59:46 +00:00
@Override
public void onEnable()
{
loadTFMConfig();
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");
}
@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
}
class TFM_Heartbeat implements Runnable
{
private TotalFreedomMod plugin;
TFM_Heartbeat(TotalFreedomMod instance)
{
this.plugin = instance;
}
@Override
public void run()
{
for (Player p : Bukkit.getOnlinePlayers())
{
TFM_UserInfo playerdata = TotalFreedomMod.userinfo.get(p);
if (playerdata != null)
{
playerdata.resetMsgCount();
playerdata.resetBlockDestroyCount();
}
}
if (plugin.autoEntityWipe)
{
2011-10-13 23:07:52 +00:00
TFM_Util.wipeDropEntities(plugin);
2011-10-12 22:45:43 +00:00
}
2011-10-13 18:30:45 +00:00
if (plugin.disableNight)
{
2011-10-13 18:30:45 +00:00
for (World world : Bukkit.getWorlds())
{
if (world.getTime() > 12000L)
{
2011-10-13 23:07:52 +00:00
TFM_Util.setWorldTime(world, 1000L);
2011-10-13 18:30:45 +00:00
}
}
}
}
}
2011-10-13 18:30:45 +00:00
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-12 22:45:43 +00:00
public List<String> superadmins = new ArrayList<String>();
public List<String> superadmin_ips = new ArrayList<String>();
private void loadTFMConfig()
{
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-12 18:13:10 +00:00
superadmins = (List<String>) config.getList("superadmins", null);
2011-10-12 18:13:10 +00:00
if (superadmins == null)
{
2011-10-12 18:13:10 +00:00
superadmins = new ArrayList<String>();
superadmins.add("Madgeek1450");
superadmins.add("markbyron");
}
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
private void registerEventHandlers()
{
PluginManager pm = this.getServer().getPluginManager();
2011-10-13 18:30:45 +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-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);
private void registerCommands()
{
this.getCommand("opme").setExecutor(OPCommands);
this.getCommand("opall").setExecutor(OPCommands);
this.getCommand("deopall").setExecutor(OPCommands);
this.getCommand("qop").setExecutor(OPCommands);
this.getCommand("qdeop").setExecutor(OPCommands);
this.getCommand("creative").setExecutor(GeneralCommands);
this.getCommand("survival").setExecutor(GeneralCommands);
this.getCommand("status").setExecutor(GeneralCommands);
this.getCommand("radar").setExecutor(GeneralCommands);
this.getCommand("mp").setExecutor(GeneralCommands);
this.getCommand("rd").setExecutor(GeneralCommands);
2011-10-03 01:50:04 +00:00
this.getCommand("flatlands").setExecutor(GeneralCommands);
this.getCommand("skylands").setExecutor(GeneralCommands);
2011-10-10 12:09:19 +00:00
this.getCommand("nether").setExecutor(GeneralCommands);
this.getCommand("banlist").setExecutor(GeneralCommands);
2011-10-12 19:03:34 +00:00
this.getCommand("ipbanlist").setExecutor(GeneralCommands);
this.getCommand("fr").setExecutor(AdminCommands);
this.getCommand("gtfo").setExecutor(AdminCommands);
this.getCommand("gadmin").setExecutor(AdminCommands);
this.getCommand("wildcard").setExecutor(AdminCommands);
this.getCommand("nonuke").setExecutor(AdminCommands);
this.getCommand("prelog").setExecutor(AdminCommands);
this.getCommand("cake").setExecutor(AdminCommands);
2011-10-03 21:41:09 +00:00
this.getCommand("gcmd").setExecutor(AdminCommands);
this.getCommand("qjail").setExecutor(AdminCommands);
this.getCommand("umd").setExecutor(AdminCommands);
2011-10-05 19:07:45 +00:00
this.getCommand("csay").setExecutor(AdminCommands);
2011-10-10 12:09:19 +00:00
this.getCommand("cage").setExecutor(AdminCommands);
2011-10-11 02:26:11 +00:00
this.getCommand("orbit").setExecutor(AdminCommands);
this.getCommand("explosives").setExecutor(AntiblockCommands);
this.getCommand("lavadmg").setExecutor(AntiblockCommands);
this.getCommand("lavaplace").setExecutor(AntiblockCommands);
this.getCommand("firespread").setExecutor(AntiblockCommands);
this.getCommand("fireplace").setExecutor(AntiblockCommands);
this.getCommand("waterplace").setExecutor(AntiblockCommands);
this.getCommand("say").setExecutor(OverrideCommands);
this.getCommand("stop").setExecutor(OverrideCommands);
this.getCommand("list").setExecutor(OverrideCommands);
this.getCommand("listreal").setExecutor(OverrideCommands);
}
2011-09-20 02:52:08 +00:00
}