All Getter methods for lists/maps in registry now return new copies

This commit is contained in:
Nick 2016-02-18 09:49:12 -08:00
parent d997932306
commit 48622bf2e7
5 changed files with 40 additions and 13 deletions

View file

@ -21,7 +21,6 @@ public class AlchemyArrayRecipeRegistry
{ {
public static final AlchemyCircleRenderer defaultRenderer = new AlchemyCircleRenderer(new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/BaseArray.png")); public static final AlchemyCircleRenderer defaultRenderer = new AlchemyCircleRenderer(new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/BaseArray.png"));
@Getter
private static BiMap<ItemStackWrapper, AlchemyArrayRecipe> recipes = HashBiMap.create(); private static BiMap<ItemStackWrapper, AlchemyArrayRecipe> recipes = HashBiMap.create();
/** /**
@ -223,4 +222,8 @@ public class AlchemyArrayRecipeRegistry
return null; return null;
} }
} }
public static BiMap<ItemStackWrapper, AlchemyArrayRecipe> getRecipes() {
return HashBiMap.create(recipes);
}
} }

View file

@ -13,7 +13,6 @@ import javax.annotation.Nullable;
public class AltarRecipeRegistry public class AltarRecipeRegistry
{ {
@Getter
private static BiMap<ItemStack, AltarRecipe> recipes = HashBiMap.create(); private static BiMap<ItemStack, AltarRecipe> recipes = HashBiMap.create();
public static void registerRecipe(AltarRecipe recipe) public static void registerRecipe(AltarRecipe recipe)
@ -92,4 +91,8 @@ public class AltarRecipeRegistry
// (this.fillable this.areRequiredTagsEqual(comparedStack) : true); // (this.fillable this.areRequiredTagsEqual(comparedStack) : true);
} }
} }
public static BiMap<ItemStack, AltarRecipe> getRecipes() {
return HashBiMap.create(recipes);
}
} }

View file

@ -2,7 +2,6 @@ package WayofTime.bloodmagic.api.registry;
import WayofTime.bloodmagic.api.BlockStack; import WayofTime.bloodmagic.api.BlockStack;
import WayofTime.bloodmagic.api.iface.IHarvestHandler; import WayofTime.bloodmagic.api.iface.IHarvestHandler;
import lombok.Getter;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.BlockStem; import net.minecraft.block.BlockStem;
@ -10,15 +9,10 @@ import java.util.*;
public class HarvestRegistry public class HarvestRegistry
{ {
@Getter
private static List<IHarvestHandler> handlerList = new ArrayList<IHarvestHandler>(); private static List<IHarvestHandler> handlerList = new ArrayList<IHarvestHandler>();
@Getter
private static Map<Block, Integer> standardCrops = new HashMap<Block, Integer>(); private static Map<Block, Integer> standardCrops = new HashMap<Block, Integer>();
@Getter
private static Set<BlockStack> tallCrops = new HashSet<BlockStack>(); private static Set<BlockStack> tallCrops = new HashSet<BlockStack>();
@Getter
private static Map<BlockStack, BlockStack> stemCrops = new HashMap<BlockStack, BlockStack>(); private static Map<BlockStack, BlockStack> stemCrops = new HashMap<BlockStack, BlockStack>();
@Getter
private static Map<BlockStack, Integer> amplifierMap = new HashMap<BlockStack, Integer>(); private static Map<BlockStack, Integer> amplifierMap = new HashMap<BlockStack, Integer>();
/** /**
@ -98,4 +92,24 @@ public class HarvestRegistry
if (!amplifierMap.containsKey(blockStack)) if (!amplifierMap.containsKey(blockStack))
amplifierMap.put(blockStack, range); amplifierMap.put(blockStack, range);
} }
public static List<IHarvestHandler> getHandlerList() {
return new ArrayList<IHarvestHandler>(handlerList);
}
public static Map<Block, Integer> getStandardCrops() {
return new HashMap<Block, Integer>(standardCrops);
}
public static Set<BlockStack> getTallCrops() {
return new HashSet<BlockStack>(tallCrops);
}
public static Map<BlockStack, BlockStack> getStemCrops() {
return new HashMap<BlockStack, BlockStack>(stemCrops);
}
public static Map<BlockStack, Integer> getAmplifierMap() {
return new HashMap<BlockStack, Integer>(amplifierMap);
}
} }

View file

@ -6,7 +6,6 @@ import WayofTime.bloodmagic.api.altar.EnumAltarTier;
import WayofTime.bloodmagic.api.orb.BloodOrb; import WayofTime.bloodmagic.api.orb.BloodOrb;
import WayofTime.bloodmagic.api.orb.IBloodOrb; import WayofTime.bloodmagic.api.orb.IBloodOrb;
import com.google.common.collect.ArrayListMultimap; import com.google.common.collect.ArrayListMultimap;
import lombok.Getter;
import net.minecraft.client.resources.model.ModelBakery; import net.minecraft.client.resources.model.ModelBakery;
import net.minecraft.client.resources.model.ModelResourceLocation; import net.minecraft.client.resources.model.ModelResourceLocation;
import net.minecraft.item.Item; import net.minecraft.item.Item;
@ -26,9 +25,7 @@ import java.util.List;
*/ */
public class OrbRegistry public class OrbRegistry
{ {
@Getter
private static List<BloodOrb> orbs = new ArrayList<BloodOrb>(); private static List<BloodOrb> orbs = new ArrayList<BloodOrb>();
@Getter
private static ArrayListMultimap<Integer, ItemStack> tierMap = ArrayListMultimap.create(); private static ArrayListMultimap<Integer, ItemStack> tierMap = ArrayListMultimap.create();
private static Item orbItem = Constants.BloodMagicItem.BLOOD_ORB.getItem(); private static Item orbItem = Constants.BloodMagicItem.BLOOD_ORB.getItem();
@ -111,4 +108,12 @@ public class OrbRegistry
{ {
return new ItemStack(orbItem, 1, getIndexOf(orb)); return new ItemStack(orbItem, 1, getIndexOf(orb));
} }
public static List<BloodOrb> getOrbs() {
return new ArrayList<BloodOrb>(orbs);
}
public static ArrayListMultimap<Integer, ItemStack> getTierMap() {
return ArrayListMultimap.create(tierMap);
}
} }

View file

@ -3,7 +3,6 @@ package WayofTime.bloodmagic.api.registry;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import lombok.Getter;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.util.BlockPos; import net.minecraft.util.BlockPos;
import net.minecraft.world.World; import net.minecraft.world.World;
@ -11,7 +10,6 @@ import WayofTime.bloodmagic.api.recipe.TartaricForgeRecipe;
public class TartaricForgeRecipeRegistry public class TartaricForgeRecipeRegistry
{ {
@Getter
private static List<TartaricForgeRecipe> recipeList = new ArrayList<TartaricForgeRecipe>(); private static List<TartaricForgeRecipe> recipeList = new ArrayList<TartaricForgeRecipe>();
public static void registerRecipe(TartaricForgeRecipe recipe) public static void registerRecipe(TartaricForgeRecipe recipe)
@ -36,4 +34,8 @@ public class TartaricForgeRecipeRegistry
return null; return null;
} }
public static List<TartaricForgeRecipe> getRecipeList() {
return new ArrayList<TartaricForgeRecipe>(recipeList);
}
} }