summaryrefslogtreecommitdiff
path: root/src/main/java/darkknight/jewelrycraft/thirdparty
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2018-05-24 16:03:42 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2018-05-24 16:03:42 -0400
commit9a4d1e95ea7784f0f98ea2913701a3a3c28aefaa (patch)
treeb4307f58fe2197d2215707bb3f44cf8952229c6d /src/main/java/darkknight/jewelrycraft/thirdparty
parent4f7ad220df0438b6f3382110577b53f29da46453 (diff)
Formatting pass
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/thirdparty')
-rwxr-xr-xsrc/main/java/darkknight/jewelrycraft/thirdparty/EE3.java33
-rwxr-xr-xsrc/main/java/darkknight/jewelrycraft/thirdparty/ModIds.java34
-rwxr-xr-xsrc/main/java/darkknight/jewelrycraft/thirdparty/NEI.java12
-rwxr-xr-xsrc/main/java/darkknight/jewelrycraft/thirdparty/ThirdPartyManager.java45
4 files changed, 75 insertions, 49 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/thirdparty/EE3.java b/src/main/java/darkknight/jewelrycraft/thirdparty/EE3.java
index e9bb21f..8f61767 100755
--- a/src/main/java/darkknight/jewelrycraft/thirdparty/EE3.java
+++ b/src/main/java/darkknight/jewelrycraft/thirdparty/EE3.java
@@ -29,34 +29,49 @@ public class EE3 implements IThirdParty {
new ItemStack(BlockList.shadowOre), 4096);
EnergyValueRegistryProxy.addPostAssignedEnergyValue(
- new ItemStack(BlockList.shadowBlock), 36864);
+ new ItemStack(BlockList.shadowBlock),
+ 36864);
EnergyValueRegistryProxy.addPostAssignedEnergyValue(
new ItemStack(ItemList.shadowIngot), 4096);
EnergyValueRegistryProxy.addPostAssignedEnergyValue(
- new ItemStack(BlockList.jewelCraftingTable), 16640);
+ new ItemStack(BlockList.jewelCraftingTable),
+ 16640);
EnergyValueRegistryProxy.addPostAssignedEnergyValue(
new ItemStack(ItemList.guide), 288);
for (int i = 0; i < ItemClayMolds.moldsItemNames.length; i++) {
- EnergyValueRegistryProxy.addPostAssignedEnergyValue(
- new ItemStack(ItemList.clayMolds, 1, i), 128);
+ EnergyValueRegistryProxy
+ .addPostAssignedEnergyValue(
+ new ItemStack(ItemList.clayMolds,
+ 1,
+ i),
+ 128);
}
for (int i = 0; i < ItemMolds.moldsItemNames.length; i++) {
- EnergyValueRegistryProxy.addPostAssignedEnergyValue(
- new ItemStack(ItemList.molds, 1, i), 128);
+ EnergyValueRegistryProxy
+ .addPostAssignedEnergyValue(
+ new ItemStack(ItemList.molds,
+ 1,
+ i),
+ 128);
}
for (int i = 0; i < BlockCrystal.colors.length; i++) {
- EnergyValueRegistryProxy.addPostAssignedEnergyValue(
- new ItemStack(BlockList.crystal, 1, i), 64);
+ EnergyValueRegistryProxy
+ .addPostAssignedEnergyValue(
+ new ItemStack(BlockList.crystal,
+ 1,
+ i),
+ 64);
}
for (int i = 0; i < Names.Items.GEM_SUBTYPES.length; i++) {
- JewelrycraftUtil.gem.add(new ItemStack(ModItems.gem, 1, i));
+ JewelrycraftUtil.gem.add(
+ new ItemStack(ModItems.gem, 1, i));
}
}
diff --git a/src/main/java/darkknight/jewelrycraft/thirdparty/ModIds.java b/src/main/java/darkknight/jewelrycraft/thirdparty/ModIds.java
index 7bda520..42fc800 100755
--- a/src/main/java/darkknight/jewelrycraft/thirdparty/ModIds.java
+++ b/src/main/java/darkknight/jewelrycraft/thirdparty/ModIds.java
@@ -4,26 +4,26 @@ package darkknight.jewelrycraft.thirdparty;
* @author MineMarteen from Pneumaticraft
*/
public class ModIds {
- public static final String BUILDCRAFT = "BuildCraft|Core";
+ public static final String BUILDCRAFT = "BuildCraft|Core";
public static final String COMPUTERCRAFT = "ComputerCraft";
public static final String INDUSTRIALCRAFT = "IC2";
- public static final String IGWMOD = "IGWMod";
- public static final String FMP = "ForgeMultipart";
- public static final String WAILA = "Waila";
- public static final String TE = "ThermalExpansion";
- public static final String HC = "HydCraft";
- public static final String NEI = "NotEnoughItems";
- public static final String THAUMCRAFT = "Thaumcraft";
- public static final String BLOOD_MAGIC = "AWWayofTime";
- public static final String AE2 = "appliedenergistics2";
- public static final String CHISEL = "chisel";
- public static final String FORESTRY = "Forestry";
- public static final String MFR = "MineFactoryReloaded";
- public static final String OPEN_BLOCKS = "OpenBlocks";
- public static final String COFH_CORE = "CoFHCore";
+ public static final String IGWMOD = "IGWMod";
+ public static final String FMP = "ForgeMultipart";
+ public static final String WAILA = "Waila";
+ public static final String TE = "ThermalExpansion";
+ public static final String HC = "HydCraft";
+ public static final String NEI = "NotEnoughItems";
+ public static final String THAUMCRAFT = "Thaumcraft";
+ public static final String BLOOD_MAGIC = "AWWayofTime";
+ public static final String AE2 = "appliedenergistics2";
+ public static final String CHISEL = "chisel";
+ public static final String FORESTRY = "Forestry";
+ public static final String MFR = "MineFactoryReloaded";
+ public static final String OPEN_BLOCKS = "OpenBlocks";
+ public static final String COFH_CORE = "CoFHCore";
public static final String NOT_ENOUGH_KEYS = "notenoughkeys";
public static final String OPEN_COMPUTERS = "OpenComputers|Core";
- public static final String EE3 = "EE3";
+ public static final String EE3 = "EE3";
public static final String PENUMATICRAFT = "PneumaticCraft";
- public static final String ALPACA = "alpaca";
+ public static final String ALPACA = "alpaca";
} \ No newline at end of file
diff --git a/src/main/java/darkknight/jewelrycraft/thirdparty/NEI.java b/src/main/java/darkknight/jewelrycraft/thirdparty/NEI.java
index feb6e6f..70a8744 100755
--- a/src/main/java/darkknight/jewelrycraft/thirdparty/NEI.java
+++ b/src/main/java/darkknight/jewelrycraft/thirdparty/NEI.java
@@ -19,12 +19,14 @@ public class NEI implements IThirdParty {
@Override
public void postInit() {
for (int i = 0; i < Curse.getCurseList().size(); i++)
- codechicken.nei.api.API
- .hideItem(new ItemStack(ItemList.testItem, 1, i));
- codechicken.nei.api.API.hideItem(new ItemStack(ItemList.goldObj));
+ codechicken.nei.api.API.hideItem(new ItemStack(
+ ItemList.testItem, 1, i));
codechicken.nei.api.API
- .hideItem(new ItemStack(BlockList.midasTouchBlock));
- codechicken.nei.api.API.hideItem(new ItemStack(ItemList.metal));
+ .hideItem(new ItemStack(ItemList.goldObj));
+ codechicken.nei.api.API.hideItem(
+ new ItemStack(BlockList.midasTouchBlock));
+ codechicken.nei.api.API
+ .hideItem(new ItemStack(ItemList.metal));
}
@Override
diff --git a/src/main/java/darkknight/jewelrycraft/thirdparty/ThirdPartyManager.java b/src/main/java/darkknight/jewelrycraft/thirdparty/ThirdPartyManager.java
index 612d23d..bb819d5 100755
--- a/src/main/java/darkknight/jewelrycraft/thirdparty/ThirdPartyManager.java
+++ b/src/main/java/darkknight/jewelrycraft/thirdparty/ThirdPartyManager.java
@@ -21,18 +21,15 @@ import net.minecraft.world.World;
*/
public class ThirdPartyManager implements IGuiHandler {
- private static ThirdPartyManager INSTANCE =
- new ThirdPartyManager();
- private final List<IThirdParty> thirdPartyMods =
- new ArrayList<>();
+ private static ThirdPartyManager INSTANCE = new ThirdPartyManager();
+ private final List<IThirdParty> thirdPartyMods = new ArrayList<>();
public static ThirdPartyManager instance() {
return INSTANCE;
}
public void index() {
- Map<String, Class<? extends IThirdParty>> thirdPartyClasses =
- new HashMap<>();
+ Map<String, Class<? extends IThirdParty>> thirdPartyClasses = new HashMap<>();
thirdPartyClasses.put(ModIds.EE3, EE3.class);
thirdPartyClasses.put(ModIds.NEI, NEI.class);
@@ -46,7 +43,8 @@ public class ThirdPartyManager implements IGuiHandler {
for (String modid : thirdPartyClasses.keySet()) {
if (ConfigHandler.config
- .get("Third_Party_Enabling", modid, true)
+ .get("Third_Party_Enabling", modid,
+ true)
.getBoolean()) {
enabledThirdParty.add(modid);
}
@@ -54,15 +52,17 @@ public class ThirdPartyManager implements IGuiHandler {
ConfigHandler.config.save();
- for (Map.Entry<String,
- Class<? extends IThirdParty>> entry : thirdPartyClasses
- .entrySet()) {
+ for (Map.Entry<String, Class<? extends IThirdParty>> entry : thirdPartyClasses
+ .entrySet()) {
if (enabledThirdParty.contains(entry.getKey())
- && Loader.isModLoaded(entry.getKey())) {
+ && Loader.isModLoaded(
+ entry.getKey())) {
try {
- thirdPartyMods.add(entry.getValue().newInstance());
+ thirdPartyMods.add(entry.getValue()
+ .newInstance());
} catch (Exception e) {
- JewelrycraftMod.logger.log(Level.ERROR,
+ JewelrycraftMod.logger.log(
+ Level.ERROR,
"Failed to instantiate third party handler!");
e.printStackTrace();
}
@@ -73,14 +73,16 @@ public class ThirdPartyManager implements IGuiHandler {
public void onItemRegistry(Item item) {
for (IThirdParty thirdParty : thirdPartyMods) {
if (thirdParty instanceof IRegistryListener)
- ((IRegistryListener) thirdParty).onItemRegistry(item);
+ ((IRegistryListener) thirdParty)
+ .onItemRegistry(item);
}
}
public void onBlockRegistry(Block block) {
for (IThirdParty thirdParty : thirdPartyMods) {
if (thirdParty instanceof IRegistryListener)
- ((IRegistryListener) thirdParty).onBlockRegistry(block);
+ ((IRegistryListener) thirdParty)
+ .onBlockRegistry(block);
}
}
@@ -133,7 +135,8 @@ public class ThirdPartyManager implements IGuiHandler {
} catch (Throwable e) {
JewelrycraftMod.logger.log(Level.ERROR,
"Jewelrycraft wasn't able to load third party content from the third party class "
- + thirdParty.getClass() + " client side!");
+ + thirdParty.getClass()
+ + " client side!");
e.printStackTrace();
}
}
@@ -159,7 +162,10 @@ public class ThirdPartyManager implements IGuiHandler {
for (IThirdParty thirdParty : thirdPartyMods) {
if (thirdParty instanceof IGuiHandler) {
Object obj = ((IGuiHandler) thirdParty)
- .getServerGuiElement(ID, player, world, x, y, z);
+ .getServerGuiElement(ID,
+ player,
+ world, x,
+ y, z);
if (obj != null)
return obj;
}
@@ -173,7 +179,10 @@ public class ThirdPartyManager implements IGuiHandler {
for (IThirdParty thirdParty : thirdPartyMods) {
if (thirdParty instanceof IGuiHandler) {
Object obj = ((IGuiHandler) thirdParty)
- .getClientGuiElement(ID, player, world, x, y, z);
+ .getClientGuiElement(ID,
+ player,
+ world, x,
+ y, z);
if (obj != null)
return obj;
}