/LiteLoader/tags/1.6.4_02/java/com/mumfrey/liteloader/core/ClassPathMod.java

https://gitlab.com/LiteLoader/LiteLoaderMirror · Java · 110 lines · 90 code · 14 blank · 6 comment · 11 complexity · 47907b1f46611520b2eb5728583a4810 MD5 · raw file

  1. package com.mumfrey.liteloader.core;
  2. import java.io.File;
  3. import java.io.IOException;
  4. import java.net.MalformedURLException;
  5. import java.util.logging.Logger;
  6. import java.util.zip.ZipEntry;
  7. import java.util.zip.ZipFile;
  8. import net.minecraft.launchwrapper.LaunchClassLoader;
  9. import com.google.common.base.Charsets;
  10. import com.google.common.io.Files;
  11. import com.mumfrey.liteloader.resources.ModResourcePack;
  12. import com.mumfrey.liteloader.resources.ModResourcePackDir;
  13. /**
  14. * Mod file reference for a file loaded from class path
  15. *
  16. * @author Adam Mummery-Smith
  17. */
  18. public class ClassPathMod extends ModFile
  19. {
  20. private static final long serialVersionUID = -4759310661966590773L;
  21. private static final Logger logger = Logger.getLogger("liteloader");
  22. ClassPathMod(File file, String fallbackName)
  23. {
  24. super(file, ClassPathMod.getVersionMetaDataString(file));
  25. if (this.modName == null) this.modName = fallbackName;
  26. if (this.targetVersion == null) this.targetVersion = LiteLoaderBootstrap.VERSION.getMinecraftVersion();
  27. }
  28. @Override
  29. protected String getDefaultName()
  30. {
  31. return null;
  32. }
  33. @Override
  34. public void initResourcePack(String name)
  35. {
  36. if (this.resourcePack == null)
  37. {
  38. if (this.isDirectory())
  39. {
  40. ClassPathMod.logger.info(String.format("Setting up \"%s/%s\" as mod resource pack with identifier \"%s\"", this.getParentFile().getName(), this.getName(), name));
  41. this.resourcePack = new ModResourcePackDir(name, this);
  42. }
  43. else
  44. {
  45. ClassPathMod.logger.info(String.format("Setting up \"%s\" as mod resource pack with identifier \"%s\"", this.getName(), name));
  46. this.resourcePack = new ModResourcePack(name, this);
  47. }
  48. }
  49. }
  50. @Override
  51. public boolean injectIntoClassPath(LaunchClassLoader classLoader, boolean injectIntoParent) throws MalformedURLException
  52. {
  53. // Can't inject a class path entry into the class path!
  54. return false;
  55. }
  56. @Override
  57. public boolean isInjected()
  58. {
  59. return true;
  60. }
  61. private static String getVersionMetaDataString(File file)
  62. {
  63. try
  64. {
  65. if (file.isDirectory())
  66. {
  67. File versionMetaFile = new File(file, "litemod.json");
  68. if (versionMetaFile.exists())
  69. {
  70. return Files.toString(versionMetaFile, Charsets.UTF_8);
  71. }
  72. }
  73. else
  74. {
  75. String strVersion = null;
  76. ZipFile modZip = new ZipFile(file);
  77. ZipEntry versionEntry = modZip.getEntry("litemod.json");
  78. if (versionEntry != null)
  79. {
  80. try
  81. {
  82. strVersion = ModFile.zipEntryToString(modZip, versionEntry);
  83. }
  84. catch (IOException ex) {}
  85. }
  86. modZip.close();
  87. return strVersion;
  88. }
  89. }
  90. catch (IOException ex)
  91. {
  92. ex.printStackTrace();
  93. }
  94. return null;
  95. }
  96. }