rle.core.ui
Interface CameraModel

All Superinterfaces:
BoardListener, PlugIn
All Known Implementing Classes:
CameraModelBase

public interface CameraModel
extends PlugIn, BoardListener

Handles the internals that drive the Camera display.


Method Summary
 void addListener(CameraModelListener l)
           
 void center()
          Calls centerOn(getObserver())
 void centerOn(Thing t)
          Set the camera's location such that t is at center.
 Board getBoard()
           
 RLRectangle getBounds()
           
 Camera getCamera()
          Retrieve the camera.
 RLPoint getCameraLocation()
          The camera's location, in the board coordinate system.
 Thing getObserver()
          Retrieve the observer.
 PlayPerspective getPerspective()
           
 RLDimension getTileSize()
          Retrieve the tile size.
 RLDimension getViewportSize()
          The size in grids of the viewport.
 boolean isKnown(Thing t)
          Is it known? Something is known if the observer is aware of it, whether or not it is actually drawn by the camera.
 java.util.TreeSet<Thing> knownThings(RLPoint boardLoc)
          All known Objects at a board location in the following order: player, npc, item, terrain.
 void removeListener(CameraModelListener l)
           
 void setBoard(Board b)
           
 void setCamera(Camera c)
          Set the camera.
 void setCameraLocation(RLPoint loc)
          Set the camera's location, in the board coordinate system.
 void setObserver(Thing t)
          Set the observer.
 void setPerspective(PlayPerspective pp)
           
 void setTileSize(RLDimension d)
          Set the tile size.
 void uninstall()
          Uninstall this CameraModel.
 void updateObserverFieldOfView()
          Update the observer's field of view
 
Methods inherited from interface rle.core.vm.PlugIn
config, getContext, paramMap, setConfig, setParameters
 
Methods inherited from interface rle.core.board.BoardListener
thingInsert, thingRemove
 

Method Detail

uninstall

void uninstall()
Uninstall this CameraModel.


setPerspective

void setPerspective(PlayPerspective pp)

getPerspective

PlayPerspective getPerspective()

setCamera

void setCamera(Camera c)
Set the camera.


getCamera

Camera getCamera()
Retrieve the camera.


setObserver

void setObserver(Thing t)
Set the observer.


getObserver

Thing getObserver()
Retrieve the observer.


getBounds

RLRectangle getBounds()

getTileSize

RLDimension getTileSize()
Retrieve the tile size.


setTileSize

void setTileSize(RLDimension d)
Set the tile size.


center

void center()
Calls centerOn(getObserver())


centerOn

void centerOn(Thing t)
Set the camera's location such that t is at center.


getCameraLocation

RLPoint getCameraLocation()
The camera's location, in the board coordinate system.


getViewportSize

RLDimension getViewportSize()
The size in grids of the viewport.


setCameraLocation

void setCameraLocation(RLPoint loc)
Set the camera's location, in the board coordinate system.

Parameters:
loc -

knownThings

java.util.TreeSet<Thing> knownThings(RLPoint boardLoc)
All known Objects at a board location in the following order: player, npc, item, terrain.


isKnown

boolean isKnown(Thing t)
Is it known? Something is known if the observer is aware of it, whether or not it is actually drawn by the camera. For example, a lit grid in the observer fov with a monster, item, and floor; all three are known, despite the fact that the camera might only draw the monster.


updateObserverFieldOfView

void updateObserverFieldOfView()
Update the observer's field of view


setBoard

void setBoard(Board b)

getBoard

Board getBoard()

addListener

void addListener(CameraModelListener l)

removeListener

void removeListener(CameraModelListener l)