This commit is contained in:
Anuken
2022-07-21 07:56:09 -04:00
parent 5f4f07a10a
commit 1476c4dacd
4 changed files with 15 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
package mindustry.world.blocks.distribution;
import arc.math.geom.*;
import mindustry.gen.*;
import mindustry.type.*;
import mindustry.world.*;
@@ -17,6 +18,14 @@ public class ArmoredConveyor extends Conveyor{
(lookingAt(tile, rotation, otherx, othery, otherblock) && otherblock.hasItems);
}
@Override
public boolean blendsArmored(Tile tile, int rotation, int otherx, int othery, int otherrot, Block otherblock){
return Point2.equals(tile.x + Geometry.d4(rotation).x, tile.y + Geometry.d4(rotation).y, otherx, othery)
|| ((!otherblock.rotatedOutput(otherx, othery) && Edges.getFacingEdge(otherblock, otherx, othery, tile) != null &&
Edges.getFacingEdge(otherblock, otherx, othery, tile).relativeTo(tile) == rotation) ||
(otherblock instanceof Conveyor && otherblock.rotatedOutput(otherx, othery) && Point2.equals(otherx + Geometry.d4(otherrot).x, othery + Geometry.d4(otherrot).y, tile.x, tile.y)));
}
public class ArmoredConveyorBuild extends ConveyorBuild{
@Override
public boolean acceptItem(Building source, Item item){