ChestShop-3/com/Acrobot/ChestShop/Utils/Config.java

87 lines
2.8 KiB
Java

package com.Acrobot.ChestShop.Utils;
import com.Acrobot.ChestShop.Logging.Logging;
import org.bukkit.util.config.Configuration;
import java.io.File;
import java.io.FileWriter;
import java.util.HashMap;
/**
* @author Acrobot
*/
public class Config {
private static File configFile = new File("plugins/ChestShop/config.yml");
private static File langFile = new File("plugins/ChestShop/local.yml");
private static Configuration config = new Configuration(configFile);
private static Configuration language = new Configuration(langFile);
public static HashMap<String, Object> defaultValues = new HashMap<String, Object>();
private static String langChar = Character.toString((char) 167);
public static void setUp(){
if(!configFile.exists()){
try {
configFile.createNewFile();
Logging.log("Successfully created blank configuration file");
} catch (Exception e) {
Logging.log("Couldn't create configuration file!");
}
}
config.load();
language.load();
}
public static boolean getBoolean(String node){
return config.getBoolean(node, (Boolean) getDefaultValue(node));
}
public static String getString(String node){
return getColored(config.getString(node, (String) getDefaultValue(node)));
}
public static int getInteger(String node){
return config.getInt(node, Integer.parseInt(getDefaultValue(node).toString()));
}
public static double getDouble(String node){
return config.getDouble(node, -1);
}
public static Object getDefaultValue(String node, Configuration configuration, File file){
if(configuration.getProperty(node) == null){
try{
Object defaultValue = defaultValues.get(node);
if(defaultValue != null){
FileWriter fw = new FileWriter(file, true);
fw.write('\n' + node+": " + defaultValue);
fw.close();
}
} catch (Exception e){
Logging.log("Failed to update config file!");
}
}
configuration.load();
return configuration.getProperty(node);
}
public static String getColored(String msg){
return msg.replaceAll("&", langChar);
}
public static String getLocal(String node){
return getColored(language.getString("prefix",(String) getDefaultLocal("prefix")) + language.getString(node, (String) getDefaultLocal(node)));
}
public static Object getDefaultValue(String node){
return getDefaultValue(node, config, configFile);
}
public static Object getDefaultLocal(String node){
return getDefaultValue(node, language, langFile);
}
}