2018-07-30 18:41:52 +02:00
|
|
|
/*
|
|
|
|
* This file is part of Industrial Wires.
|
|
|
|
* Copyright (C) 2016-2018 malte0811
|
|
|
|
* Industrial Wires is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
* Industrial Wires is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Industrial Wires. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package malte0811.industrialWires.blocks.controlpanel;
|
|
|
|
|
|
|
|
import malte0811.industrialWires.blocks.TileEntityIWBase;
|
|
|
|
import malte0811.industrialWires.controlpanel.ControlPanelNetwork;
|
|
|
|
import malte0811.industrialWires.controlpanel.ControlPanelNetwork.IOwner;
|
|
|
|
import malte0811.industrialWires.util.MiscUtils;
|
2018-07-31 17:34:18 +02:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2018-07-30 18:41:52 +02:00
|
|
|
import net.minecraft.util.EnumFacing;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
|
|
|
|
import javax.annotation.Nonnull;
|
|
|
|
|
2018-07-31 17:34:18 +02:00
|
|
|
public class TileEntityGeneralCP extends TileEntityIWBase implements IOwner {
|
2018-07-30 18:41:52 +02:00
|
|
|
@Nonnull
|
|
|
|
protected ControlPanelNetwork panelNetwork = new ControlPanelNetwork();
|
|
|
|
|
|
|
|
public void setNetworkAndInit(ControlPanelNetwork newNet) {
|
|
|
|
panelNetwork = newNet;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onLoad() {
|
|
|
|
super.onLoad();
|
2018-07-30 21:51:58 +02:00
|
|
|
if (!world.isRemote) {
|
|
|
|
boolean isFinalNet = false;
|
2018-07-31 17:34:18 +02:00
|
|
|
if (canJoinNetwork()) {
|
|
|
|
for (EnumFacing side : EnumFacing.VALUES) {
|
|
|
|
BlockPos posSide = pos.offset(side);
|
|
|
|
TileEntityGeneralCP neighbour = MiscUtils.getExistingTE(world, posSide, TileEntityGeneralCP.class);
|
|
|
|
if (neighbour != null && neighbour.canJoinNetwork()) {
|
|
|
|
if (!isFinalNet) {
|
|
|
|
panelNetwork = neighbour.panelNetwork;
|
|
|
|
panelNetwork.addMember(this);
|
|
|
|
isFinalNet = true;
|
|
|
|
} else {
|
|
|
|
neighbour.panelNetwork.replaceWith(panelNetwork, world);
|
|
|
|
}
|
2018-07-30 21:51:58 +02:00
|
|
|
}
|
2018-07-30 18:41:52 +02:00
|
|
|
}
|
|
|
|
}
|
2018-07-30 21:51:58 +02:00
|
|
|
if (!isFinalNet) {
|
|
|
|
panelNetwork.addMember(this);
|
|
|
|
}
|
2018-07-30 18:41:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onChunkUnload() {
|
|
|
|
super.onChunkUnload();
|
|
|
|
panelNetwork.removeMember(pos, world);
|
|
|
|
}
|
|
|
|
|
2018-07-31 17:34:18 +02:00
|
|
|
@Override
|
|
|
|
public void writeNBT(NBTTagCompound out, boolean updatePacket) {}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readNBT(NBTTagCompound in, boolean updatePacket) {}
|
|
|
|
|
2018-07-30 18:41:52 +02:00
|
|
|
@Override
|
|
|
|
public void invalidate() {
|
|
|
|
super.invalidate();
|
|
|
|
panelNetwork.removeMember(pos, world);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public BlockPos getBlockPos() {
|
|
|
|
return pos;
|
|
|
|
}
|
2018-07-31 17:34:18 +02:00
|
|
|
|
|
|
|
public boolean canJoinNetwork() {
|
|
|
|
return true;
|
|
|
|
}
|
2018-07-30 18:41:52 +02:00
|
|
|
}
|