Skip to content

Commit 4c48416

Browse files
committed
Make local/relative destinations when possible
1 parent b87a810 commit 4c48416

File tree

5 files changed

+33
-5
lines changed

5 files changed

+33
-5
lines changed

src/main/java/org/dimdev/dimdoors/shared/items/ItemRiftSignature.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
import net.minecraft.world.World;
1818
import org.dimdev.ddutils.RotatedLocation;
1919
import org.dimdev.dimdoors.shared.blocks.ModBlocks;
20+
import org.dimdev.dimdoors.shared.rifts.DestinationMaker;
2021
import org.dimdev.dimdoors.shared.rifts.destinations.GlobalDestination;
2122
import org.dimdev.dimdoors.shared.sound.ModSounds;
2223
import org.dimdev.dimdoors.shared.tileentities.TileEntityFloatingRift;
@@ -70,15 +71,15 @@ public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos
7071
World sourceWorld = target.getLocation().getWorld();
7172
sourceWorld.setBlockState(target.getLocation().getPos(), ModBlocks.RIFT.getDefaultState());
7273
TileEntityFloatingRift rift1 = (TileEntityFloatingRift) target.getLocation().getTileEntity();
73-
rift1.setDestination(new GlobalDestination(new Location(world, pos)));
74+
rift1.setDestination(DestinationMaker.relativeIfPossible(target.getLocation(), new Location(world, pos)));
7475
rift1.setTeleportTargetRotation(target.getYaw(), 0); // setting pitch to 0 because player is always facing down to place rift
7576
rift1.register();
7677
}
7778

7879
// Place a rift at the target point
7980
world.setBlockState(pos, ModBlocks.RIFT.getDefaultState());
8081
TileEntityFloatingRift rift2 = (TileEntityFloatingRift) world.getTileEntity(pos);
81-
rift2.setDestination(new GlobalDestination(target.getLocation()));
82+
rift2.setDestination(DestinationMaker.relativeIfPossible(new Location(world, pos), target.getLocation()));
8283
rift2.setTeleportTargetRotation(player.rotationYaw, 0);
8384
rift2.register();
8485

src/main/java/org/dimdev/dimdoors/shared/items/ItemStabilizedRiftSignature.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
import org.dimdev.dimdoors.DimDoors;
1818
import org.dimdev.ddutils.RotatedLocation;
1919
import org.dimdev.dimdoors.shared.blocks.ModBlocks;
20+
import org.dimdev.dimdoors.shared.rifts.DestinationMaker;
2021
import org.dimdev.dimdoors.shared.rifts.destinations.GlobalDestination;
2122
import org.dimdev.dimdoors.shared.sound.ModSounds;
2223
import org.dimdev.dimdoors.shared.tileentities.TileEntityFloatingRift;
@@ -77,7 +78,7 @@ public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos
7778
// Place a rift at the source point
7879
world.setBlockState(pos, ModBlocks.RIFT.getDefaultState());
7980
TileEntityFloatingRift rift2 = (TileEntityFloatingRift) world.getTileEntity(pos);
80-
rift2.setDestination(new GlobalDestination(target.getLocation()));
81+
rift2.setDestination(DestinationMaker.relativeIfPossible(new Location(world, pos), target.getLocation()));
8182
rift2.setTeleportTargetRotation(player.rotationYaw, 0);
8283
rift2.register();
8384

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package org.dimdev.dimdoors.shared.rifts;
2+
3+
import net.minecraft.util.math.Vec3i;
4+
import org.dimdev.ddutils.Location;
5+
import org.dimdev.dimdoors.shared.rifts.destinations.GlobalDestination;
6+
import org.dimdev.dimdoors.shared.rifts.destinations.LocalDestination;
7+
import org.dimdev.dimdoors.shared.rifts.destinations.RelativeDestination;
8+
9+
public final class DestinationMaker {
10+
public static RiftDestination localIfPossible(Location from, Location to) {
11+
if (from.getDim() != to.getDim()) {
12+
return new GlobalDestination(to);
13+
} else {
14+
return new LocalDestination(to.getPos());
15+
}
16+
}
17+
18+
public static RiftDestination relativeIfPossible(Location from, Location to) {
19+
if (from.getDim() != to.getDim()) {
20+
return new GlobalDestination(to);
21+
} else {
22+
return new RelativeDestination(new Vec3i(to.getX() - from.getX(), to.getY() - from.getY(), to.getZ() - from.getZ()));
23+
}
24+
}
25+
}

src/main/java/org/dimdev/dimdoors/shared/rifts/destinations/AvailableLinkDestination.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public boolean teleport(RotatedLocation location, Entity entity) {
169169
private static void linkRifts(Location from, Location to) {
170170
TileEntityRift tileEntityFrom = (TileEntityRift) from.getTileEntity();
171171
TileEntityRift tileEntityTo = (TileEntityRift) to.getTileEntity();
172-
tileEntityFrom.setDestination(new GlobalDestination(to)); // TODO: local if possible
172+
tileEntityFrom.setDestination(DestinationMaker.localIfPossible(from, to));
173173
tileEntityFrom.markDirty();
174174
if (tileEntityTo.getProperties() != null) {
175175
tileEntityTo.getProperties().linksRemaining--;

src/main/java/org/dimdev/dimdoors/shared/rifts/destinations/RestoringDestination.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import org.dimdev.ddutils.Location;
66
import org.dimdev.ddutils.RGBA;
77
import org.dimdev.ddutils.RotatedLocation;
8+
import org.dimdev.dimdoors.shared.rifts.DestinationMaker;
89
import org.dimdev.dimdoors.shared.rifts.RiftDestination;
910

1011
public abstract class RestoringDestination extends RiftDestination {
@@ -27,7 +28,7 @@ public boolean teleport(RotatedLocation loc, Entity entity) {
2728

2829
Location linkTarget = makeLinkTarget(loc, entity);
2930
if (linkTarget != null) {
30-
wrappedDestination = new GlobalDestination(linkTarget);
31+
wrappedDestination = DestinationMaker.localIfPossible(loc.getLocation(), linkTarget);
3132
wrappedDestination.register(loc.getLocation());
3233

3334
wrappedDestination.teleport(loc, entity);

0 commit comments

Comments
 (0)