From 48622bf2e7887a945e6b2adcb2acd557e02505c8 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 18 Feb 2016 09:49:12 -0800 Subject: [PATCH] All Getter methods for lists/maps in registry now return new copies --- .../registry/AlchemyArrayRecipeRegistry.java | 5 +++- .../api/registry/AltarRecipeRegistry.java | 5 +++- .../api/registry/HarvestRegistry.java | 26 ++++++++++++++----- .../bloodmagic/api/registry/OrbRegistry.java | 11 +++++--- .../registry/TartaricForgeRecipeRegistry.java | 6 +++-- 5 files changed, 40 insertions(+), 13 deletions(-) diff --git a/src/main/java/WayofTime/bloodmagic/api/registry/AlchemyArrayRecipeRegistry.java b/src/main/java/WayofTime/bloodmagic/api/registry/AlchemyArrayRecipeRegistry.java index d9ebd3ba..887bf0f6 100644 --- a/src/main/java/WayofTime/bloodmagic/api/registry/AlchemyArrayRecipeRegistry.java +++ b/src/main/java/WayofTime/bloodmagic/api/registry/AlchemyArrayRecipeRegistry.java @@ -21,7 +21,6 @@ public class AlchemyArrayRecipeRegistry { public static final AlchemyCircleRenderer defaultRenderer = new AlchemyCircleRenderer(new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/BaseArray.png")); - @Getter private static BiMap recipes = HashBiMap.create(); /** @@ -223,4 +222,8 @@ public class AlchemyArrayRecipeRegistry return null; } } + + public static BiMap getRecipes() { + return HashBiMap.create(recipes); + } } diff --git a/src/main/java/WayofTime/bloodmagic/api/registry/AltarRecipeRegistry.java b/src/main/java/WayofTime/bloodmagic/api/registry/AltarRecipeRegistry.java index c4bbf2a5..dce6c4d7 100644 --- a/src/main/java/WayofTime/bloodmagic/api/registry/AltarRecipeRegistry.java +++ b/src/main/java/WayofTime/bloodmagic/api/registry/AltarRecipeRegistry.java @@ -13,7 +13,6 @@ import javax.annotation.Nullable; public class AltarRecipeRegistry { - @Getter private static BiMap recipes = HashBiMap.create(); public static void registerRecipe(AltarRecipe recipe) @@ -92,4 +91,8 @@ public class AltarRecipeRegistry // (this.fillable this.areRequiredTagsEqual(comparedStack) : true); } } + + public static BiMap getRecipes() { + return HashBiMap.create(recipes); + } } diff --git a/src/main/java/WayofTime/bloodmagic/api/registry/HarvestRegistry.java b/src/main/java/WayofTime/bloodmagic/api/registry/HarvestRegistry.java index 48b7ab51..cb37b875 100644 --- a/src/main/java/WayofTime/bloodmagic/api/registry/HarvestRegistry.java +++ b/src/main/java/WayofTime/bloodmagic/api/registry/HarvestRegistry.java @@ -2,7 +2,6 @@ package WayofTime.bloodmagic.api.registry; import WayofTime.bloodmagic.api.BlockStack; import WayofTime.bloodmagic.api.iface.IHarvestHandler; -import lombok.Getter; import net.minecraft.block.Block; import net.minecraft.block.BlockStem; @@ -10,15 +9,10 @@ import java.util.*; public class HarvestRegistry { - @Getter private static List handlerList = new ArrayList(); - @Getter private static Map standardCrops = new HashMap(); - @Getter private static Set tallCrops = new HashSet(); - @Getter private static Map stemCrops = new HashMap(); - @Getter private static Map amplifierMap = new HashMap(); /** @@ -98,4 +92,24 @@ public class HarvestRegistry if (!amplifierMap.containsKey(blockStack)) amplifierMap.put(blockStack, range); } + + public static List getHandlerList() { + return new ArrayList(handlerList); + } + + public static Map getStandardCrops() { + return new HashMap(standardCrops); + } + + public static Set getTallCrops() { + return new HashSet(tallCrops); + } + + public static Map getStemCrops() { + return new HashMap(stemCrops); + } + + public static Map getAmplifierMap() { + return new HashMap(amplifierMap); + } } diff --git a/src/main/java/WayofTime/bloodmagic/api/registry/OrbRegistry.java b/src/main/java/WayofTime/bloodmagic/api/registry/OrbRegistry.java index bb6a47ff..f324a387 100644 --- a/src/main/java/WayofTime/bloodmagic/api/registry/OrbRegistry.java +++ b/src/main/java/WayofTime/bloodmagic/api/registry/OrbRegistry.java @@ -6,7 +6,6 @@ import WayofTime.bloodmagic.api.altar.EnumAltarTier; import WayofTime.bloodmagic.api.orb.BloodOrb; import WayofTime.bloodmagic.api.orb.IBloodOrb; import com.google.common.collect.ArrayListMultimap; -import lombok.Getter; import net.minecraft.client.resources.model.ModelBakery; import net.minecraft.client.resources.model.ModelResourceLocation; import net.minecraft.item.Item; @@ -26,9 +25,7 @@ import java.util.List; */ public class OrbRegistry { - @Getter private static List orbs = new ArrayList(); - @Getter private static ArrayListMultimap tierMap = ArrayListMultimap.create(); private static Item orbItem = Constants.BloodMagicItem.BLOOD_ORB.getItem(); @@ -111,4 +108,12 @@ public class OrbRegistry { return new ItemStack(orbItem, 1, getIndexOf(orb)); } + + public static List getOrbs() { + return new ArrayList(orbs); + } + + public static ArrayListMultimap getTierMap() { + return ArrayListMultimap.create(tierMap); + } } diff --git a/src/main/java/WayofTime/bloodmagic/api/registry/TartaricForgeRecipeRegistry.java b/src/main/java/WayofTime/bloodmagic/api/registry/TartaricForgeRecipeRegistry.java index 3e974a66..e4ab7276 100644 --- a/src/main/java/WayofTime/bloodmagic/api/registry/TartaricForgeRecipeRegistry.java +++ b/src/main/java/WayofTime/bloodmagic/api/registry/TartaricForgeRecipeRegistry.java @@ -3,7 +3,6 @@ package WayofTime.bloodmagic.api.registry; import java.util.ArrayList; import java.util.List; -import lombok.Getter; import net.minecraft.item.ItemStack; import net.minecraft.util.BlockPos; import net.minecraft.world.World; @@ -11,7 +10,6 @@ import WayofTime.bloodmagic.api.recipe.TartaricForgeRecipe; public class TartaricForgeRecipeRegistry { - @Getter private static List recipeList = new ArrayList(); public static void registerRecipe(TartaricForgeRecipe recipe) @@ -36,4 +34,8 @@ public class TartaricForgeRecipeRegistry return null; } + + public static List getRecipeList() { + return new ArrayList(recipeList); + } } \ No newline at end of file