30 lines
964 B
Java
30 lines
964 B
Java
package gregtech.common.covers;
|
|
|
|
import gregtech.api.GregTech_API;
|
|
import gregtech.api.interfaces.tileentity.ICoverable;
|
|
import java.util.Map;
|
|
|
|
public class GT_Cover_RedstoneTransmitterInternal
|
|
extends GT_Cover_RedstoneWirelessBase
|
|
{
|
|
public int doCoverThings(byte aSide, byte aInputRedstone, int aCoverID, int aCoverVariable, ICoverable aTileEntity, long aTimer)
|
|
{
|
|
GregTech_API.sWirelessRedstone.put(Integer.valueOf(aCoverVariable), Byte.valueOf(aTileEntity.getOutputRedstoneSignal(aSide)));
|
|
return aCoverVariable;
|
|
}
|
|
|
|
public boolean letsRedstoneGoOut(byte aSide, int aCoverID, int aCoverVariable, ICoverable aTileEntity)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public boolean manipulatesSidedRedstoneOutput(byte aSide, int aCoverID, int aCoverVariable, ICoverable aTileEntity)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public int getTickRate(byte aSide, int aCoverID, int aCoverVariable, ICoverable aTileEntity)
|
|
{
|
|
return 1;
|
|
}
|
|
}
|