ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/misc/MethodHandler.java

239 lines
11 KiB
Java
Raw Normal View History

2016-05-16 22:52:27 +02:00
/*
* This file ("MethodHandler.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2016-05-16 22:52:27 +02:00
*/
2016-05-14 13:51:18 +02:00
package de.ellpeck.actuallyadditions.mod.misc;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
import de.ellpeck.actuallyadditions.api.internal.IAtomicReconstructor;
2016-05-14 13:51:18 +02:00
import de.ellpeck.actuallyadditions.api.internal.IMethodHandler;
import de.ellpeck.actuallyadditions.api.recipe.CoffeeIngredient;
import de.ellpeck.actuallyadditions.api.recipe.LensConversionRecipe;
import de.ellpeck.actuallyadditions.mod.items.lens.LensRecipeHandler;
import de.ellpeck.actuallyadditions.mod.recipe.CrusherRecipeRegistry;
import net.minecraft.block.Block;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.item.ItemBlock;
2016-01-05 04:47:35 +01:00
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipe;
2016-01-05 04:47:35 +01:00
import net.minecraft.nbt.NBTTagCompound;
2016-03-18 23:47:22 +01:00
import net.minecraft.potion.Potion;
2016-01-05 04:47:35 +01:00
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.EnumParticleTypes;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.WorldServer;
2016-01-05 04:47:35 +01:00
import java.util.ArrayList;
import java.util.List;
2016-01-05 04:47:35 +01:00
2016-05-14 13:51:18 +02:00
public class MethodHandler implements IMethodHandler{
2016-01-05 04:47:35 +01:00
2016-05-14 13:51:18 +02:00
@Override
public boolean addEffectToStack(ItemStack stack, CoffeeIngredient ingredient){
2016-01-05 04:47:35 +01:00
boolean worked = false;
if(ingredient != null){
PotionEffect[] effects = ingredient.getEffects();
if(effects != null && effects.length > 0){
for(PotionEffect effect : effects){
2016-05-14 13:51:18 +02:00
PotionEffect effectHas = this.getSameEffectFromStack(stack, effect);
2016-01-05 04:47:35 +01:00
if(effectHas != null){
if(effectHas.getAmplifier() < ingredient.maxAmplifier-1){
2016-05-14 13:51:18 +02:00
this.addEffectProperties(stack, effect, false, true);
2016-01-05 04:47:35 +01:00
worked = true;
}
}
else{
2016-05-14 13:51:18 +02:00
this.addEffectToStack(stack, effect);
2016-01-05 04:47:35 +01:00
worked = true;
}
}
}
}
return worked;
}
2016-05-14 13:51:18 +02:00
@Override
public PotionEffect getSameEffectFromStack(ItemStack stack, PotionEffect effect){
PotionEffect[] effectsStack = this.getEffectsFromStack(stack);
2016-01-05 04:47:35 +01:00
if(effectsStack != null && effectsStack.length > 0){
for(PotionEffect effectStack : effectsStack){
2016-03-18 23:47:22 +01:00
if(effect.getPotion() == effectStack.getPotion()){
2016-01-05 04:47:35 +01:00
return effectStack;
}
}
}
return null;
}
2016-05-14 13:51:18 +02:00
@Override
public void addEffectProperties(ItemStack stack, PotionEffect effect, boolean addDur, boolean addAmp){
PotionEffect[] effects = this.getEffectsFromStack(stack);
2016-01-05 04:47:35 +01:00
stack.setTagCompound(new NBTTagCompound());
for(int i = 0; i < effects.length; i++){
2016-03-18 23:47:22 +01:00
if(effects[i].getPotion() == effect.getPotion()){
effects[i] = new PotionEffect(effects[i].getPotion(), effects[i].getDuration()+(addDur ? effect.getDuration() : 0), effects[i].getAmplifier()+(addAmp ? (effect.getAmplifier() > 0 ? effect.getAmplifier() : 1) : 0));
2016-01-05 04:47:35 +01:00
}
2016-05-14 13:51:18 +02:00
this.addEffectToStack(stack, effects[i]);
2016-01-05 04:47:35 +01:00
}
}
2016-05-14 13:51:18 +02:00
@Override
public void addEffectToStack(ItemStack stack, PotionEffect effect){
2016-01-05 04:47:35 +01:00
NBTTagCompound tag = stack.getTagCompound();
if(tag == null){
tag = new NBTTagCompound();
}
int prevCounter = tag.getInteger("Counter");
NBTTagCompound compound = new NBTTagCompound();
2016-03-18 23:47:22 +01:00
compound.setInteger("ID", Potion.getIdFromPotion(effect.getPotion()));
2016-01-05 04:47:35 +01:00
compound.setInteger("Duration", effect.getDuration());
compound.setInteger("Amplifier", effect.getAmplifier());
int counter = prevCounter+1;
tag.setTag(counter+"", compound);
tag.setInteger("Counter", counter);
stack.setTagCompound(tag);
}
2016-05-14 13:51:18 +02:00
@Override
public PotionEffect[] getEffectsFromStack(ItemStack stack){
2016-01-05 04:47:35 +01:00
ArrayList<PotionEffect> effects = new ArrayList<PotionEffect>();
NBTTagCompound tag = stack.getTagCompound();
if(tag != null){
int counter = tag.getInteger("Counter");
while(counter > 0){
NBTTagCompound compound = (NBTTagCompound)tag.getTag(counter+"");
2016-03-18 23:47:22 +01:00
PotionEffect effect = new PotionEffect(Potion.getPotionById(compound.getInteger("ID")), compound.getInteger("Duration"), compound.getByte("Amplifier"));
effects.add(effect);
2016-01-05 04:47:35 +01:00
counter--;
}
}
return effects.size() > 0 ? effects.toArray(new PotionEffect[effects.size()]) : null;
}
@Override
public boolean invokeConversionLens(IBlockState hitState, BlockPos hitBlock, IAtomicReconstructor tile){
2016-07-04 20:15:41 +02:00
if(hitBlock != null && !hitState.getBlock().isAir(hitState, tile.getWorldObject(), hitBlock)){
int range = 2;
//Converting the Blocks
for(int reachX = -range; reachX < range+1; reachX++){
for(int reachZ = -range; reachZ < range+1; reachZ++){
for(int reachY = -range; reachY < range+1; reachY++){
BlockPos pos = new BlockPos(hitBlock.getX()+reachX, hitBlock.getY()+reachY, hitBlock.getZ()+reachZ);
if(!tile.getWorldObject().isAirBlock(pos)){
IBlockState state = tile.getWorldObject().getBlockState(pos);
List<LensConversionRecipe> recipes = LensRecipeHandler.getRecipesFor(new ItemStack(state.getBlock(), 1, state.getBlock().getMetaFromState(state)));
for(LensConversionRecipe recipe : recipes){
if(recipe != null && recipe.type == tile.getLens() && tile.getEnergy() >= recipe.energyUse){
ItemStack output = recipe.outputStack;
if(output != null){
tile.getWorldObject().playEvent(2001, pos, Block.getStateId(tile.getWorldObject().getBlockState(pos)));
if(output.getItem() instanceof ItemBlock){
tile.getWorldObject().setBlockState(pos, Block.getBlockFromItem(output.getItem()).getStateFromMeta(output.getItemDamage()), 2);
}
else{
EntityItem item = new EntityItem(tile.getWorldObject(), pos.getX()+0.5, pos.getY()+0.5, pos.getZ()+0.5, output.copy());
tile.getWorldObject().spawnEntityInWorld(item);
tile.getWorldObject().setBlockToAir(pos);
}
tile.extractEnergy(recipe.energyUse);
break;
}
}
}
}
else{
if(tile.getWorldObject() instanceof WorldServer){
((WorldServer)tile.getWorldObject()).spawnParticle(EnumParticleTypes.END_ROD, false, pos.getX()+0.5, pos.getY()+0.5, pos.getZ()+0.5, 1, 0, 0, 0, 0D);
}
}
}
}
}
//Converting the Items
ArrayList<EntityItem> items = (ArrayList<EntityItem>)tile.getWorldObject().getEntitiesWithinAABB(EntityItem.class, new AxisAlignedBB(hitBlock.getX()-range, hitBlock.getY()-range, hitBlock.getZ()-range, hitBlock.getX()+range, hitBlock.getY()+range, hitBlock.getZ()+range));
for(EntityItem item : items){
ItemStack stack = item.getEntityItem();
if(!item.isDead && stack != null){
List<LensConversionRecipe> recipes = LensRecipeHandler.getRecipesFor(stack);
for(LensConversionRecipe recipe : recipes){
if(recipe != null && recipe.type == tile.getLens()){
int itemsPossible = Math.min(tile.getEnergy()/recipe.energyUse, stack.stackSize);
if(itemsPossible > 0){
item.setDead();
if(stack.stackSize-itemsPossible > 0){
ItemStack stackCopy = stack.copy();
stackCopy.stackSize -= itemsPossible;
EntityItem inputLeft = new EntityItem(tile.getWorldObject(), item.posX, item.posY, item.posZ, stackCopy);
tile.getWorldObject().spawnEntityInWorld(inputLeft);
}
ItemStack outputCopy = recipe.outputStack.copy();
outputCopy.stackSize = itemsPossible;
EntityItem newItem = new EntityItem(tile.getWorldObject(), item.posX, item.posY, item.posZ, outputCopy);
tile.getWorldObject().spawnEntityInWorld(newItem);
tile.extractEnergy(recipe.energyUse*itemsPossible);
break;
}
}
}
}
}
return true;
}
return false;
}
@Override
public boolean addCrusherRecipes(List<ItemStack> inputs, List<ItemStack> outputOnes, int outputOneAmounts, List<ItemStack> outputTwos, int outputTwoAmounts, int outputTwoChance){
boolean hasWorkedOnce = false;
for(ItemStack input : inputs){
if(input != null && CrusherRecipeRegistry.getRecipeFromInput(input) == null){
for(ItemStack outputOne : outputOnes){
if(outputOne != null && !CrusherRecipeRegistry.hasBlacklistedOutput(outputOne)){
ItemStack outputOneCopy = outputOne.copy();
outputOneCopy.stackSize = outputOneAmounts;
if(outputTwos == null || outputTwos.isEmpty()){
ActuallyAdditionsAPI.addCrusherRecipe(input, outputOneCopy, null, 0);
hasWorkedOnce = true;
}
else{
for(ItemStack outputTwo : outputTwos){
if(outputTwo != null && !CrusherRecipeRegistry.hasBlacklistedOutput(outputTwo)){
ItemStack outputTwoCopy = outputTwo.copy();
outputTwoCopy.stackSize = outputTwoAmounts;
ActuallyAdditionsAPI.addCrusherRecipe(input, outputOneCopy, outputTwoCopy, outputTwoChance);
hasWorkedOnce = true;
}
}
}
}
}
}
}
return hasWorkedOnce;
}
2016-01-05 04:47:35 +01:00
}