2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ConfigurationHandler.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-05-16 22:52:27 +02:00
|
|
|
* © 2015-2016 Ellpeck Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.config;
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.Util;
|
2015-02-09 17:25:05 +01:00
|
|
|
import net.minecraftforge.common.config.Configuration;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.client.event.ConfigChangedEvent;
|
|
|
|
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
2015-02-09 17:25:05 +01:00
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
|
|
|
public class ConfigurationHandler{
|
|
|
|
|
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){
|
2015-10-01 12:52:03 +02:00
|
|
|
config = new Configuration(configFile, true);
|
2015-07-17 11:17:55 +02:00
|
|
|
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){
|
2016-04-20 21:39:03 +02:00
|
|
|
if(event.getModID().equalsIgnoreCase(ModUtil.MOD_ID)){
|
2015-07-17 11:17:55 +02:00
|
|
|
loadConfig();
|
|
|
|
}
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|
2015-03-30 15:08:19 +02:00
|
|
|
}
|