/src/main/java/org/mcupdater/commonores/CommonOres.java

https://gitlab.com/mcupdater/commonores · Java · 124 lines · 100 code · 18 blank · 6 comment · 19 complexity · a5379fff2bddb7cfca8b9bee9d5f6f41 MD5 · raw file

  1. package org.mcupdater.commonores;
  2. import java.io.BufferedReader;
  3. import java.io.File;
  4. import java.io.FileOutputStream;
  5. import java.io.IOException;
  6. import java.io.InputStream;
  7. import java.nio.charset.StandardCharsets;
  8. import java.nio.file.Files;
  9. import java.util.logging.Logger;
  10. import net.minecraftforge.common.Configuration;
  11. import net.minecraftforge.common.MinecraftForge;
  12. import org.mcupdater.commonores.data.DefaultSettings;
  13. import org.mcupdater.commonores.data.OreDefinition;
  14. import org.mcupdater.commonores.data.OreManager;
  15. import com.google.gson.Gson;
  16. import cpw.mods.fml.common.Mod;
  17. import cpw.mods.fml.common.event.FMLInitializationEvent;
  18. import cpw.mods.fml.common.event.FMLPostInitializationEvent;
  19. import cpw.mods.fml.common.event.FMLPreInitializationEvent;
  20. import cpw.mods.fml.common.network.NetworkMod;
  21. @Mod(modid = Version.MOD_ID, name = Version.MOD_NAME, version = Version.VERSION, acceptedMinecraftVersions = "[1.6,1.7],", dependencies = "")
  22. @NetworkMod(clientSideRequired = true, serverSideRequired = true)
  23. public class CommonOres {
  24. public static Configuration config;
  25. public static Logger log = Logger.getLogger(Version.MOD_NAME);
  26. @Mod.EventHandler
  27. public void preInit(FMLPreInitializationEvent evt) {
  28. final File mcConfigDir = evt.getModConfigurationDirectory();
  29. final File configDir = new File(mcConfigDir, Version.MOD_ID);
  30. if (!configDir.exists()) configDir.mkdir();
  31. final File configFile = new File(configDir, Version.MOD_ID + ".cfg");
  32. config = new Configuration(configFile);
  33. config.load();
  34. // copy any default ore definitions out of resources if they don't exist
  35. for (final String metal : DefaultSettings.METAL_LIST) {
  36. log.info("Preparing " + metal);
  37. final File metalDefault = new File(configDir, metal + ".json");
  38. if (!metalDefault.exists()) {
  39. InputStream is = getClass().getResourceAsStream(
  40. "/defs/" + metal + ".json");
  41. if (is == null) {
  42. log.warning("Unable to find resource for " + metal);
  43. continue;
  44. } else {
  45. log.info("Found resource for " + metal);
  46. try {
  47. metalDefault.createNewFile();
  48. final FileOutputStream fos = new FileOutputStream(metalDefault);
  49. byte[] bytes = new byte[1024];
  50. int read = 0;
  51. while (( read = is.read(bytes) ) != -1) {
  52. fos.write(bytes, 0, read);
  53. }
  54. fos.close();
  55. } catch (IOException ioe) {
  56. log.severe("Exception writing " + metalDefault);
  57. ioe.printStackTrace();
  58. }
  59. }
  60. }
  61. }
  62. // load any ore definitions
  63. Gson gson = new Gson();
  64. for (final File file : configDir.listFiles()) {
  65. if (file.isFile() && file.canRead()
  66. && file.getName().endsWith(".json")) {
  67. final BufferedReader reader;
  68. try {
  69. reader = Files.newBufferedReader(file.toPath(),
  70. StandardCharsets.UTF_8);
  71. } catch (IOException e) {
  72. log.warning("Unable to read " + file);
  73. continue;
  74. }
  75. OreDefinition json = gson.fromJson(reader, OreDefinition.class);
  76. if (json == null) {
  77. log.warning("Unable to parse " + file + " as JSON");
  78. } else {
  79. // make sure we've got this metal enabled :)
  80. final String key = json.name.toLowerCase();
  81. if (config.get(Configuration.CATEGORY_GENERAL,
  82. "metal." + key + ".enabled", true).getBoolean(true)) {
  83. // warn if an alloy is spawning ore
  84. if (json.isOreEnabled() && json.isAlloy()) {
  85. log.warning("Definition for " + key + " provides an alloy with oregen!");
  86. }
  87. OreManager.registerDefinition(json);
  88. System.out.println(gson.toJson(json));
  89. }
  90. }
  91. }
  92. }
  93. MinecraftForge.EVENT_BUS.register(this);
  94. }
  95. @Mod.EventHandler
  96. public void init(FMLInitializationEvent evt) {
  97. // TODO: register everything that was loaded from config or requested
  98. // during pre-init
  99. }
  100. @Mod.EventHandler
  101. public void postInit(FMLPostInitializationEvent evt) {
  102. if (config.hasChanged()) {
  103. config.save();
  104. }
  105. }
  106. }