-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathFluidPipeNet.java
More file actions
executable file
·172 lines (154 loc) · 7.36 KB
/
FluidPipeNet.java
File metadata and controls
executable file
·172 lines (154 loc) · 7.36 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
package gregtech.common.pipelike.fluidpipe.net;
import codechicken.multipart.TMultiPart;
import codechicken.multipart.TileMultipart;
import gregtech.api.GTValues;
import gregtech.api.pipenet.MonolithicPipeNet;
import gregtech.api.pipenet.Node;
import gregtech.api.pipenet.PipeNet;
import gregtech.api.pipenet.WorldPipeNet;
import gregtech.api.pipenet.tile.IPipeTile;
import gregtech.common.pipelike.fluidpipe.FluidPipeProperties;
import gregtech.common.pipelike.fluidpipe.tile.TileEntityFluidPipe;
import net.minecraft.init.Blocks;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumParticleTypes;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.fluids.FluidStack;
import net.minecraftforge.fluids.FluidTank;
import net.minecraftforge.fml.common.Optional.Method;
import java.util.List;
import java.util.Map;
import java.util.Random;
public class FluidPipeNet extends MonolithicPipeNet<FluidPipeProperties> {
private final FluidNetTank fluidNetTank = new FluidNetTank(this);
public FluidPipeNet(WorldPipeNet<FluidPipeProperties, FluidPipeNet> world) {
super(world);
}
public FluidTank getFluidNetTank() {
return fluidNetTank;
}
public int getMaxThroughput() {
if (fluidNetTank.getCapacity() == 0) {
return 0;
}
return nodeData.throughput;
}
public void destroyNetwork(boolean isLeaking, boolean isBurning) {
World world = worldData.getWorld();
((WorldFluidPipeNet) (Object) worldData).removePipeNet(this);
for (BlockPos nodePos : getAllNodes().keySet()) {
TileEntity tileEntity = world.getTileEntity(nodePos);
if (tileEntity instanceof TileEntityFluidPipe) {
if (isBurning) {
world.setBlockState(nodePos, Blocks.FIRE.getDefaultState());
} else {
world.setBlockToAir(nodePos);
}
} else if (GTValues.isModLoaded(GTValues.MODID_FMP)) {
removeMultipartPipePartFromTile(tileEntity);
}
Random random = world.rand;
if (isBurning) {
TileEntityFluidPipe.spawnParticles(world, nodePos, EnumFacing.UP,
EnumParticleTypes.FLAME, 3 + random.nextInt(2), random);
if (random.nextInt(4) == 0) {
TileEntityFluidPipe.setNeighboursToFire(world, nodePos);
}
}
if (isLeaking) {
if (world.rand.nextInt(isBurning ? 3 : 7) == 0) {
world.createExplosion(null,
nodePos.getX() + 0.5, nodePos.getY() + 0.5, nodePos.getZ() + 0.5,
1.0f + world.rand.nextFloat(), false);
}
}
}
}
@Method(modid = GTValues.MODID_FMP)
private static void removeMultipartPipePartFromTile(TileEntity tileEntity) {
if (tileEntity instanceof TileMultipart) {
TileMultipart tileMultipart = (TileMultipart) tileEntity;
List<TMultiPart> partList = tileMultipart.jPartList();
for (TMultiPart tMultiPart : partList) {
if (tMultiPart instanceof IPipeTile) {
tileMultipart.remPart(tMultiPart);
}
}
}
}
@Override
protected void onConnectionsUpdate() {
super.onConnectionsUpdate();
//monolithic net always contains exactly one kind of nodes, so this is always safe
int newTankCapacity = nodeData.throughput * getAllNodes().size();
fluidNetTank.updateTankCapacity(newTankCapacity);
}
@Override
protected void transferNodeData(Map<BlockPos, Node<FluidPipeProperties>> transferredNodes, PipeNet<FluidPipeProperties> parentNet1) {
super.transferNodeData(transferredNodes, parentNet1);
FluidPipeNet parentNet = (FluidPipeNet) parentNet1;
FluidStack parentFluid = parentNet.getFluidNetTank().getFluid();
if (parentFluid != null && parentFluid.amount > 0) {
if (parentNet.getAllNodes().isEmpty()) {
//if this is merge of pipe nets, just add all fluid to our internal tank
//use fillInternal to ignore throughput restrictions
getFluidNetTank().fillInternal(parentFluid, true);
} else {
//otherwise, it is donating of some nodes to our net in result of split
//so, we should estabilish equal amount of fluid in networks
int firstNetCapacity = getAllNodes().size() * getNodeData().throughput;
int secondNetCapacity = parentNet.getAllNodes().size() * parentNet.getNodeData().throughput;
int totalFluidAmount = getFluidNetTank().getFluidAmount() + parentFluid.amount;
int fluidAmount1 = totalFluidAmount * firstNetCapacity / (firstNetCapacity + secondNetCapacity);
int fluidAmount2 = totalFluidAmount - fluidAmount1;
if (fluidAmount1 > 0) {
FluidStack fluidStack1 = parentFluid.copy();
fluidStack1.amount = fluidAmount1;
fluidNetTank.setFluid(fluidStack1);
} else fluidNetTank.setFluid(null);
if (fluidAmount2 > 0) {
FluidStack fluidStack2 = parentFluid.copy();
fluidStack2.amount = fluidAmount2;
parentNet.getFluidNetTank().setFluid(fluidStack2);
} else parentNet.getFluidNetTank().setFluid(null);
}
}
}
@Override
protected boolean areNodesCustomContactable(FluidPipeProperties first, FluidPipeProperties second, PipeNet<FluidPipeProperties> secondNodeNet) {
FluidPipeNet fluidPipeNet = (FluidPipeNet) secondNodeNet;
return super.areNodesCustomContactable(first, second, secondNodeNet) &&
(secondNodeNet == null || getFluidNetTank().getFluid() == null || fluidPipeNet.getFluidNetTank().getFluid() == null ||
getFluidNetTank().getFluid().isFluidEqual(fluidPipeNet.getFluidNetTank().getFluid()));
}
@Override
protected void writeNodeData(FluidPipeProperties nodeData, NBTTagCompound tagCompound) {
tagCompound.setInteger("max_temperature", nodeData.maxFluidTemperature);
tagCompound.setInteger("throughput", nodeData.throughput);
tagCompound.setBoolean("gas_proof", nodeData.gasProof);
}
@Override
protected FluidPipeProperties readNodeData(NBTTagCompound tagCompound) {
int maxTemperature = tagCompound.getInteger("max_temperature");
int throughput = tagCompound.getInteger("throughput");
boolean gasProof = tagCompound.getBoolean("gas_proof");
return new FluidPipeProperties(maxTemperature, throughput, gasProof);
}
@Override
public NBTTagCompound serializeNBT() {
final NBTTagCompound nbt = super.serializeNBT();
nbt.setTag("FluidNetTank", this.fluidNetTank.writeToNBT(new NBTTagCompound()));
return nbt;
}
@Override
public void deserializeNBT(final NBTTagCompound nbt) {
super.deserializeNBT(nbt);
final NBTTagCompound tankData = nbt.getCompoundTag("FluidNetTank");
// Guard against old data that didn't have this tag
if (tankData != null)
this.fluidNetTank.readFromNBT(tankData);
}
}