api: Add getMirrorPoint to WorldPoint API
This commit is contained in:
@@ -44,6 +44,14 @@ import net.runelite.api.Perspective;
|
|||||||
@Value
|
@Value
|
||||||
public class WorldPoint
|
public class WorldPoint
|
||||||
{
|
{
|
||||||
|
private static final int[] REGION_MIRRORS = {
|
||||||
|
// Prifddinas
|
||||||
|
12894, 8755,
|
||||||
|
12895, 8756,
|
||||||
|
13150, 9011,
|
||||||
|
13151, 9012
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* X-axis coordinate.
|
* X-axis coordinate.
|
||||||
*/
|
*/
|
||||||
@@ -373,4 +381,29 @@ public class WorldPoint
|
|||||||
{
|
{
|
||||||
return position & (REGION_SIZE - 1);
|
return position & (REGION_SIZE - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Translate a coordinate either between overworld and real, or real and overworld
|
||||||
|
*
|
||||||
|
* @param worldPoint
|
||||||
|
* @param toOverworld whether to convert to overworld coordinates, or to real coordinates
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public static WorldPoint getMirrorPoint(WorldPoint worldPoint, boolean toOverworld)
|
||||||
|
{
|
||||||
|
int region = worldPoint.getRegionID();
|
||||||
|
for (int i = 0; i < REGION_MIRRORS.length; i += 2)
|
||||||
|
{
|
||||||
|
int real = REGION_MIRRORS[i];
|
||||||
|
int overworld = REGION_MIRRORS[i + 1];
|
||||||
|
|
||||||
|
// Test against what we are converting from
|
||||||
|
if (region == (toOverworld ? real : overworld))
|
||||||
|
{
|
||||||
|
return fromRegion(toOverworld ? overworld : real,
|
||||||
|
worldPoint.getRegionX(), worldPoint.getRegionY(), worldPoint.getPlane());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return worldPoint;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,62 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2021 Jordan Atwood <nightfirecat@protonmail.com>
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
||||||
|
* list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||||
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
package net.runelite.api.coords;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertNotEquals;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
public class WorldPointTest
|
||||||
|
{
|
||||||
|
@Test
|
||||||
|
public void getGetMirrorPoint()
|
||||||
|
{
|
||||||
|
WorldPoint point, converted;
|
||||||
|
|
||||||
|
// Zalcano's entrance portal
|
||||||
|
point = new WorldPoint(3282, 6058, 0);
|
||||||
|
converted = WorldPoint.getMirrorPoint(point, true);
|
||||||
|
assertNotEquals(point, converted);
|
||||||
|
|
||||||
|
// Elven Crystal Chest, which is upstairs
|
||||||
|
point = new WorldPoint(3273, 6082, 2);
|
||||||
|
converted = WorldPoint.getMirrorPoint(point, true);
|
||||||
|
assertNotEquals(point, converted);
|
||||||
|
|
||||||
|
// Around the area of the Elite coordinate clue
|
||||||
|
point = new WorldPoint(2185, 3280, 0);
|
||||||
|
// To overworld
|
||||||
|
converted = WorldPoint.getMirrorPoint(point, true);
|
||||||
|
assertEquals(point, converted);
|
||||||
|
// To real
|
||||||
|
converted = WorldPoint.getMirrorPoint(point, false);
|
||||||
|
assertNotEquals(point, converted);
|
||||||
|
|
||||||
|
// Brugsen Bursen, Grand Exchange
|
||||||
|
point = new WorldPoint(3165, 3477, 0);
|
||||||
|
converted = WorldPoint.getMirrorPoint(point, false);
|
||||||
|
assertEquals(point, converted);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -142,13 +142,6 @@ public class ClueScrollPlugin extends Plugin
|
|||||||
private static final Color HIGHLIGHT_BORDER_COLOR = Color.ORANGE;
|
private static final Color HIGHLIGHT_BORDER_COLOR = Color.ORANGE;
|
||||||
private static final Color HIGHLIGHT_HOVER_BORDER_COLOR = HIGHLIGHT_BORDER_COLOR.darker();
|
private static final Color HIGHLIGHT_HOVER_BORDER_COLOR = HIGHLIGHT_BORDER_COLOR.darker();
|
||||||
private static final Color HIGHLIGHT_FILL_COLOR = new Color(0, 255, 0, 20);
|
private static final Color HIGHLIGHT_FILL_COLOR = new Color(0, 255, 0, 20);
|
||||||
private static final int[] REGION_MIRRORS = {
|
|
||||||
// Prifddinas
|
|
||||||
12894, 8755,
|
|
||||||
12895, 8756,
|
|
||||||
13150, 9011,
|
|
||||||
13151, 9012
|
|
||||||
};
|
|
||||||
private static final String CLUE_TAG_NAME = "clue";
|
private static final String CLUE_TAG_NAME = "clue";
|
||||||
|
|
||||||
@Getter
|
@Getter
|
||||||
@@ -850,7 +843,7 @@ public class ClueScrollPlugin extends Plugin
|
|||||||
|
|
||||||
WorldPoint coordinate = coordinatesToWorldPoint(degX, minX, degY, minY);
|
WorldPoint coordinate = coordinatesToWorldPoint(degX, minX, degY, minY);
|
||||||
// Convert from overworld to real
|
// Convert from overworld to real
|
||||||
WorldPoint mirrorPoint = getMirrorPoint(coordinate, false);
|
WorldPoint mirrorPoint = WorldPoint.getMirrorPoint(coordinate, false);
|
||||||
// Use mirror point as mirrorLocation if there is one
|
// Use mirror point as mirrorLocation if there is one
|
||||||
return new CoordinateClue(text, coordinate, coordinate == mirrorPoint ? null : mirrorPoint);
|
return new CoordinateClue(text, coordinate, coordinate == mirrorPoint ? null : mirrorPoint);
|
||||||
}
|
}
|
||||||
@@ -1132,31 +1125,6 @@ public class ClueScrollPlugin extends Plugin
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Translate a coordinate either between overworld and real, or real and overworld
|
|
||||||
*
|
|
||||||
* @param worldPoint
|
|
||||||
* @param toOverworld whether to convert to overworld coordinates, or to real coordinates
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public static WorldPoint getMirrorPoint(WorldPoint worldPoint, boolean toOverworld)
|
|
||||||
{
|
|
||||||
int region = worldPoint.getRegionID();
|
|
||||||
for (int i = 0; i < REGION_MIRRORS.length; i += 2)
|
|
||||||
{
|
|
||||||
int real = REGION_MIRRORS[i];
|
|
||||||
int overworld = REGION_MIRRORS[i + 1];
|
|
||||||
|
|
||||||
// Test against what we are converting from
|
|
||||||
if (region == (toOverworld ? real : overworld))
|
|
||||||
{
|
|
||||||
return WorldPoint.fromRegion(toOverworld ? overworld : real,
|
|
||||||
worldPoint.getRegionX(), worldPoint.getRegionY(), worldPoint.getPlane());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return worldPoint;
|
|
||||||
}
|
|
||||||
|
|
||||||
private boolean testClueTag(int itemId)
|
private boolean testClueTag(int itemId)
|
||||||
{
|
{
|
||||||
ClueScroll c = clue;
|
ClueScroll c = clue;
|
||||||
|
|||||||
@@ -307,7 +307,7 @@ public class HotColdClue extends ClueScroll implements LocationClueScroll, Locat
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Convert from real to overworld
|
// Convert from real to overworld
|
||||||
final WorldPoint localWorld = ClueScrollPlugin.getMirrorPoint(plugin.getClient().getLocalPlayer().getWorldLocation(), true);
|
final WorldPoint localWorld = WorldPoint.getMirrorPoint(plugin.getClient().getLocalPlayer().getWorldLocation(), true);
|
||||||
|
|
||||||
if (localWorld == null)
|
if (localWorld == null)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -45,8 +45,6 @@ import net.runelite.client.game.ItemManager;
|
|||||||
import net.runelite.client.plugins.banktags.TagManager;
|
import net.runelite.client.plugins.banktags.TagManager;
|
||||||
import net.runelite.client.plugins.cluescrolls.clues.hotcold.HotColdLocation;
|
import net.runelite.client.plugins.cluescrolls.clues.hotcold.HotColdLocation;
|
||||||
import net.runelite.client.ui.overlay.OverlayManager;
|
import net.runelite.client.ui.overlay.OverlayManager;
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertNotEquals;
|
|
||||||
import static org.junit.Assert.assertNotNull;
|
import static org.junit.Assert.assertNotNull;
|
||||||
import static org.junit.Assert.assertNull;
|
import static org.junit.Assert.assertNull;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
@@ -96,36 +94,6 @@ public class ClueScrollPluginTest
|
|||||||
Guice.createInjector(BoundFieldModule.of(this)).injectMembers(this);
|
Guice.createInjector(BoundFieldModule.of(this)).injectMembers(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void getGetMirrorPoint()
|
|
||||||
{
|
|
||||||
WorldPoint point, converted;
|
|
||||||
|
|
||||||
// Zalcano's entrance portal
|
|
||||||
point = new WorldPoint(3282, 6058, 0);
|
|
||||||
converted = ClueScrollPlugin.getMirrorPoint(point, true);
|
|
||||||
assertNotEquals(point, converted);
|
|
||||||
|
|
||||||
// Elven Crystal Chest, which is upstairs
|
|
||||||
point = new WorldPoint(3273, 6082, 2);
|
|
||||||
converted = ClueScrollPlugin.getMirrorPoint(point, true);
|
|
||||||
assertNotEquals(point, converted);
|
|
||||||
|
|
||||||
// Around the area of the Elite coordinate clue
|
|
||||||
point = new WorldPoint(2185, 3280, 0);
|
|
||||||
// To overworld
|
|
||||||
converted = ClueScrollPlugin.getMirrorPoint(point, true);
|
|
||||||
assertEquals(point, converted);
|
|
||||||
// To real
|
|
||||||
converted = ClueScrollPlugin.getMirrorPoint(point, false);
|
|
||||||
assertNotEquals(point, converted);
|
|
||||||
|
|
||||||
// Brugsen Bursen, Grand Exchange
|
|
||||||
point = new WorldPoint(3165, 3477, 0);
|
|
||||||
converted = ClueScrollPlugin.getMirrorPoint(point, false);
|
|
||||||
assertEquals(point, converted);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testLocationHintArrowCleared()
|
public void testLocationHintArrowCleared()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user