30 lines
1,000 B
Java
30 lines
1,000 B
Java
package appeng.integration.modules.helpers;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
import appeng.api.networking.security.BaseActionSource;
|
|
import appeng.api.storage.IExternalStorageHandler;
|
|
import appeng.api.storage.IMEInventory;
|
|
import appeng.api.storage.StorageChannel;
|
|
import appeng.integration.modules.FZ;
|
|
import appeng.me.storage.MEMonitorIInventory;
|
|
import appeng.util.inv.IMEAdaptor;
|
|
|
|
public class FactorizationHandler implements IExternalStorageHandler
|
|
{
|
|
|
|
@Override
|
|
public boolean canHandle(TileEntity te, ForgeDirection d, StorageChannel chan, BaseActionSource mySrc)
|
|
{
|
|
return chan == StorageChannel.ITEMS && FZ.instance.isBarrel( te );
|
|
}
|
|
|
|
@Override
|
|
public IMEInventory getInventory(TileEntity te, ForgeDirection d, StorageChannel chan, BaseActionSource src)
|
|
{
|
|
if ( chan == StorageChannel.ITEMS )
|
|
return new MEMonitorIInventory( new IMEAdaptor( FZ.instance.getFactorizationBarrel( te ), src ) );
|
|
return null;
|
|
}
|
|
|
|
}
|