mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
125 lines
4.2 KiB
Java
125 lines
4.2 KiB
Java
|
/*
|
|||
|
* This file ("TileEntityRangedCollector.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|||
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|||
|
*
|
|||
|
* <EFBFBD> 2015 Ellpeck
|
|||
|
*/
|
|||
|
|
|||
|
package ellpeck.actuallyadditions.tile;
|
|||
|
|
|||
|
import ellpeck.actuallyadditions.network.gui.IButtonReactor;
|
|||
|
import ellpeck.actuallyadditions.network.sync.IPacketSyncerToClient;
|
|||
|
import ellpeck.actuallyadditions.network.sync.PacketSyncerToClient;
|
|||
|
import ellpeck.actuallyadditions.util.WorldUtil;
|
|||
|
import net.minecraft.entity.item.EntityItem;
|
|||
|
import net.minecraft.entity.player.EntityPlayer;
|
|||
|
import net.minecraft.item.ItemStack;
|
|||
|
import net.minecraft.nbt.NBTTagCompound;
|
|||
|
import net.minecraft.util.AxisAlignedBB;
|
|||
|
|
|||
|
import java.util.ArrayList;
|
|||
|
|
|||
|
public class TileEntityRangedCollector extends TileEntityInventoryBase implements IButtonReactor, IPacketSyncerToClient{
|
|||
|
|
|||
|
public static final int WHITELIST_START = 6;
|
|||
|
|
|||
|
public boolean isWhitelist = true;
|
|||
|
private boolean lastWhitelist;
|
|||
|
|
|||
|
public TileEntityRangedCollector(){
|
|||
|
super(18, "rangedCollector");
|
|||
|
}
|
|||
|
|
|||
|
@Override
|
|||
|
@SuppressWarnings("unchecked")
|
|||
|
public void updateEntity(){
|
|||
|
if(!worldObj.isRemote){
|
|||
|
if(!worldObj.isBlockIndirectlyGettingPowered(xCoord, yCoord, zCoord)){
|
|||
|
int range = 8;
|
|||
|
ArrayList<EntityItem> items = (ArrayList<EntityItem>)this.worldObj.getEntitiesWithinAABB(EntityItem.class, AxisAlignedBB.getBoundingBox(this.xCoord-range, this.yCoord-range, this.zCoord-range, this.xCoord+range, this.yCoord+range, this.zCoord+range));
|
|||
|
if(!items.isEmpty()){
|
|||
|
for(EntityItem item : items){
|
|||
|
if(item.getEntityItem() != null){
|
|||
|
ItemStack toAdd = item.getEntityItem().copy();
|
|||
|
if(this.checkFilter(toAdd)){
|
|||
|
ArrayList<ItemStack> checkList = new ArrayList<ItemStack>();
|
|||
|
checkList.add(toAdd);
|
|||
|
if(WorldUtil.addToInventory(this.slots, 0, WHITELIST_START, checkList, false)){
|
|||
|
WorldUtil.addToInventory(this.slots, 0, WHITELIST_START, checkList, true);
|
|||
|
item.setDead();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if(this.isWhitelist != this.lastWhitelist){
|
|||
|
this.lastWhitelist = this.isWhitelist;
|
|||
|
this.sendUpdate();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private boolean checkFilter(ItemStack stack){
|
|||
|
int slotStop = WHITELIST_START+12;
|
|||
|
|
|||
|
for(int i = WHITELIST_START; i < slotStop; i++){
|
|||
|
if(this.slots[i] != null && this.slots[i].isItemEqual(stack)){
|
|||
|
return this.isWhitelist;
|
|||
|
}
|
|||
|
}
|
|||
|
return !this.isWhitelist;
|
|||
|
}
|
|||
|
|
|||
|
@Override
|
|||
|
public void readFromNBT(NBTTagCompound compound){
|
|||
|
super.readFromNBT(compound);
|
|||
|
this.isWhitelist = compound.getBoolean("Whitelist");
|
|||
|
}
|
|||
|
|
|||
|
@Override
|
|||
|
public void writeToNBT(NBTTagCompound compound){
|
|||
|
super.writeToNBT(compound);
|
|||
|
compound.setBoolean("Whitelist", this.isWhitelist);
|
|||
|
}
|
|||
|
|
|||
|
@Override
|
|||
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
@Override
|
|||
|
public boolean canInsertItem(int slot, ItemStack stack, int side){
|
|||
|
return this.isItemValidForSlot(slot, stack);
|
|||
|
}
|
|||
|
|
|||
|
@Override
|
|||
|
public boolean canExtractItem(int slot, ItemStack stack, int side){
|
|||
|
return slot < WHITELIST_START;
|
|||
|
}
|
|||
|
|
|||
|
@Override
|
|||
|
public void onButtonPressed(int buttonID, EntityPlayer player){
|
|||
|
this.isWhitelist = !this.isWhitelist;
|
|||
|
}
|
|||
|
|
|||
|
@Override
|
|||
|
public int[] getValues(){
|
|||
|
return new int[]{this.isWhitelist ? 1 : 0};
|
|||
|
}
|
|||
|
|
|||
|
@Override
|
|||
|
public void setValues(int[] values){
|
|||
|
this.isWhitelist = values[0] == 1;
|
|||
|
}
|
|||
|
|
|||
|
@Override
|
|||
|
public void sendUpdate(){
|
|||
|
PacketSyncerToClient.sendPacket(this);
|
|||
|
}
|
|||
|
}
|