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
|
package gregtech.common.tileentities.machines.multi.drone;
import static gregtech.GTMod.gregtechproxy;
import java.util.Optional;
import net.minecraft.client.Minecraft;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ChunkCoordinates;
import net.minecraft.world.World;
import net.minecraftforge.common.DimensionManager;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.metatileentity.implementations.MTEMultiBlockBase;
import gregtech.api.util.GTLanguageManager;
import gregtech.api.util.GTUtil;
import gregtech.api.util.GTUtility;
public class DroneConnection {
String customName;
String unlocalizedName;
MTEMultiBlockBase machine;
ItemStack machineItem;
ChunkCoordinates machineCoord;
MTEDroneCentre centre;
ChunkCoordinates centreCoord;
World world;
public DroneConnection(MTEMultiBlockBase machine, MTEDroneCentre centre) {
this.machine = machine;
this.machineItem = machine.getStackForm(1);
machineCoord = machine.getBaseMetaTileEntity()
.getCoords();
this.centre = centre;
centreCoord = centre.getBaseMetaTileEntity()
.getCoords();
this.world = centre.getBaseMetaTileEntity()
.getWorld();
unlocalizedName = machine.mName;
customName = Optional.ofNullable(centre.tempNameList.remove(machineCoord.toString()))
.orElse(machine.getLocalName());
}
public DroneConnection(NBTTagCompound aNBT) {
NBTTagCompound machineTag = aNBT.getCompoundTag("machine");
NBTTagCompound centreTag = aNBT.getCompoundTag("centre");
if (!gregtechproxy.isClientSide()) {
this.world = DimensionManager.getWorld(aNBT.getInteger("worldID"));
} else {
this.world = Minecraft.getMinecraft().thePlayer.worldObj;
}
machineItem = ItemStack.loadItemStackFromNBT(aNBT.getCompoundTag("item"));
machineCoord = new ChunkCoordinates(
machineTag.getInteger("x"),
machineTag.getInteger("y"),
machineTag.getInteger("z"));
this.machine = getLoadedGT_BaseMachineAt(machineCoord, world, true);
centreCoord = new ChunkCoordinates(
centreTag.getInteger("x"),
centreTag.getInteger("y"),
centreTag.getInteger("z"));
this.centre = (MTEDroneCentre) getLoadedGT_BaseMachineAt(centreCoord, world, true);
this.customName = aNBT.getString("name");
this.unlocalizedName = aNBT.getString("unlocalizedName");
}
public MTEMultiBlockBase getMachine() {
return machine;
}
public boolean reCheckConnection() {
if (machine == null) this.machine = getLoadedGT_BaseMachineAt(machineCoord, world, true);
if (centre == null) this.centre = (MTEDroneCentre) getLoadedGT_BaseMachineAt(centreCoord, world, true);
if (machine != null && centre != null
&& !centre.getConnectionList()
.contains(this))
centre.getConnectionList()
.add(this);
return isValid();
}
public String getCustomName(boolean localized) {
if (localized) return GTLanguageManager.getTranslation("gt.blockmachines." + unlocalizedName + ".name");
return customName;
}
public float getDistanceSquared() {
return centreCoord.getDistanceSquaredToChunkCoordinates(machineCoord);
}
public void setCustomName(String name) {
customName = name;
}
public boolean isMachineShutdown() {
return machine != null && machine.shouldDisplayShutDownReason()
&& !machine.getBaseMetaTileEntity()
.isActive()
&& GTUtility.isStringValid(
machine.getBaseMetaTileEntity()
.getLastShutDownReason()
.getDisplayString())
&& machine.getBaseMetaTileEntity()
.wasShutdown();
}
public NBTTagCompound transConnectionToNBT() {
NBTTagCompound aNBT = new NBTTagCompound();
aNBT.setTag("machine", transCoordsToNBT(machineCoord));
aNBT.setTag("centre", transCoordsToNBT(centreCoord));
aNBT.setTag("item", machineItem.writeToNBT(new NBTTagCompound()));
aNBT.setInteger(
"worldID",
centre.getBaseMetaTileEntity()
.getWorld().provider.dimensionId);
aNBT.setString("name", getCustomName(false));
aNBT.setString("unlocalizedName", unlocalizedName);
return aNBT;
}
public MTEMultiBlockBase getLoadedGT_BaseMachineAt(ChunkCoordinates coords, World world, boolean isLoaded) {
TileEntity te = GTUtil.getTileEntity(world, coords, isLoaded);
if (te == null) return null;
return (MTEMultiBlockBase) ((IGregTechTileEntity) te).getMetaTileEntity();
}
private NBTTagCompound transCoordsToNBT(ChunkCoordinates coord) {
NBTTagCompound tag = new NBTTagCompound();
tag.setInteger("x", coord.posX);
tag.setInteger("y", coord.posY);
tag.setInteger("z", coord.posZ);
return tag;
}
public boolean isValid() {
return machine != null && machine.isValid() && centre != null && centre.isValid();
}
}
|