mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-26 23:26:45 +01:00
More cleanup.
This commit is contained in:
parent
9eb5535c75
commit
052e3cd997
@ -313,16 +313,19 @@ public class mcMMO extends JavaPlugin {
|
|||||||
public void onDisable() {
|
public void onDisable() {
|
||||||
|
|
||||||
//Make sure to save player information if the server shuts down
|
//Make sure to save player information if the server shuts down
|
||||||
for(Player x : Bukkit.getOnlinePlayers()) {
|
for (Player x : Bukkit.getOnlinePlayers()) {
|
||||||
Users.getProfile(x).save();
|
Users.getProfile(x).save();
|
||||||
}
|
}
|
||||||
|
|
||||||
Bukkit.getServer().getScheduler().cancelTasks(this); //This removes our tasks
|
Bukkit.getServer().getScheduler().cancelTasks(this); //This removes our tasks
|
||||||
|
|
||||||
System.out.println("mcMMO was disabled."); //How informative!
|
System.out.println("mcMMO was disabled."); //How informative!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register the commands.
|
||||||
|
*/
|
||||||
private void registerCommands() {
|
private void registerCommands() {
|
||||||
|
|
||||||
//Register aliases with the aliasmap (used in the playercommandpreprocessevent to ugly alias them to actual commands)
|
//Register aliases with the aliasmap (used in the playercommandpreprocessevent to ugly alias them to actual commands)
|
||||||
//Skills commands
|
//Skills commands
|
||||||
aliasMap.put(mcLocale.getString("m.SkillAcrobatics").toLowerCase(), "acrobatics");
|
aliasMap.put(mcLocale.getString("m.SkillAcrobatics").toLowerCase(), "acrobatics");
|
||||||
@ -338,7 +341,6 @@ public class mcMMO extends JavaPlugin {
|
|||||||
aliasMap.put(mcLocale.getString("m.SkillUnarmed").toLowerCase(), "unarmed");
|
aliasMap.put(mcLocale.getString("m.SkillUnarmed").toLowerCase(), "unarmed");
|
||||||
aliasMap.put(mcLocale.getString("m.SkillWoodCutting").toLowerCase(), "woodcutting");
|
aliasMap.put(mcLocale.getString("m.SkillWoodCutting").toLowerCase(), "woodcutting");
|
||||||
|
|
||||||
|
|
||||||
//Register commands
|
//Register commands
|
||||||
//Skills commands
|
//Skills commands
|
||||||
getCommand("acrobatics").setExecutor(new AcrobaticsCommand());
|
getCommand("acrobatics").setExecutor(new AcrobaticsCommand());
|
||||||
@ -354,89 +356,170 @@ public class mcMMO extends JavaPlugin {
|
|||||||
getCommand("unarmed").setExecutor(new UnarmedCommand());
|
getCommand("unarmed").setExecutor(new UnarmedCommand());
|
||||||
getCommand("woodcutting").setExecutor(new WoodcuttingCommand());
|
getCommand("woodcutting").setExecutor(new WoodcuttingCommand());
|
||||||
|
|
||||||
//Mc* commands
|
//mc* commands
|
||||||
if(LoadProperties.mcremoveEnable) getCommand("mcremove").setExecutor(new McremoveCommand());
|
if (LoadProperties.mcremoveEnable) {
|
||||||
if(LoadProperties.mcabilityEnable) getCommand("mcability").setExecutor(new McabilityCommand());
|
getCommand("mcremove").setExecutor(new McremoveCommand());
|
||||||
if(LoadProperties.mccEnable) getCommand("mcc").setExecutor(new MccCommand());
|
}
|
||||||
if(LoadProperties.mcgodEnable) getCommand("mcgod").setExecutor(new McgodCommand());
|
|
||||||
if(LoadProperties.mcmmoEnable) getCommand("mcmmo").setExecutor(new McmmoCommand());
|
if (LoadProperties.mcabilityEnable) {
|
||||||
if(LoadProperties.mcrefreshEnable) getCommand("mcrefresh").setExecutor(new McrefreshCommand(this));
|
getCommand("mcability").setExecutor(new McabilityCommand());
|
||||||
if(LoadProperties.mctopEnable) getCommand("mctop").setExecutor(new MctopCommand());
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.mccEnable) {
|
||||||
|
getCommand("mcc").setExecutor(new MccCommand());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.mcgodEnable) {
|
||||||
|
getCommand("mcgod").setExecutor(new McgodCommand());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.mcmmoEnable) {
|
||||||
|
getCommand("mcmmo").setExecutor(new McmmoCommand());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.mcrefreshEnable) {
|
||||||
|
getCommand("mcrefresh").setExecutor(new McrefreshCommand(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.mctopEnable) {
|
||||||
|
getCommand("mctop").setExecutor(new MctopCommand());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.mcstatsEnable) {
|
||||||
|
getCommand("mcstats").setExecutor(new McstatsCommand());
|
||||||
|
}
|
||||||
|
|
||||||
//Party commands
|
//Party commands
|
||||||
if(LoadProperties.acceptEnable) getCommand("accept").setExecutor(new AcceptCommand());
|
if (LoadProperties.acceptEnable) {
|
||||||
if(LoadProperties.aEnable) getCommand("a").setExecutor(new ACommand());
|
getCommand("accept").setExecutor(new AcceptCommand());
|
||||||
if(LoadProperties.inviteEnable) getCommand("invite").setExecutor(new InviteCommand(this));
|
}
|
||||||
if(LoadProperties.partyEnable) getCommand("party").setExecutor(new PartyCommand());
|
|
||||||
if(LoadProperties.pEnable) getCommand("p").setExecutor(new PCommand());
|
if (LoadProperties.aEnable) {
|
||||||
if(LoadProperties.ptpEnable) getCommand("ptp").setExecutor(new PtpCommand(this));
|
getCommand("a").setExecutor(new ACommand());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.inviteEnable) {
|
||||||
|
getCommand("invite").setExecutor(new InviteCommand(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.partyEnable) {
|
||||||
|
getCommand("party").setExecutor(new PartyCommand());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.pEnable) {
|
||||||
|
getCommand("p").setExecutor(new PCommand());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.ptpEnable) {
|
||||||
|
getCommand("ptp").setExecutor(new PtpCommand(this));
|
||||||
|
}
|
||||||
|
|
||||||
//Other commands
|
//Other commands
|
||||||
if(LoadProperties.addxpEnable) getCommand("addxp").setExecutor(new AddxpCommand(this));
|
if (LoadProperties.addxpEnable) {
|
||||||
if(LoadProperties.addlevelsEnable) getCommand("addlevels").setExecutor(new AddlevelsCommand(this));
|
getCommand("addxp").setExecutor(new AddxpCommand(this));
|
||||||
if(LoadProperties.mmoeditEnable) getCommand("mmoedit").setExecutor(new MmoeditCommand(this));
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.addlevelsEnable) {
|
||||||
|
getCommand("addlevels").setExecutor(new AddlevelsCommand(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.mmoeditEnable) {
|
||||||
|
getCommand("mmoedit").setExecutor(new MmoeditCommand(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.inspectEnable) {
|
||||||
|
getCommand("inspect").setExecutor(new InspectCommand(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LoadProperties.xprateEnable) {
|
||||||
|
getCommand("xprate").setExecutor(new XprateCommand());
|
||||||
|
}
|
||||||
|
|
||||||
getCommand("mmoupdate").setExecutor(new MmoupdateCommand());
|
getCommand("mmoupdate").setExecutor(new MmoupdateCommand());
|
||||||
if(LoadProperties.mcstatsEnable) getCommand("mcstats").setExecutor(new McstatsCommand());
|
|
||||||
if(LoadProperties.inspectEnable) getCommand("inspect").setExecutor(new InspectCommand(this));
|
|
||||||
if(LoadProperties.xprateEnable) getCommand("xprate").setExecutor(new XprateCommand());
|
|
||||||
|
|
||||||
//Spout commands
|
//Spout commands
|
||||||
getCommand("mchud").setExecutor(new MchudCommand());
|
if (LoadProperties.xplockEnable) {
|
||||||
if(LoadProperties.xplockEnable) getCommand("xplock").setExecutor(new XplockCommand());
|
getCommand("xplock").setExecutor(new XplockCommand());
|
||||||
|
}
|
||||||
|
|
||||||
|
getCommand("mchud").setExecutor(new MchudCommand());
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/**
|
||||||
|
* Update mcMMO from a given version
|
||||||
|
* </p>
|
||||||
* It is important to always assume that you are updating from the lowest possible version.
|
* It is important to always assume that you are updating from the lowest possible version.
|
||||||
* Thus, every block of updater code should be complete and self-contained; finishing all
|
* Thus, every block of updater code should be complete and self-contained; finishing all
|
||||||
* SQL transactions and closing all file handlers, such that the next block of updater code
|
* SQL transactions and closing all file handlers, such that the next block of updater code
|
||||||
* if called will handle updating as expected.
|
* if called will handle updating as expected.
|
||||||
|
*
|
||||||
|
* @param age Specifies which updater code to run
|
||||||
*/
|
*/
|
||||||
public void updateFrom(int age) {
|
public void updateFrom(int age) {
|
||||||
|
|
||||||
//No updater code needed, just update the version.
|
//No updater code needed, just update the version.
|
||||||
if(age == -1) {
|
if (age == -1) {
|
||||||
updateVersion();
|
updateVersion();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//Updater code from age 1 goes here
|
|
||||||
if(age <= 1) {
|
|
||||||
//Since age 1 is an example for now, we will just let it do nothing.
|
|
||||||
|
|
||||||
|
//Updater code from age 1 goes here
|
||||||
|
if (age <= 1) {
|
||||||
|
//Since age 1 is an example for now, we will just let it do nothing.
|
||||||
}
|
}
|
||||||
|
|
||||||
//If we are updating from age 1 but we need more to reach age 2, this will run too.
|
//If we are updating from age 1 but we need more to reach age 2, this will run too.
|
||||||
if(age <= 2) {
|
if (age <= 2) {
|
||||||
|
|
||||||
}
|
}
|
||||||
updateVersion();
|
updateVersion();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the version file.
|
||||||
|
*/
|
||||||
public void updateVersion() {
|
public void updateVersion() {
|
||||||
try {
|
try {
|
||||||
versionFile.createNewFile();
|
versionFile.createNewFile();
|
||||||
BufferedWriter vout = new BufferedWriter(new FileWriter(versionFile));
|
BufferedWriter vout = new BufferedWriter(new FileWriter(versionFile));
|
||||||
vout.write(this.getDescription().getVersion());
|
vout.write(this.getDescription().getVersion());
|
||||||
vout.close();
|
vout.close();
|
||||||
} catch (IOException ex) {
|
}
|
||||||
|
catch (IOException ex) {
|
||||||
ex.printStackTrace();
|
ex.printStackTrace();
|
||||||
} catch (SecurityException ex) {
|
}
|
||||||
|
catch (SecurityException ex) {
|
||||||
ex.printStackTrace();
|
ex.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the current mcMMO version.
|
||||||
|
*
|
||||||
|
* @return a String representing the current mcMMO version
|
||||||
|
*/
|
||||||
public String readVersion() {
|
public String readVersion() {
|
||||||
byte[] buffer = new byte[(int) versionFile.length()];
|
byte[] buffer = new byte[(int) versionFile.length()];
|
||||||
BufferedInputStream f = null;
|
BufferedInputStream f = null;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
f = new BufferedInputStream(new FileInputStream(versionFile));
|
f = new BufferedInputStream(new FileInputStream(versionFile));
|
||||||
f.read(buffer);
|
f.read(buffer);
|
||||||
} catch (FileNotFoundException ex) {
|
|
||||||
ex.printStackTrace();
|
|
||||||
} catch (IOException ex) {
|
|
||||||
ex.printStackTrace();
|
|
||||||
} finally {
|
|
||||||
if (f != null) try { f.close(); } catch (IOException ignored) { }
|
|
||||||
}
|
}
|
||||||
|
catch (FileNotFoundException ex) {
|
||||||
|
ex.printStackTrace();
|
||||||
|
}
|
||||||
|
catch (IOException ex) {
|
||||||
|
ex.printStackTrace();
|
||||||
|
}
|
||||||
|
finally {
|
||||||
|
if (f != null) {
|
||||||
|
try {
|
||||||
|
f.close();
|
||||||
|
}
|
||||||
|
catch (IOException ignored) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
return new String(buffer);
|
return new String(buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -447,35 +530,49 @@ public class mcMMO extends JavaPlugin {
|
|||||||
private FileConfiguration treasuresConfig = null;
|
private FileConfiguration treasuresConfig = null;
|
||||||
private File treasuresConfigFile = null;
|
private File treasuresConfigFile = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reload the Treasures.yml file.
|
||||||
|
*/
|
||||||
public void reloadTreasuresConfig() {
|
public void reloadTreasuresConfig() {
|
||||||
if (treasuresConfigFile == null) {
|
if (treasuresConfigFile == null) {
|
||||||
treasuresConfigFile = new File(getDataFolder(), "treasures.yml");
|
treasuresConfigFile = new File(getDataFolder(), "treasures.yml");
|
||||||
}
|
}
|
||||||
treasuresConfig = YamlConfiguration.loadConfiguration(treasuresConfigFile);
|
|
||||||
|
|
||||||
// Look for defaults in the jar
|
treasuresConfig = YamlConfiguration.loadConfiguration(treasuresConfigFile);
|
||||||
InputStream defConfigStream = getResource("treasures.yml");
|
InputStream defConfigStream = getResource("treasures.yml"); // Look for defaults in the jar
|
||||||
|
|
||||||
if (defConfigStream != null) {
|
if (defConfigStream != null) {
|
||||||
YamlConfiguration defConfig = YamlConfiguration.loadConfiguration(defConfigStream);
|
YamlConfiguration defConfig = YamlConfiguration.loadConfiguration(defConfigStream);
|
||||||
treasuresConfig.setDefaults(defConfig);
|
treasuresConfig.setDefaults(defConfig);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the Treasures config information.
|
||||||
|
*
|
||||||
|
* @return the configuration object for treasures.yml
|
||||||
|
*/
|
||||||
public FileConfiguration getTreasuresConfig() {
|
public FileConfiguration getTreasuresConfig() {
|
||||||
if (treasuresConfig == null) {
|
if (treasuresConfig == null) {
|
||||||
reloadTreasuresConfig();
|
reloadTreasuresConfig();
|
||||||
}
|
}
|
||||||
|
|
||||||
return treasuresConfig;
|
return treasuresConfig;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Save the Treasures config informtion.
|
||||||
|
*/
|
||||||
public void saveTreasuresConfig() {
|
public void saveTreasuresConfig() {
|
||||||
if (treasuresConfig == null || treasuresConfigFile == null) {
|
if (treasuresConfig == null || treasuresConfigFile == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
treasuresConfig.save(treasuresConfigFile);
|
treasuresConfig.save(treasuresConfigFile);
|
||||||
} catch (IOException ex) {
|
}
|
||||||
Logger.getLogger(JavaPlugin.class.getName()).log(Level.SEVERE, "Could not save config to " + treasuresConfigFile, ex);
|
catch (IOException ex) {
|
||||||
|
log.log(Level.SEVERE, "Could not save config to " + treasuresConfigFile, ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,7 +1,6 @@
|
|||||||
package com.gmail.nossr50.skills;
|
package com.gmail.nossr50.skills;
|
||||||
|
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
import org.bukkit.OfflinePlayer;
|
|
||||||
import org.bukkit.World;
|
import org.bukkit.World;
|
||||||
import org.bukkit.entity.Entity;
|
import org.bukkit.entity.Entity;
|
||||||
import org.bukkit.entity.EntityType;
|
import org.bukkit.entity.EntityType;
|
||||||
|
Loading…
Reference in New Issue
Block a user