ChestShop-3/com/Acrobot/ChestShop/Config/Config.java
2011-06-09 22:54:01 +02:00

98 lines
2.9 KiB
Java

package com.Acrobot.ChestShop.Config;
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() {
config.load();
for (DefaultValue def : DefaultValue.values()){
if(config.getProperty(def.name()) == null){
writeToFile(def.name() + ": " + def.getValue() + " #" + def.getComment(), configFile);
}
}
config.load();
language.load();
for (DefaultLanguage def : DefaultLanguage.values()) {
if (language.getProperty(def.name()) == null) {
writeToFile(def.name() + ": \"" + def.toString() + "\"", langFile);
}
}
language.load();
}
public static void writeToFile(String string, File file) {
try {
FileWriter fw = new FileWriter(file, true);
fw.write('\n' + string);
fw.close();
} catch (Exception e) {
Logging.log("Couldn't write to file - " + file.getName());
}
}
public static boolean getBoolean(String node) {
return (Boolean) getValue(node);
}
public static String getString(String node) {
return getColored((String) getValue(node));
}
public static int getInteger(String node) {
return Integer.parseInt(getValue(node).toString());
}
public static double getDouble(String node) {
return config.getDouble(node, -1);
}
private static Object getValue(String node, Configuration configuration, File file) {
if (configuration.getProperty(node) == null) {
writeToFile(DefaultLanguage.lookup(node).toString(), 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(getDefaultLocal("prefix") + (String) getDefaultLocal(node));
}
private static Object getValue(String node) {
return getValue(node, config, configFile);
}
private static Object getDefaultLocal(String node) {
if (language.getProperty(node) == null) {
writeToFile(DefaultLanguage.lookup(node).toString(), langFile);
language.load();
}
return language.getString(node);
}
}