Uses of Class
org.rspeer.game.coord.Coord
-
-
Uses of Coord in jag.game.scene.entity
Methods in jag.game.scene.entity that return Coord Modifier and Type Method Description default CoordRSWorldEntity. getCoord() -
Uses of Coord in org.rspeer.game
Methods in org.rspeer.game with parameters of type Coord Modifier and Type Method Description static RSWorldMatrixGame. getMatrixAt(Coord coord) -
Uses of Coord in org.rspeer.game.adapter.component.inventory
Methods in org.rspeer.game.adapter.component.inventory that return Coord Modifier and Type Method Description CoordBank.Location. getCoord() -
Uses of Coord in org.rspeer.game.adapter.scene
Methods in org.rspeer.game.adapter.scene that return Coord Modifier and Type Method Description CoordEffectObject. getCoord()CoordHintArrow. getCoord()CoordPathingEntity. getCoord()CoordPickable. getCoord()CoordProjectile. getCoord()CoordSceneObject. getCoord()CoordWorldEntity. getCoord()CoordProjectile. getStartCoord()CoordProjectile. getTargetCoord()Methods in org.rspeer.game.adapter.scene that return types with arguments of type Coord Modifier and Type Method Description Set<Coord>WorldEntity. getCollision()Constructors in org.rspeer.game.adapter.scene with parameters of type Coord Constructor Description Pickable(RSPickable provider, Coord position, RSWorldMatrix matrix) -
Uses of Coord in org.rspeer.game.adapter.type
Methods in org.rspeer.game.adapter.type that return Coord Modifier and Type Method Description CoordSceneNode. getCoord()Methods in org.rspeer.game.adapter.type with parameters of type Coord Modifier and Type Method Description QSceneNode.Query. on(Coord... coords) -
Uses of Coord in org.rspeer.game.combat
Methods in org.rspeer.game.combat that return Coord Modifier and Type Method Description static CoordCannon. getCoord() -
Uses of Coord in org.rspeer.game.component
Methods in org.rspeer.game.component that return Coord Modifier and Type Method Description static CoordWorldMap. getGravestoneCoord()static CoordWorldMap. getHoveredCoord() -
Uses of Coord in org.rspeer.game.coord
Fields in org.rspeer.game.coord declared as Coord Modifier and Type Field Description static CoordCoord. NILMethods in org.rspeer.game.coord that return Coord Modifier and Type Method Description CoordCoord. dx(int x)CoordCoord. dy(int y)static CoordCoord. from(int x, int y)Creates a newCoordat the specified world X/Y coordinates on floor level0.static CoordCoord. from(int x, int y, int floorLevel)Creates a newCoordfrom world-space X/Y coordinates and a floor level.static CoordCoord. from(int x, int y, int floorLevel, float subX, float subY)static CoordCoord. fromFine(RSWorldMatrix matrix, CoordFine fine)static CoordCoord. fromFine(CoordFine fine)Converts aCoordFineinto a worldCoord, resolving the associatedRSWorldMatrixviaGame.getMatrix(int).static CoordCoord. fromGrid(int matrixId, CoordGrid grid)Converts aCoordGridinto a world-spaceCoordby resolving the associatedRSWorldMatrixusing the given matrix ID.static CoordCoord. fromGrid(RSWorldMatrix matrix, CoordGrid grid)Converts aCoordGrid(matrix-local tile coordinate) into a world-spaceCoordusing the givenRSWorldMatrix.static CoordCoord. fromGrid(CoordGrid grid)static CoordCoord. fromPacked(int packed)Unpacks a 32-bit packed coordinate into aCoord.CoordSceneContext. getBase()Returns the world-space base coordinate of this scene.CoordCoord. getCoord()CoordCoord. getSource()static CoordCoord. rotate(Coord coord, int rotation)Rotates a coordinate within its containing 8x8 chunk by the given rotation.CoordCoord. translate(int x, int y)CoordCoord. translate(Direction direction)Methods in org.rspeer.game.coord that return types with arguments of type Coord Modifier and Type Method Description Set<Coord>Coord. getInstanced()Methods in org.rspeer.game.coord with parameters of type Coord Modifier and Type Method Description static CoordFineCoordFine. fromCoord(RSWorldMatrix matrix, Coord coord, int subX, int subY)Converts a world tile coordinate into a fine coordinate *relative to a specificRSWorldMatrix*, using the given sub-tile offsets.static CoordFineCoordFine. fromCoord(Coord coord, int subX, int subY)Converts a world tile coordinate into a fine coordinate *relative to the matrix associated with the givenCoord*, using the specified sub-tile offsets.static CoordGridCoordGrid. fromCoord(Coord coord)Converts aCoord(tile coordinate with sub tile fraction) into aCoordGrid.static CoordFineCoordFine. fromCoordCenter(RSWorldMatrix matrix, Coord coord)Creates a fine coordinate at the center of a world tile, relative to the givenRSWorldMatrix.static CoordFineCoordFine. fromCoordCenter(Coord coord)Creates a fine coordinate at the center of a world tile, relative to the matrix associated with the given coord.static CoordFineCoordFine. fromCoordOrigin(RSWorldMatrix matrix, Coord coord)Creates a fine coordinate at the exact origin (bottom-left corner) of a world tile, relative to the givenRSWorldMatrix.static CoordFineCoordFine. fromCoordOrigin(Coord coord)Creates a fine coordinate at the exact origin (bottom-left corner) of a world tile, relative to the matrix associated with the given coord.static CoordCoord. rotate(Coord coord, int rotation)Rotates a coordinate within its containing 8x8 chunk by the given rotation. -
Uses of Coord in org.rspeer.game.coord.shape
Methods in org.rspeer.game.coord.shape that return Coord Modifier and Type Method Description CoordCoordArea. getBottomLeft()CoordCoordArea. getBottomRight()CoordCoordArea. getTopLeft()CoordCoordArea. getTopRight()Methods in org.rspeer.game.coord.shape that return types with arguments of type Coord Modifier and Type Method Description Set<Coord>CoordArea. getBoundary(boolean outer)Returns all coordinates forming the perimeter of the rectangle.Set<Coord>CoordPolygon. getBoundary(boolean outer)Set<Coord>CoordShape. getBoundary(boolean outer)Returns all coordinates on the boundary (perimeter) of the shape.Set<Coord>CoordArea. getCoords()Returns all coordinates contained within this rectangular area.Set<Coord>CoordPolygon. getCoords()Set<Coord>CoordShape. getCoords()Returns all coordinates contained within this shape.Set<Coord>CoordArea. getVertices()Returns the four rectangle corner coordinates in a fixed order: bottom-left, top-left, bottom-right, top-right.Set<Coord>CoordPolygon. getVertices()Set<Coord>CoordShape. getVertices()Returns the set of vertices defining this shape.Methods in org.rspeer.game.coord.shape with parameters of type Coord Modifier and Type Method Description static CoordAreaCoordArea. from(Coord coord)static CoordAreaCoordArea. from(Coord a, Coord b)Constructs a rectangular coordinate area from two opposite corner coordinates, using the floor of the coord as the area floorstatic CoordAreaCoordArea. from(Coord a, Coord b, int floorLevel)Constructs a rectangular coordinate area from two opposite corner coordinates.static CoordPolygonCoordPolygon. from(Coord... vertices)Constructs a polygonal shape from the given vertices.static CoordAreaCoordArea. surrounding(Coord origin, int distance) -
Uses of Coord in org.rspeer.game.event
Methods in org.rspeer.game.event that return Coord Modifier and Type Method Description CoordSceneObjectSpawnEvent. getCoord()CoordMovementEvent. getNextCoord()CoordMovementEvent. getPreviousCoord()CoordProjectileMovementEvent. getTargetCoord()Constructors in org.rspeer.game.event with parameters of type Coord Constructor Description MovementEvent(PathingEntity source, Position previous, Position next, Coord previousCoord, Coord nextCoord)Constructs a prototypical Event.ProjectileMovementEvent(Projectile source, Coord coord, int height, int cycle)Constructs a prototypical Event. -
Uses of Coord in org.rspeer.game.house
Methods in org.rspeer.game.house that return Coord Modifier and Type Method Description CoordHouse.Location. getCoord() -
Uses of Coord in org.rspeer.game.movement.pathfinding
Methods in org.rspeer.game.movement.pathfinding that return types with arguments of type Coord Modifier and Type Method Description static List<Coord>LocalPathing. calculate(Coord start, Coord end)static List<Coord>LocalPathing. calculate(Coord start, Coord end, int maxScore)static List<Coord>LocalPathing. calculate(Coord start, Coord end, int maxScore, BiPredicate<Coord,Coord> override)static List<Coord>LocalPathing. calculate(Coord start, Coord end, BiPredicate<Coord,Coord> override)Methods in org.rspeer.game.movement.pathfinding with parameters of type Coord Modifier and Type Method Description static List<Coord>LocalPathing. calculate(Coord start, Coord end)static List<Coord>LocalPathing. calculate(Coord start, Coord end, int maxScore)static List<Coord>LocalPathing. calculate(Coord start, Coord end, int maxScore, BiPredicate<Coord,Coord> override)static List<Coord>LocalPathing. calculate(Coord start, Coord end, BiPredicate<Coord,Coord> override)static intLocalPathing. getDistance(Coord from, Coord to)static booleanLocalPathing. isValid(Direction dir, Coord from, Coord to, boolean ignoreStartBlocked)Method parameters in org.rspeer.game.movement.pathfinding with type arguments of type Coord Modifier and Type Method Description static List<Coord>LocalPathing. calculate(Coord start, Coord end, int maxScore, BiPredicate<Coord,Coord> override)static List<Coord>LocalPathing. calculate(Coord start, Coord end, int maxScore, BiPredicate<Coord,Coord> override)static List<Coord>LocalPathing. calculate(Coord start, Coord end, BiPredicate<Coord,Coord> override)static List<Coord>LocalPathing. calculate(Coord start, Coord end, BiPredicate<Coord,Coord> override) -
Uses of Coord in org.rspeer.game.movement.pathfinding.util
Methods in org.rspeer.game.movement.pathfinding.util with parameters of type Coord Modifier and Type Method Description static booleanCollisionFlags. isBlocked(Coord coord) -
Uses of Coord in org.rspeer.game.position
Methods in org.rspeer.game.position that return Coord Modifier and Type Method Description CoordPosition. getCoord()Deprecated.Methods in org.rspeer.game.position with parameters of type Coord Modifier and Type Method Description static PositionPosition. from(Coord coord)Deprecated. -
Uses of Coord in org.rspeer.game.query.scene
Methods in org.rspeer.game.query.scene with parameters of type Coord Modifier and Type Method Description PickableQueryPickableQuery. on(Coord... positions)QSceneNodeQuery. on(Coord... coords)SceneObjectQuerySceneObjectQuery. on(Coord... positions) -
Uses of Coord in org.rspeer.game.scene
Methods in org.rspeer.game.scene with parameters of type Coord Modifier and Type Method Description static SceneNodeQueryResults<Pickable>Pickables. getAt(RSWorldMatrix matrix, Coord position)static SceneNodeQueryResults<Pickable>Pickables. getAt(Coord position) -
Uses of Coord in org.rspeer.game.script.tools
Fields in org.rspeer.game.script.tools declared as Coord Modifier and Type Field Description static CoordRestockTask. GRAND_EXCHANGE
-