| package li.cil.oc.util.mods |
| |
| import cpw.mods.fml.common.versioning.VersionParser |
| import cpw.mods.fml.common.{Loader, ModAPIManager} |
| |
| object Mods { |
| val BattleGear2 = new SimpleMod("battlegear2") |
| val BuildCraftPower = new SimpleMod("BuildCraftAPI|power") |
| val ComputerCraft = new SimpleMod("ComputerCraft") |
| val ForgeMultipart = new SimpleMod("ForgeMultipart") |
| val GregTech = new SimpleMod("gregtech") |
| val IndustrialCraft2 = new SimpleMod("IC2") |
| val MineFactoryReloaded = new SimpleMod("MineFactoryReloaded") |
| val NotEnoughItems = new SimpleMod("NotEnoughItems") |
| val PortalGun = new SimpleMod("PortalGun") |
| val ProjectRed = new SimpleMod("ProjRed|Transmission") |
| val RedLogic = new SimpleMod("RedLogic") |
| val StargateTech2 = new Mod { |
| val isAvailable = Loader.isModLoaded("StargateTech2") && { |
| val mod = Loader.instance.getIndexedModList.get("StargateTech2") |
| mod.getVersion.startsWith("0.7.") |
| } |
| } |
| val ThermalExpansion = new SimpleMod("ThermalExpansion") |
| val TinkersConstruct = new SimpleMod("TConstruct") |
| val UniversalElectricity = new SimpleMod("UniversalElectricity@[3.1,)") |
| |
| trait Mod { |
| def isAvailable: Boolean |
| } |
| |
| class SimpleMod(val id: String) { |
| val isAvailable = { |
| val version = VersionParser.parseVersionReference(id) |
| if (Loader.isModLoaded(version.getLabel)) |
| version.containsVersion(Loader.instance.getIndexedModList.get(version.getLabel).getProcessedVersion) |
| else ModAPIManager.INSTANCE.hasAPI(version.getLabel) |
| } |
| } |
| |
| } |