Package net.eternalclient.api.rs
Interface RSWorldView
-
public interface RSWorldView
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getBaseX()
int
getBaseY()
RSEntity[]
getCachedEntities()
RSNPC[]
getCachedNPCs()
RSPlayer[]
getCachedPlayers()
RSCollisionMap[]
getCollisionMaps()
RSWorldViewData
getData()
int
getEntityCount()
int[]
getEntityIndices()
RSNodeDeque
getGraphicsObjectDeque()
RSNodeDeque[][][]
getGroundItemDeque()
int
getId()
Get the world view idint
getNpcIndexesCount()
int[]
getNpcIndices()
int
getPlane()
RSNodeDeque
getProjectilesDeque()
RSScene
getScene()
int[][][]
getTileHeights()
byte[][][]
getTileSettings()
boolean
isTopLevel()
Test if this worldview is the top level world view.
-
-
-
Method Detail
-
getId
int getId()
Get the world view id- Returns:
- the id, or -1 if this is the top level worldview
-
isTopLevel
boolean isTopLevel()
Test if this worldview is the top level world view.- Returns:
-
getScene
RSScene getScene()
-
getData
RSWorldViewData getData()
-
getBaseX
int getBaseX()
-
getBaseY
int getBaseY()
-
getPlane
int getPlane()
-
getCachedPlayers
RSPlayer[] getCachedPlayers()
-
getNpcIndexesCount
int getNpcIndexesCount()
-
getNpcIndices
int[] getNpcIndices()
-
getCachedNPCs
RSNPC[] getCachedNPCs()
-
getEntityCount
int getEntityCount()
-
getEntityIndices
int[] getEntityIndices()
-
getCachedEntities
RSEntity[] getCachedEntities()
-
getCollisionMaps
RSCollisionMap[] getCollisionMaps()
-
getTileSettings
byte[][][] getTileSettings()
-
getTileHeights
int[][][] getTileHeights()
-
getGraphicsObjectDeque
RSNodeDeque getGraphicsObjectDeque()
-
getProjectilesDeque
RSNodeDeque getProjectilesDeque()
-
getGroundItemDeque
RSNodeDeque[][][] getGroundItemDeque()
-
-