2015-03-07 12:51:28 +01:00
|
|
|
package ellpeck.actuallyadditions.config;
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2015-07-17 11:17:55 +02:00
|
|
|
import cpw.mods.fml.client.event.ConfigChangedEvent;
|
|
|
|
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
|
2015-07-01 21:32:48 +02:00
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-07-17 11:17:55 +02:00
|
|
|
import ellpeck.actuallyadditions.util.Util;
|
2015-02-09 17:25:05 +01:00
|
|
|
import net.minecraftforge.common.config.Configuration;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
|
|
|
public class ConfigurationHandler{
|
|
|
|
|
2015-06-18 13:14:57 +02:00
|
|
|
public static final String ISSUES_WARNING = " [THIS COULD CAUSE ISSUES, CHANGE AT YOUR OWN RISK!]";
|
|
|
|
|
2015-07-17 11:17:55 +02:00
|
|
|
public static Configuration config;
|
|
|
|
|
|
|
|
public ConfigurationHandler(File configFile){
|
2015-07-01 21:32:48 +02:00
|
|
|
ModUtil.LOGGER.info("Grabbing Configurations...");
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2015-07-17 11:17:55 +02:00
|
|
|
Util.registerEvent(this);
|
|
|
|
|
|
|
|
if(config == null){
|
|
|
|
config = new Configuration(configFile);
|
|
|
|
loadConfig();
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|
2015-07-17 11:17:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private static void loadConfig(){
|
|
|
|
ConfigValues.defineConfigValues(config);
|
|
|
|
|
|
|
|
if(config.hasChanged()){
|
|
|
|
config.save();
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|
2015-07-17 11:17:55 +02:00
|
|
|
}
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2015-07-17 11:17:55 +02:00
|
|
|
@SubscribeEvent
|
|
|
|
public void onConfigurationChangedEvent(ConfigChangedEvent.OnConfigChangedEvent event){
|
|
|
|
if (event.modID.equalsIgnoreCase(ModUtil.MOD_ID)){
|
|
|
|
loadConfig();
|
|
|
|
}
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|
2015-03-30 15:08:19 +02:00
|
|
|
}
|