mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-09 04:03:09 +01:00
fac79282df
- Fixed sign protection - Doesn't protect with LWC if the limit is reached - Added a message when you paid for shop.
97 lines
2.8 KiB
Java
97 lines
2.8 KiB
Java
package com.Acrobot.ChestShop.Config;
|
|
|
|
import com.Acrobot.ChestShop.ChestShop;
|
|
import com.Acrobot.ChestShop.Utils.uLongName;
|
|
import org.bukkit.util.config.Configuration;
|
|
|
|
import java.io.File;
|
|
import java.io.FileWriter;
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public class Config {
|
|
private static final File configFile = new File(ChestShop.folder, "config.yml");
|
|
private static final File langFile = new File(ChestShop.folder, "local.yml");
|
|
private static final Configuration config = new Configuration(configFile);
|
|
private static final Configuration language = new Configuration(langFile);
|
|
|
|
public static void setUp() {
|
|
if(!ChestShop.folder.exists()) ChestShop.folder.mkdir();
|
|
|
|
reloadConfig();
|
|
config.load();
|
|
|
|
reloadLanguage();
|
|
language.load();
|
|
|
|
uLongName.config.load();
|
|
}
|
|
|
|
private static void reloadConfig(){
|
|
config.load();
|
|
for (Property def : Property.values()) {
|
|
if (config.getProperty(def.name()) == null) {
|
|
writeToFile('\n' + def.name() + ": " + def.getValue() + "\n#" + def.getComment(), configFile);
|
|
}
|
|
}
|
|
}
|
|
|
|
private static void reloadLanguage(){
|
|
language.load();
|
|
for (Language def : Language.values()) {
|
|
if (language.getProperty(def.name()) == null) {
|
|
writeToFile('\n' + def.name() + ": \"" + def.toString() + '\"', langFile);
|
|
}
|
|
}
|
|
}
|
|
|
|
private static void writeToFile(String string, File file) {
|
|
try {
|
|
FileWriter fw = new FileWriter(file, true);
|
|
fw.write(string + '\n');
|
|
fw.close();
|
|
} catch (Exception e) {
|
|
System.out.println("Couldn't write to file - " + file.getName());
|
|
}
|
|
}
|
|
|
|
public static boolean getBoolean(Property value) {
|
|
return (Boolean) getValue(value.name());
|
|
}
|
|
|
|
public static float getFloat(Property value){
|
|
return new Float(getValue(value.name()).toString());
|
|
}
|
|
|
|
public static String getString(Property value) {
|
|
return (String) getValue(value.name());
|
|
}
|
|
|
|
public static int getInteger(Property value) {
|
|
return Integer.parseInt(getValue(value.name()).toString());
|
|
}
|
|
|
|
public static double getDouble(Property value) {
|
|
return config.getDouble(value.name(), -1);
|
|
}
|
|
|
|
private static String getColored(String msg) {
|
|
return msg.replaceAll("&([0-9a-f])", "\u00A7$1");
|
|
}
|
|
|
|
public static String getLocal(Language lang) {
|
|
return getColored(language.getString(Language.prefix.name()) + language.getString(lang.name()));
|
|
}
|
|
|
|
private static Object getValue(String node) {
|
|
return config.getProperty(node);
|
|
}
|
|
|
|
public static String getPreferred() {
|
|
config.load();
|
|
|
|
return getString(Property.PREFERRED_ECONOMY_PLUGIN);
|
|
}
|
|
}
|