1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
package gregtech.common.covers;
import net.minecraftforge.common.util.ForgeDirection;
import gregtech.api.GregTechAPI;
import gregtech.api.interfaces.ITexture;
import gregtech.api.interfaces.tileentity.ICoverable;
public class CoverRedstoneReceiverExternal extends CoverRedstoneWirelessBase {
public CoverRedstoneReceiverExternal(ITexture coverTexture) {
super(coverTexture);
}
@Override
public boolean isRedstoneSensitive(ForgeDirection side, int aCoverID, int aCoverVariable, ICoverable aTileEntity,
long aTimer) {
return false;
}
@Override
public int doCoverThings(ForgeDirection side, byte aInputRedstone, int aCoverID, int aCoverVariable,
ICoverable aTileEntity, long aTimer) {
aTileEntity.setOutputRedstoneSignal(
side,
GregTechAPI.sWirelessRedstone.get(aCoverVariable) == null ? 0
: GregTechAPI.sWirelessRedstone.get(aCoverVariable));
return aCoverVariable;
}
@Override
public boolean manipulatesSidedRedstoneOutput(ForgeDirection side, int aCoverID, int aCoverVariable,
ICoverable aTileEntity) {
return true;
}
@Override
public int getTickRate(ForgeDirection side, int aCoverID, int aCoverVariable, ICoverable aTileEntity) {
return 1;
}
}
|