rle.core.event
Class GameClock
java.lang.Object
rle.core.vm.PlugInBase
rle.core.event.GameClock
- All Implemented Interfaces:
- PlayerTurnListener, PlugIn
public class GameClock
- extends PlugInBase
- implements PlayerTurnListener
Handles the scheduling interplay between player moves and everything else.
Variant authors can subclass this class and override getEnergyRequiredToTakeTurn()
and getEnergyBestowedPerTick(int) to adjust the affects that creature speed
has on how often a creature gets to move in relation to other game events.
The clock will run until stop() is called, at which point all processing
stops and all methods should exit normally.
Classes that wish to cause the player to exit the "game" perspective should
first call stop(), which will prevent playerTurnEnded() from any further
action, especially modifying command sets.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
tickNumber
protected long tickNumber
energyRequiredToTakeTurn
protected int energyRequiredToTakeTurn
waitingForPlayerAction
protected boolean waitingForPlayerAction
GameClock
public GameClock()
isWaitingForPlayerAction
public boolean isWaitingForPlayerAction()
getEnergyRequiredToTakeTurn
public int getEnergyRequiredToTakeTurn()
- The quantity of energy a creature requires before it can take its turn.
getEnergyBestowedPerTick
public int getEnergyBestowedPerTick(int speed)
- How much energy should be given per tick to a creature with the given
speed. Generally, more energy should be given per tick the higher the
speed. However, giving too much energy relative to the required energy
to take a turn will cause different speed values to lose their meaning.
getTickNumber
public long getTickNumber()
setTickNumber
public void setTickNumber(long tickNumber)
playerTurnEnded
public void playerTurnEnded(PlayerTurnEvent event)
- Respond to a player's turn ending. When this happens, we must give
everything else in the game a chance to act until the player has enough
energy to move again. This method depends on the Player having the
Runtime Attribute "speed", although subclasses could do away with that
requirement.
Note: In general, the processes run by this method will attempt to
discontinue processing and return as quickly as possible after stop()
is called.
- Specified by:
playerTurnEnded
in interface PlayerTurnListener
fireGameTick
public void fireGameTick()
- Notify listeners that a new game tick has started. Note that the Player
should not respond to this event! Player energy/turn taking is handled
separately, but all other game events such as Monster energy, shop shuffling,
timed effects, etc. may be driven by this method.
This method will stop notifying listeners if the clock is stopped.
addGameClockListener
public void addGameClockListener(GameClockListener cl)
removeGameClockListener
public void removeGameClockListener(GameClockListener cl)
stop
public void stop()
- Halt the clock because the player is dead, victorious, or is otherwise
no longer playing.