rle.simple
Class SimpleGame

java.lang.Object
  extended by rle.core.GameContextBase
      extended by rle.simple.SimpleGame
All Implemented Interfaces:
GameContext

public class SimpleGame
extends GameContextBase

The main class for the SimpleGame demo. For convenience, we implement GameContext. The SimpleGame class has four perspectives; welcome, game, victory and death. These are configured in the Variant Manager.


Field Summary
protected  javax.swing.Action actionCloseGame
           
protected  javax.swing.Action actionExit
           
protected  javax.swing.Action actionNewGame
           
protected  javax.swing.Action actionOpenGame
           
protected  javax.swing.Action actionSaveGame
           
static SimpleGame instance
           
 
Fields inherited from class rle.core.GameContextBase
commandSet, contextListeners, currentBoard, currentLanguage, currentPerspective, currentPlayer, data, gameClock, gameThread, messageQueue, playing, rootPaneContainer, schema, variant, world
 
Constructor Summary
SimpleGame()
           
SimpleGame(javax.swing.JApplet applet)
           
 
Method Summary
 void doCloseGame()
          Close the current game.
 void doNewGame()
          Start a new game.
 void doOpenGame()
          Open an existing game.
 void doSaveGame()
          Save the current game.
static void main(java.lang.String[] args)
           
 void setCommandSet(CommandSet commandSet)
          Set the current command set.
 void setCurrentBoard(Board nextBoard)
          Overridden to clean up old board and prepare new board.
 void setCurrentLanguage(java.lang.String s)
          Overridden to change the frame title.
 void setCurrentPerspective(Perspective p)
          Set the current Perspective, which controls the user experience.
 void setRootPaneContainer(javax.swing.RootPaneContainer rpc)
           
 void showDeathPerspective()
           
 void showGamePerspective()
          Activate the game "perspective".
 void showVictoryPerspective()
           
 void showWelcomePerspective()
          Show the welcome screen.
 
Methods inherited from class rle.core.GameContextBase
addGameContextListener, commandSet, createPlugIn, createPlugIn, createPlugIns, currentBoard, currentLanguage, currentPerspective, currentPlayer, data, fireBoardChange, fireCommandSetChange, fireLanguageChange, gameClock, gameThread, isPlaying, loadData, messageQueue, removeGameContextListener, rootPaneContainer, setCurrentPlayer, setGameClock, setGameThread, setMessageQueue, setPlaying, setVariant, setWorld, translation, translation, variant, world
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

instance

public static SimpleGame instance

actionNewGame

protected javax.swing.Action actionNewGame

actionOpenGame

protected javax.swing.Action actionOpenGame

actionCloseGame

protected javax.swing.Action actionCloseGame

actionSaveGame

protected javax.swing.Action actionSaveGame

actionExit

protected javax.swing.Action actionExit
Constructor Detail

SimpleGame

public SimpleGame()

SimpleGame

public SimpleGame(javax.swing.JApplet applet)
Method Detail

setRootPaneContainer

public void setRootPaneContainer(javax.swing.RootPaneContainer rpc)
Overrides:
setRootPaneContainer in class GameContextBase

main

public static void main(java.lang.String[] args)

showWelcomePerspective

public void showWelcomePerspective()
Show the welcome screen. This screen takes no keyboard input, and just waits for the user to select a legal menu item.


setCurrentPerspective

public void setCurrentPerspective(Perspective p)
Set the current Perspective, which controls the user experience.

Overrides:
setCurrentPerspective in class GameContextBase

showDeathPerspective

public void showDeathPerspective()

showVictoryPerspective

public void showVictoryPerspective()

setCurrentBoard

public void setCurrentBoard(Board nextBoard)
Overridden to clean up old board and prepare new board. Player MUST be in nextBoard.

Overrides:
setCurrentBoard in class GameContextBase

doNewGame

public void doNewGame()
Start a new game. Basically, go to the birth screen or whatever.


doOpenGame

public void doOpenGame()
Open an existing game.


doCloseGame

public void doCloseGame()
Close the current game.


doSaveGame

public void doSaveGame()
Save the current game.


showGamePerspective

public void showGamePerspective()
Activate the game "perspective". This method requires that the player be in the current board. This method will present the normal "game" view to the user, ie the player in a board able to move, attack, etc.


setCurrentLanguage

public void setCurrentLanguage(java.lang.String s)
Overridden to change the frame title.

Overrides:
setCurrentLanguage in class GameContextBase
Parameters:
s -

setCommandSet

public void setCommandSet(CommandSet commandSet)
Set the current command set.

Specified by:
setCommandSet in interface GameContext
Overrides:
setCommandSet in class GameContextBase