blob: bdf82ec5b06ceaf9b870e20735f108ad3f780e3b (
plain)
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
|
package gregtech.api.graphs.paths;
import gregtech.api.metatileentity.BaseMetaPipeEntity;
import gregtech.api.metatileentity.MetaPipeEntity;
//to contain all info about the path between nodes
public class NodePath {
protected MetaPipeEntity[] mPipes;
public NodePath(MetaPipeEntity[] aCables) {
this.mPipes = aCables;
processPipes();
}
protected void processPipes() {
for (MetaPipeEntity tPipe : mPipes) {
BaseMetaPipeEntity basePipe = (BaseMetaPipeEntity) tPipe.getBaseMetaTileEntity();
basePipe.setNodePath(this);
}
}
public void clearPath() {
for (int i = 0; i < mPipes.length; i++) {
BaseMetaPipeEntity tBasePipe = (BaseMetaPipeEntity) mPipes[i].getBaseMetaTileEntity();
if (tBasePipe != null) {
tBasePipe.setNodePath(null);
}
}
}
}
|