rle.core.ui
Interface PlayPerspective

All Superinterfaces:
GameContextListener, Perspective, PlugIn
All Known Implementing Classes:
PlayPerspectiveBase, SimplePlayPerspective

public interface PlayPerspective
extends Perspective

Perspective for use when playing a roguelike game.

This API needs to be flexible enough to (helpfully) support a very wide range of possible screen setups. It might be good to provide some map based interface to register and access panels and cameras.

A PlayPerspective is inherently a display-oriented component. As such, it is necessary that PlayPerspectives be able to be swapped out without affecting the underlying game state or leaking memory.

One corollary of this is that the commands available to the player at a given point in time are managed by the GameContext, not the Perpsective.


Method Summary
 void clearOverlayPanel()
          Clear the overlay panel of any content.
 Camera getCamera()
          Return the camera.
 javax.swing.JPanel getOverlayPanel()
          Return a JPanel for holding controls situated above the perspective.
 
Methods inherited from interface rle.core.ui.Perspective
getComponent, installPerspective, uninstallPerspective
 
Methods inherited from interface rle.core.vm.PlugIn
config, getContext, paramMap, setConfig, setParameters
 
Methods inherited from interface rle.core.event.GameContextListener
boardChange, commandSetChange, languageChange
 

Method Detail

getOverlayPanel

javax.swing.JPanel getOverlayPanel()
Return a JPanel for holding controls situated above the perspective.


getCamera

Camera getCamera()
Return the camera.


clearOverlayPanel

void clearOverlayPanel()
Clear the overlay panel of any content.