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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
package gtnhlanth.common.hatch;
import static gregtech.api.enums.Dyes.MACHINE_METAL;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraftforge.common.util.ForgeDirection;
import gregtech.api.enums.Dyes;
import gregtech.api.enums.Textures;
import gregtech.api.interfaces.ITexture;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.metatileentity.MetaTileEntity;
import gregtech.api.objects.GTRenderedTexture;
import gtnhlanth.common.beamline.BeamLinePacket;
import gtnhlanth.common.beamline.IConnectsToBeamline;
import tectech.util.TTUtility;
public class MTEHatchInputBeamline extends MTEHatchBeamlineConnector<BeamLinePacket> {
private boolean delay = true;
private static final String activeIconPath = "iconsets/OVERLAY_BI_ACTIVE";
private static final String sideIconPath = "iconsets/OVERLAY_BI_SIDES";
private static final String connIconPath = "iconsets/BI_CONN";
private static final Textures.BlockIcons.CustomIcon activeIcon = new Textures.BlockIcons.CustomIcon(activeIconPath);
private static final Textures.BlockIcons.CustomIcon sideIcon = new Textures.BlockIcons.CustomIcon(sideIconPath);
private static final Textures.BlockIcons.CustomIcon connIcon = new Textures.BlockIcons.CustomIcon(connIconPath);
public MTEHatchInputBeamline(int id, String name, String nameRegional, int tier) {
super(id, name, nameRegional, tier, "");
TTUtility.setTier(tier, this);
}
public MTEHatchInputBeamline(String name, int tier, String[] desc, ITexture[][][] textures) {
super(name, tier, desc, textures);
}
@Override
public ITexture[] getTexturesActive(ITexture aBaseTexture) {
return new ITexture[] { aBaseTexture,
new GTRenderedTexture(
activeIcon,
Dyes.getModulation(getBaseMetaTileEntity().getColorization(), MACHINE_METAL.getRGBA())),
new GTRenderedTexture(connIcon) };
}
@Override
public ITexture[] getTexturesInactive(ITexture aBaseTexture) {
return new ITexture[] { aBaseTexture,
new GTRenderedTexture(
sideIcon,
Dyes.getModulation(getBaseMetaTileEntity().getColorization(), MACHINE_METAL.getRGBA())),
new GTRenderedTexture(connIcon) };
}
@Override
public MetaTileEntity newMetaEntity(IGregTechTileEntity tile) {
return new MTEHatchInputBeamline(mName, mTier, mDescriptionArray, mTextures);
}
@Override
protected BeamLinePacket loadPacketFromNBT(NBTTagCompound tag) {
return new BeamLinePacket(tag);
}
@Override
public boolean isInputFacing(ForgeDirection side) {
return side == getBaseMetaTileEntity().getFrontFacing();
}
@Override
public boolean isDataInputFacing(ForgeDirection side) {
return isInputFacing(side);
}
@Override
public boolean isOutputFacing(ForgeDirection aSide) {
return false;
}
@Override
public boolean isFacingValid(ForgeDirection facing) {
return true;
}
@Override
public boolean isSimpleMachine() {
return true;
}
@Override
public boolean canConnect(ForgeDirection side) {
return isInputFacing(side);
}
@Override
public IConnectsToBeamline getNext(IConnectsToBeamline source) {
return null;
}
@Override
public String[] getDescription() {
return null;
}
public void setContents(BeamLinePacket in) {
if (in == null) {
this.q = null;
} else {
if (in.getContent()
.getRate() > 0) {
this.q = in;
delay = true;
} else {
this.q = null;
}
}
}
@Override
public void moveAround(IGregTechTileEntity tile) {
if (delay) {
delay = false;
} else {
this.setContents(null);
}
}
}
|