2017-04-10 16:20:39 +02:00
|
|
|
/*
|
2016-09-29 16:19:16 +02:00
|
|
|
* This file is part of Industrial Wires.
|
2018-02-28 21:06:33 +01:00
|
|
|
* Copyright (C) 2016-2018 malte0811
|
2016-09-29 16:19:16 +02:00
|
|
|
* 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/>.
|
2017-04-10 16:20:39 +02:00
|
|
|
*/
|
2016-12-08 17:52:34 +01:00
|
|
|
package malte0811.industrialWires.blocks.wire;
|
2016-09-15 20:43:18 +02:00
|
|
|
|
|
|
|
import blusunrize.immersiveengineering.api.energy.wires.IImmersiveConnectable;
|
|
|
|
import blusunrize.immersiveengineering.api.energy.wires.ImmersiveNetHandler.Connection;
|
|
|
|
import blusunrize.immersiveengineering.api.energy.wires.WireType;
|
|
|
|
import net.minecraft.util.EnumFacing;
|
|
|
|
import net.minecraft.util.math.Vec3d;
|
|
|
|
|
2018-01-31 21:51:34 +01:00
|
|
|
import static malte0811.industrialWires.wires.IC2Wiretype.GOLD;
|
2018-01-30 21:59:09 +01:00
|
|
|
import static malte0811.industrialWires.wires.IC2Wiretype.IC2_GOLD_CAT;
|
|
|
|
|
2016-09-15 20:43:18 +02:00
|
|
|
public class TileEntityIC2ConnectorGold extends TileEntityIC2ConnectorTin {
|
|
|
|
|
|
|
|
public TileEntityIC2ConnectorGold(boolean rel) {
|
|
|
|
super(rel);
|
|
|
|
}
|
|
|
|
|
2017-05-11 16:39:20 +02:00
|
|
|
public TileEntityIC2ConnectorGold() {
|
|
|
|
}
|
|
|
|
|
2016-09-15 20:43:18 +02:00
|
|
|
{
|
|
|
|
tier = 3;
|
2018-01-31 21:51:34 +01:00
|
|
|
maxStored = GOLD.getTransferRate() / GOLD.getFactor();
|
2016-09-15 20:43:18 +02:00
|
|
|
}
|
2017-05-11 16:39:20 +02:00
|
|
|
|
2016-09-15 20:43:18 +02:00
|
|
|
@Override
|
|
|
|
public boolean canConnect(WireType t) {
|
2018-01-30 21:59:09 +01:00
|
|
|
return IC2_GOLD_CAT.equals(t.getCategory());
|
2016-09-15 20:43:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Vec3d getRaytraceOffset(IImmersiveConnectable link) {
|
2017-08-22 18:33:05 +02:00
|
|
|
EnumFacing side = facing.getOpposite();
|
2017-05-11 16:39:20 +02:00
|
|
|
return new Vec3d(.5 + side.getFrontOffsetX() * .125, .5 + side.getFrontOffsetY() * .125, .5 + side.getFrontOffsetZ() * .125);
|
2016-09-15 20:43:18 +02:00
|
|
|
}
|
2017-05-11 16:39:20 +02:00
|
|
|
|
2016-09-15 20:43:18 +02:00
|
|
|
@Override
|
|
|
|
public Vec3d getConnectionOffset(Connection con) {
|
2017-08-22 18:33:05 +02:00
|
|
|
EnumFacing side = facing.getOpposite();
|
2017-05-11 16:39:20 +02:00
|
|
|
double conRadius = con.cableType.getRenderDiameter() / 2;
|
|
|
|
return new Vec3d(.5 + side.getFrontOffsetX() * (.0625 - conRadius), .5 + side.getFrontOffsetY() * (.0625 - conRadius), .5 + side.getFrontOffsetZ() * (.0625 - conRadius));
|
2016-09-15 20:43:18 +02:00
|
|
|
}
|
|
|
|
}
|