2014-02-16 12:41:45 -06:00
|
|
|
package appeng.integration.modules.helpers;
|
2014-02-15 00:40:02 -06:00
|
|
|
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
import appeng.api.storage.IExternalStorageHandler;
|
|
|
|
import appeng.api.storage.IMEInventory;
|
|
|
|
import appeng.api.storage.StorageChannel;
|
|
|
|
import appeng.integration.modules.BC;
|
|
|
|
|
|
|
|
public class BCPipeHandler implements IExternalStorageHandler
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canHandle(TileEntity te, ForgeDirection d, StorageChannel chan)
|
|
|
|
{
|
|
|
|
return chan == StorageChannel.ITEMS && BC.instance.isPipe( te, d );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IMEInventory getInventory(TileEntity te, ForgeDirection d, StorageChannel chan)
|
|
|
|
{
|
|
|
|
if ( chan == StorageChannel.ITEMS )
|
|
|
|
return new BCPipeInventory( te, d );
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|