mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 08:29:09 +01:00
52 lines
No EOL
1.5 KiB
Java
52 lines
No EOL
1.5 KiB
Java
/*
|
|
* This file ("ConfigurationHandler.java") is part of the Actually Additions Mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015 Ellpeck
|
|
*/
|
|
|
|
package ellpeck.actuallyadditions.config;
|
|
|
|
import cpw.mods.fml.client.event.ConfigChangedEvent;
|
|
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
import ellpeck.actuallyadditions.util.Util;
|
|
import net.minecraftforge.common.config.Configuration;
|
|
|
|
import java.io.File;
|
|
|
|
public class ConfigurationHandler{
|
|
|
|
public static final String ISSUES_WARNING = " [THIS COULD CAUSE ISSUES, CHANGE AT YOUR OWN RISK!]";
|
|
|
|
public static Configuration config;
|
|
|
|
public ConfigurationHandler(File configFile){
|
|
ModUtil.LOGGER.info("Grabbing Configurations...");
|
|
|
|
Util.registerEvent(this);
|
|
|
|
if(config == null){
|
|
config = new Configuration(configFile, true);
|
|
loadConfig();
|
|
}
|
|
}
|
|
|
|
private static void loadConfig(){
|
|
ConfigValues.defineConfigValues(config);
|
|
|
|
if(config.hasChanged()){
|
|
config.save();
|
|
}
|
|
}
|
|
|
|
@SubscribeEvent
|
|
public void onConfigurationChangedEvent(ConfigChangedEvent.OnConfigChangedEvent event){
|
|
if(event.modID.equalsIgnoreCase(ModUtil.MOD_ID)){
|
|
loadConfig();
|
|
}
|
|
}
|
|
} |