jfreerails.move
Class TimeTickMove

java.lang.Object
  extended by jfreerails.move.TimeTickMove
All Implemented Interfaces:
java.io.Serializable, Move, FreerailsSerializable

public class TimeTickMove
extends java.lang.Object
implements Move

Changes the time item on the world object.

Author:
rob
See Also:
Serialized Form

Field Summary
private  GameTime newTime
           
private  GameTime oldTime
           
private static long serialVersionUID
           
 
Constructor Summary
TimeTickMove(GameTime oldTime, GameTime newTime)
           
 
Method Summary
 MoveStatus doMove(World w, FreerailsPrincipal p)
          Executes this move on the specifed world object.
 boolean equals(java.lang.Object o)
           
static TimeTickMove getMove(ReadOnlyWorld w)
           
 int hashCode()
           
 java.lang.String toString()
           
 MoveStatus tryDoMove(World w, FreerailsPrincipal p)
          Tests whether this Move can be executed on the specifed world object, this method should leave the world object unchanged.
 MoveStatus tryUndoMove(World w, FreerailsPrincipal p)
          Tests whether this Move can be undone on the specifed world object, this method should leave the world object unchanged.
 MoveStatus undoMove(World w, FreerailsPrincipal p)
          If doMove has just been executed on the specified world object, calling this method changes the state of the world object back to how it was before doMove was called.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

oldTime

private final GameTime oldTime

newTime

private final GameTime newTime
Constructor Detail

TimeTickMove

public TimeTickMove(GameTime oldTime,
                    GameTime newTime)
Method Detail

equals

public boolean equals(java.lang.Object o)
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

getMove

public static TimeTickMove getMove(ReadOnlyWorld w)

tryDoMove

public MoveStatus tryDoMove(World w,
                            FreerailsPrincipal p)
Description copied from interface: Move
Tests whether this Move can be executed on the specifed world object, this method should leave the world object unchanged.

Specified by:
tryDoMove in interface Move

tryUndoMove

public MoveStatus tryUndoMove(World w,
                              FreerailsPrincipal p)
Description copied from interface: Move
Tests whether this Move can be undone on the specifed world object, this method should leave the world object unchanged.

Specified by:
tryUndoMove in interface Move

doMove

public MoveStatus doMove(World w,
                         FreerailsPrincipal p)
Description copied from interface: Move
Executes this move on the specifed world object.

Specified by:
doMove in interface Move

undoMove

public MoveStatus undoMove(World w,
                           FreerailsPrincipal p)
Description copied from interface: Move
If doMove has just been executed on the specified world object, calling this method changes the state of the world object back to how it was before doMove was called.

Specified by:
undoMove in interface Move

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object