2015-06-23 22:29:05 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-09-04 22:43:17 +00:00
|
|
|
public boolean manipulatesSidedRedstoneOutput(byte aSide, int aCoverID, int aCoverVariable, ICoverable aTileEntity)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-23 22:29:05 +00:00
|
|
|
public int getTickRate(byte aSide, int aCoverID, int aCoverVariable, ICoverable aTileEntity)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2015-04-23 16:14:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Location: F:\Torrent\minecraft\jd-gui-0.3.6.windows\gregtech_1.7.10-5.07.07-dev.jar
|
|
|
|
* Qualified Name: gregtech.common.covers.GT_Cover_RedstoneTransmitterInternal
|
|
|
|
* JD-Core Version: 0.7.0.1
|
|
|
|
*/
|