From d1c11b675b371b6df393b0279a7919e1421b0f73 Mon Sep 17 00:00:00 2001 From: Jordan Atwood Date: Fri, 12 Oct 2018 11:49:10 -0700 Subject: [PATCH] Remove deprecated TileObjectQuery class --- .../runelite/api/queries/TileObjectQuery.java | 116 ------------------ 1 file changed, 116 deletions(-) delete mode 100644 runelite-api/src/main/java/net/runelite/api/queries/TileObjectQuery.java diff --git a/runelite-api/src/main/java/net/runelite/api/queries/TileObjectQuery.java b/runelite-api/src/main/java/net/runelite/api/queries/TileObjectQuery.java deleted file mode 100644 index 13c0c83788..0000000000 --- a/runelite-api/src/main/java/net/runelite/api/queries/TileObjectQuery.java +++ /dev/null @@ -1,116 +0,0 @@ -/* - * Copyright (c) 2017, Devin French - * 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.queries; - -import static java.lang.Math.abs; -import net.runelite.api.Client; -import net.runelite.api.Constants; -import net.runelite.api.Query; -import net.runelite.api.Scene; -import net.runelite.api.Tile; -import net.runelite.api.TileObject; - -import java.util.ArrayList; -import java.util.List; -import net.runelite.api.coords.LocalPoint; -import net.runelite.api.coords.WorldPoint; - -/** - * Used for getting decorative objects in view, deprecated as of existence of Object* spawn events - */ -@Deprecated -public abstract class TileObjectQuery extends Query -{ - protected List getTiles(Client client) - { - List tilesList = new ArrayList<>(); - Scene scene = client.getScene(); - Tile[][][] tiles = scene.getTiles(); - int z = client.getPlane(); - for (int x = 0; x < Constants.SCENE_SIZE; ++x) - { - for (int y = 0; y < Constants.SCENE_SIZE; ++y) - { - Tile tile = tiles[z][x][y]; - if (tile == null) - { - continue; - } - tilesList.add(tile); - } - } - return tilesList; - } - - @SuppressWarnings("unchecked") - public QueryType idEquals(int... ids) - { - predicate = and(object -> - { - for (int id : ids) - { - if (object.getId() == id) - { - return true; - } - } - return false; - }); - return (QueryType) this; - } - - @SuppressWarnings("unchecked") - public QueryType atWorldLocation(WorldPoint location) - { - predicate = and(object -> object.getWorldLocation().equals(location)); - return (QueryType) this; - } - - @SuppressWarnings("unchecked") - public QueryType atLocalLocation(LocalPoint location) - { - predicate = and(object -> object.getLocalLocation().equals(location)); - return (QueryType) this; - } - - @SuppressWarnings("unchecked") - public QueryType isWithinDistance(LocalPoint to, int distance) - { - predicate = and(a -> a.getLocalLocation().distanceTo(to) <= distance); - return (QueryType) this; - } - - @SuppressWarnings("unchecked") - public QueryType isWithinArea(LocalPoint from, int area) - { - predicate = and(a -> - { - LocalPoint localLocation = a.getLocalLocation(); - return abs(localLocation.getX() - from.getX()) < area - && abs(localLocation.getY() - from.getY()) < area; - }); - return (QueryType) this; - } -}