ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityGrinder.java

274 lines
11 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("TileEntityGrinder.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.tile;
2015-10-03 22:09:53 +02:00
2015-05-20 22:39:43 +02:00
import cofh.api.energy.EnergyStorage;
import cofh.api.energy.IEnergyReceiver;
import de.ellpeck.actuallyadditions.mod.config.values.ConfigBoolValues;
2016-05-01 22:26:26 +02:00
import de.ellpeck.actuallyadditions.mod.misc.SoundHandler;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.recipe.CrusherRecipeRegistry;
import de.ellpeck.actuallyadditions.mod.util.Util;
2016-07-04 20:15:41 +02:00
import net.minecraft.block.Block;
import net.minecraft.block.state.IBlockState;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.EnumFacing;
2016-05-01 22:26:26 +02:00
import net.minecraft.util.SoundCategory;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2015-11-15 18:14:39 +01:00
import java.util.List;
public class TileEntityGrinder extends TileEntityInventoryBase implements IEnergyReceiver{
2015-05-20 22:39:43 +02:00
2015-10-03 10:16:18 +02:00
public static final int SLOT_INPUT_1 = 0;
public static final int SLOT_OUTPUT_1_1 = 1;
public static final int SLOT_OUTPUT_1_2 = 2;
public static final int SLOT_INPUT_2 = 3;
public static final int SLOT_OUTPUT_2_1 = 4;
public static final int SLOT_OUTPUT_2_2 = 5;
public static final int ENERGY_USE = 40;
2016-05-19 20:05:12 +02:00
public final EnergyStorage storage = new EnergyStorage(60000);
2015-10-03 10:16:18 +02:00
public int firstCrushTime;
public int secondCrushTime;
public boolean isDouble;
private int lastEnergy;
2015-10-03 10:16:18 +02:00
private int lastFirstCrush;
private int lastSecondCrush;
2015-10-03 10:19:40 +02:00
2015-10-03 10:16:18 +02:00
public TileEntityGrinder(int slots, String name){
super(slots, name);
}
2015-10-03 10:19:40 +02:00
2015-10-03 10:16:18 +02:00
public TileEntityGrinder(){
super(3, "grinder");
this.isDouble = false;
}
2015-05-20 22:39:43 +02:00
@Override
public int receiveEnergy(EnumFacing from, int maxReceive, boolean simulate){
2015-05-20 22:39:43 +02:00
return this.storage.receiveEnergy(maxReceive, simulate);
}
@Override
public int getEnergyStored(EnumFacing from){
2015-05-20 22:39:43 +02:00
return this.storage.getEnergyStored();
}
@Override
public int getMaxEnergyStored(EnumFacing from){
2015-05-20 22:39:43 +02:00
return this.storage.getMaxEnergyStored();
}
@Override
public boolean canConnectEnergy(EnumFacing from){
2015-05-20 22:39:43 +02:00
return true;
}
@Override
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
if(type != NBTType.SAVE_BLOCK){
compound.setInteger("FirstCrushTime", this.firstCrushTime);
compound.setInteger("SecondCrushTime", this.secondCrushTime);
}
this.storage.writeToNBT(compound);
super.writeSyncableNBT(compound, type);
}
@Override
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
if(type != NBTType.SAVE_BLOCK){
this.firstCrushTime = compound.getInteger("FirstCrushTime");
this.secondCrushTime = compound.getInteger("SecondCrushTime");
}
this.storage.readFromNBT(compound);
super.readSyncableNBT(compound, type);
}
@Override
public void updateEntity(){
super.updateEntity();
2016-05-02 17:46:53 +02:00
if(!this.worldObj.isRemote){
2015-06-21 02:28:49 +02:00
boolean flag = this.firstCrushTime > 0 || this.secondCrushTime > 0;
boolean canCrushOnFirst = this.canCrushOn(SLOT_INPUT_1, SLOT_OUTPUT_1_1, SLOT_OUTPUT_1_2);
boolean canCrushOnSecond = false;
2015-10-03 10:16:18 +02:00
if(this.isDouble){
canCrushOnSecond = this.canCrushOn(SLOT_INPUT_2, SLOT_OUTPUT_2_1, SLOT_OUTPUT_2_2);
}
boolean shouldPlaySound = false;
if(canCrushOnFirst){
if(this.storage.getEnergyStored() >= ENERGY_USE){
if(this.firstCrushTime%30 == 0){
shouldPlaySound = true;
}
this.firstCrushTime++;
2016-05-02 17:46:53 +02:00
if(this.firstCrushTime >= this.getMaxCrushTime()){
this.finishCrushing(SLOT_INPUT_1, SLOT_OUTPUT_1_1, SLOT_OUTPUT_1_2);
this.firstCrushTime = 0;
}
this.storage.extractEnergy(ENERGY_USE, false);
}
}
2015-10-02 16:48:01 +02:00
else{
this.firstCrushTime = 0;
}
if(this.isDouble){
if(canCrushOnSecond){
if(this.storage.getEnergyStored() >= ENERGY_USE){
if(this.secondCrushTime%30 == 0){
shouldPlaySound = true;
}
this.secondCrushTime++;
2016-05-02 17:46:53 +02:00
if(this.secondCrushTime >= this.getMaxCrushTime()){
this.finishCrushing(SLOT_INPUT_2, SLOT_OUTPUT_2_1, SLOT_OUTPUT_2_2);
this.secondCrushTime = 0;
}
this.storage.extractEnergy(ENERGY_USE, false);
}
}
2015-10-02 16:48:01 +02:00
else{
this.secondCrushTime = 0;
}
}
2015-06-21 02:28:49 +02:00
if(flag != (this.firstCrushTime > 0 || this.secondCrushTime > 0)){
this.markDirty();
2016-07-04 20:15:41 +02:00
IBlockState state = this.worldObj.getBlockState(this.pos);
Block block = state.getBlock();
int meta = block.getMetaFromState(state);
2015-06-21 02:28:49 +02:00
if(meta == 1){
2015-10-02 16:48:01 +02:00
if(!this.canCrushOn(SLOT_INPUT_1, SLOT_OUTPUT_1_1, SLOT_OUTPUT_1_2) && (!this.isDouble || !this.canCrushOn(SLOT_INPUT_2, SLOT_OUTPUT_2_1, SLOT_OUTPUT_2_2))){
2016-07-04 20:15:41 +02:00
this.worldObj.setBlockState(this.pos, block.getStateFromMeta(0), 2);
2015-10-02 16:48:01 +02:00
}
}
else{
2016-07-04 20:15:41 +02:00
this.worldObj.setBlockState(this.pos, block.getStateFromMeta(1), 2);
2015-06-21 02:28:49 +02:00
}
}
2016-05-02 17:46:53 +02:00
if((this.lastEnergy != this.storage.getEnergyStored() || this.lastFirstCrush != this.firstCrushTime || this.lastSecondCrush != this.secondCrushTime) && this.sendUpdateWithInterval()){
this.lastEnergy = this.storage.getEnergyStored();
this.lastFirstCrush = this.firstCrushTime;
this.lastSecondCrush = this.secondCrushTime;
}
if(shouldPlaySound && !ConfigBoolValues.LESS_SOUND.isEnabled()){
2016-08-05 03:25:12 +02:00
this.worldObj.playSound(null, this.getPos().getX(), this.getPos().getY(), this.getPos().getZ(), SoundHandler.crusher, SoundCategory.BLOCKS, 0.15F, 1.0F);
}
}
}
2016-02-01 17:49:55 +01:00
@Override
public boolean isItemValidForSlot(int i, ItemStack stack){
2016-02-01 17:49:55 +01:00
return (i == SLOT_INPUT_1 || i == SLOT_INPUT_2) && CrusherRecipeRegistry.getRecipeFromInput(stack) != null;
}
public boolean canCrushOn(int theInput, int theFirstOutput, int theSecondOutput){
if(this.slots[theInput] != null){
2015-11-15 18:14:39 +01:00
List<ItemStack> outputOnes = CrusherRecipeRegistry.getOutputOnes(this.slots[theInput]);
if(outputOnes != null && !outputOnes.isEmpty()){
ItemStack outputOne = outputOnes.get(0);
2015-11-15 18:14:39 +01:00
List<ItemStack> outputTwos = CrusherRecipeRegistry.getOutputTwos(this.slots[theInput]);
ItemStack outputTwo = outputTwos == null ? null : outputTwos.get(0);
if(outputOne != null){
2015-12-16 20:06:12 +01:00
if(outputOne.getItemDamage() == Util.WILDCARD){
outputOne.setItemDamage(0);
}
if(outputTwo != null && outputTwo.getItemDamage() == Util.WILDCARD){
outputTwo.setItemDamage(0);
}
if((this.slots[theFirstOutput] == null || (this.slots[theFirstOutput].isItemEqual(outputOne) && this.slots[theFirstOutput].stackSize <= this.slots[theFirstOutput].getMaxStackSize()-outputOne.stackSize)) && (outputTwo == null || (this.slots[theSecondOutput] == null || (this.slots[theSecondOutput].isItemEqual(outputTwo) && this.slots[theSecondOutput].stackSize <= this.slots[theSecondOutput].getMaxStackSize()-outputTwo.stackSize)))){
return true;
}
}
}
}
return false;
}
2015-10-03 10:19:40 +02:00
private int getMaxCrushTime(){
return this.isDouble ? 150 : 100;
2015-10-03 10:19:40 +02:00
}
public void finishCrushing(int theInput, int theFirstOutput, int theSecondOutput){
2015-11-15 18:14:39 +01:00
List<ItemStack> outputOnes = CrusherRecipeRegistry.getOutputOnes(this.slots[theInput]);
if(outputOnes != null){
ItemStack outputOne = outputOnes.get(0);
if(outputOne != null){
2015-12-16 20:06:12 +01:00
if(outputOne.getItemDamage() == Util.WILDCARD){
outputOne.setItemDamage(0);
}
if(this.slots[theFirstOutput] == null){
this.slots[theFirstOutput] = outputOne.copy();
}
else if(this.slots[theFirstOutput].getItem() == outputOne.getItem()){
this.slots[theFirstOutput].stackSize += outputOne.stackSize;
}
2015-10-02 16:48:01 +02:00
}
2015-06-21 02:28:49 +02:00
}
2015-11-15 18:14:39 +01:00
List<ItemStack> outputTwos = CrusherRecipeRegistry.getOutputTwos(this.slots[theInput]);
if(outputTwos != null){
ItemStack outputTwo = outputTwos.get(0);
if(outputTwo != null){
2015-12-16 20:06:12 +01:00
if(outputTwo.getItemDamage() == Util.WILDCARD){
outputTwo.setItemDamage(0);
}
2015-11-22 18:58:23 +01:00
int rand = Util.RANDOM.nextInt(100)+1;
if(rand <= CrusherRecipeRegistry.getOutputTwoChance(this.slots[theInput])){
if(this.slots[theSecondOutput] == null){
this.slots[theSecondOutput] = outputTwo.copy();
}
else if(this.slots[theSecondOutput].getItem() == outputTwo.getItem()){
this.slots[theSecondOutput].stackSize += outputTwo.stackSize;
}
2015-10-02 16:48:01 +02:00
}
}
}
this.slots[theInput].stackSize--;
2015-10-03 10:16:18 +02:00
if(this.slots[theInput].stackSize <= 0){
this.slots[theInput] = null;
}
}
@SideOnly(Side.CLIENT)
2015-05-20 22:39:43 +02:00
public int getEnergyScaled(int i){
2015-10-02 16:48:01 +02:00
return this.storage.getEnergyStored()*i/this.storage.getMaxEnergyStored();
}
@SideOnly(Side.CLIENT)
public int getFirstTimeToScale(int i){
2015-10-02 16:48:01 +02:00
return this.firstCrushTime*i/this.getMaxCrushTime();
}
@SideOnly(Side.CLIENT)
public int getSecondTimeToScale(int i){
2015-10-02 16:48:01 +02:00
return this.secondCrushTime*i/this.getMaxCrushTime();
}
@Override
public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){
return this.isItemValidForSlot(slot, stack);
}
@Override
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
2015-05-20 22:39:43 +02:00
return slot == SLOT_OUTPUT_1_1 || slot == SLOT_OUTPUT_1_2 || slot == SLOT_OUTPUT_2_1 || slot == SLOT_OUTPUT_2_2;
2015-04-02 12:06:42 +02:00
}
2015-10-03 10:16:18 +02:00
}