Advertisement
Guest User

asd

a guest
Oct 10th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. ====CONFIGURATIONHANDLER====
  2.  
  3. package com.nexunuke.testmod.configuration;
  4.  
  5. import net.minecraftforge.common.config.Configuration;
  6.  
  7. import java.io.File;
  8.  
  9. public class ConfigurationHandler {
  10.  
  11. public static void init(File configFile){
  12. //Create the configuration object from the given configuration file
  13. Configuration configuration = new Configuration();
  14. try{
  15. //Load the configuration file
  16. configuration.load();
  17. //Read in properties from configuration file
  18. boolean configValue = configuration.get(Configuration.CATEGORY_GENERAL, "configValue", true, "This is an example config value").getBoolean(true);
  19. }
  20. catch(Exception e){
  21.  
  22. //Log the configuration file
  23. }
  24. finally {
  25. //Save the configuration file
  26. configuration.save();
  27.  
  28. }
  29. }
  30.  
  31. }
  32. ====MAIN CLASS====
  33. package com.nexunuke.testmod;
  34.  
  35. import com.nexunuke.testmod.configuration.ConfigurationHandler;
  36. import com.nexunuke.testmod.proxy.IProxy;
  37. import com.nexunuke.testmod.reference.Reference;
  38. import cpw.mods.fml.common.Mod;
  39. import cpw.mods.fml.common.SidedProxy;
  40. import cpw.mods.fml.common.event.FMLInitializationEvent;
  41. import cpw.mods.fml.common.event.FMLPostInitializationEvent;
  42. import cpw.mods.fml.common.event.FMLPreInitializationEvent;
  43.  
  44. @Mod(modid= Reference.MOD_ID, name= Reference.MOD_NAME, version= Reference.VERSION)
  45. public class TestMod
  46. {
  47. @Mod.Instance(Reference.MOD_ID)
  48. public static TestMod instance;
  49.  
  50. @SidedProxy(clientSide = Reference.CLIENT_PROXY_CLASS, serverSide = Reference.SERVER_PROXY_CLASS)
  51. public static IProxy proxy;
  52.  
  53. @Mod.EventHandler
  54. public void preInit(FMLPreInitializationEvent event)
  55. {
  56.  
  57. ConfigurationHandler.init(event.getSuggestedConfigurationFile());
  58.  
  59. }
  60.  
  61. @Mod.EventHandler
  62. public void init(FMLInitializationEvent event)
  63. {
  64.  
  65.  
  66.  
  67. }
  68.  
  69. @Mod.EventHandler
  70. public void postInit(FMLPostInitializationEvent event)
  71. {
  72.  
  73.  
  74.  
  75. }
  76.  
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement