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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
package ihl.processing.chemistry;
import java.util.ArrayList;
import java.util.List;
import ic2.api.network.INetworkDataProvider;
import ic2.api.tile.IWrenchable;
import ic2.core.IC2;
import ic2.core.network.NetworkManager;
import ihl.utils.IHLUtils;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.common.util.ForgeDirection;
import net.minecraftforge.fluids.Fluid;
import net.minecraftforge.fluids.FluidStack;
import net.minecraftforge.fluids.FluidTankInfo;
import net.minecraftforge.fluids.IFluidHandler;
public class FractionatorSectionTileEntity extends TileEntity implements IWrenchable, INetworkDataProvider, IFluidHandler{
private short facing=2;
private short lastFacing=2;
public FractionatorBottomTileEntity columnBottom;
public FractionatorSectionTileEntity()
{
super();
}
public boolean enableUpdateEntity()
{
return IC2.platform.isSimulating();
}
@Override
public List<String> getNetworkedFields()
{
List<String> fields = new ArrayList();
fields.add("facing");
return fields;
}
@Override
public void updateEntity()
{
super.updateEntity();
if(lastFacing!=facing)
{
IC2.network.get().updateTileEntityField(this, "facing");
lastFacing=facing;
}
}
@Override
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, int side) {
return this.getFacing()!=side;
}
@Override
public short getFacing() {
return this.facing;
}
@Override
public void setFacing(short facing1)
{
facing=(short) Math.max(2,facing1);
if(IC2.platform.isSimulating())
{
IC2.network.get().updateTileEntityField(this, "facing");
}
}
@Override
public boolean wrenchCanRemove(EntityPlayer entityPlayer) {
return true;
}
@Override
public float getWrenchDropRate() {
return 1F;
}
@Override
public ItemStack getWrenchDrop(EntityPlayer entityPlayer) {
return IHLUtils.getThisModItemStack("fractionatorSection");
}
@Override
public void readFromNBT(NBTTagCompound nbttagcompound)
{
super.readFromNBT(nbttagcompound);
facing=nbttagcompound.getShort("facing");
}
@Override
public void writeToNBT(NBTTagCompound nbttagcompound)
{
super.writeToNBT(nbttagcompound);
nbttagcompound.setShort("facing", facing);
}
@Override
public boolean canDrain(ForgeDirection arg0, Fluid arg1) {
return false;
}
@Override
public boolean canFill(ForgeDirection direction, Fluid arg1) {
return ForgeDirection.getOrientation(this.getFacing()).getRotation(ForgeDirection.UP).equals(direction);
}
@Override
public FluidStack drain(ForgeDirection arg0, FluidStack arg1, boolean arg2) {
return null;
}
@Override
public FluidStack drain(ForgeDirection arg0, int arg1, boolean arg2) {
return null;
}
@Override
public int fill(ForgeDirection direction, FluidStack fluidStack, boolean doFill) {
if(fluidStack!=null && fluidStack.getFluid()!=null && this.canFill(direction, fluidStack.getFluid()) && columnBottom!=null)
{
return columnBottom.fill(direction, fluidStack, doFill);
}
return 0;
}
@Override
public FluidTankInfo[] getTankInfo(ForgeDirection arg0)
{
return columnBottom.getTankInfo(arg0);
}
}
|