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

72 lines
2.1 KiB
Java
Raw Normal View History

2011-06-09 22:54:01 +02:00
package com.Acrobot.ChestShop.Config;
import com.Acrobot.ChestShop.ChestShop;
import com.Acrobot.ChestShop.Utils.uName;
import com.nijikokun.register.payment.forChestShop.Methods;
import org.bukkit.ChatColor;
import java.io.File;
/**
* @author Acrobot
*/
public class Config {
private static BreezeConfiguration normalConfig;
private static BreezeConfiguration languageConfig;
public static void setup() {
File configFolder = ChestShop.getFolder();
normalConfig = BreezeConfiguration.loadConfiguration(new File(configFolder, "config.yml"), Property.getValues());
languageConfig = BreezeConfiguration.loadConfiguration(new File(configFolder, "local.yml"), Language.getValues());
uName.config = BreezeConfiguration.loadConfiguration(new File(configFolder, "longName.storage"));
Methods.setPreferred(Config.getString(Property.PREFERRED_ECONOMY_PLUGIN));
}
2011-07-02 20:34:14 +02:00
public static boolean getBoolean(Property value) {
return (Boolean) getValue(value.name());
2011-05-15 19:33:03 +02:00
}
public static float getFloat(Property value) {
2012-04-19 15:46:05 +02:00
return getFloat(value.name());
}
public static float getFloat(String value) {
return new Float(getValue(value).toString());
}
2011-07-02 20:34:14 +02:00
public static String getString(Property value) {
return (String) getValue(value.name());
}
2011-07-02 20:34:14 +02:00
public static int getInteger(Property value) {
return Integer.parseInt(getValue(value.name()).toString());
}
2011-07-02 20:34:14 +02:00
public static double getDouble(Property value) {
return getDouble(value.name());
2012-04-19 15:46:05 +02:00
}
public static double getDouble(String value) {
return new Double(getValue(value).toString());
}
private static String getColored(String msg) {
return ChatColor.translateAlternateColorCodes('&', msg);
}
public static String getLocal(Language lang) {
return getColored(languageConfig.getString(Language.prefix.name()) + languageConfig.getString(lang.name()));
}
public static boolean exists(String value) {
return getValue(value) != null;
}
2011-05-29 13:25:25 +02:00
private static Object getValue(String node) {
return normalConfig.get(node);
}
}