Uses of Class
ctf.model.Side

Packages that use Side
ctf.evaluation Test code 
ctf.evaluation.simulator Simulator test code 
ctf.evaluation.simulator.data   
ctf.evaluation.simulator.play Test code for the Play state 
ctf.evaluation.simulator.setup   
ctf.model   
ctf.view Basic view tools 
 

Uses of Side in ctf.evaluation
 

Methods in ctf.evaluation with parameters of type Side
static Point StandardLocations.flag(Side side)
          Standard flag locations
static Point[] StandardLocations.players(Side side)
          Standard player locations
static Point[] StandardLocations.trees(Side side)
          Standard tree locations
 

Uses of Side in ctf.evaluation.simulator
 

Constructors in ctf.evaluation.simulator with parameters of type Side
CLI(java.lang.String host, java.lang.String team, Side side)
          Constructor
 

Uses of Side in ctf.evaluation.simulator.data
 

Methods in ctf.evaluation.simulator.data with parameters of type Side
 Team State.team(Side side)
           
 

Uses of Side in ctf.evaluation.simulator.play
 

Methods in ctf.evaluation.simulator.play with parameters of type Side
protected  void PlayTestCase.turnTo(Connection connection, Side side, int player, double turnTo)
          Turn a player to a heading
 

Uses of Side in ctf.evaluation.simulator.setup
 

Methods in ctf.evaluation.simulator.setup with parameters of type Side
protected  void PlaceTrees.placeNormal(Connection connection, Side side)
          Place one side's trees in the standard locations
 

Uses of Side in ctf.model
 

Methods in ctf.model that return Side
static Side Side.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Side[] Side.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of Side in ctf.view
 

Methods in ctf.view with parameters of type Side
 java.awt.geom.Point2D GameViewInterface.flagPosition(Side s)
          Position of a team's flag
 java.awt.geom.Point2D FieldViewTester.flagPosition(Side side)
           
 java.awt.geom.RectangularShape GameViewInterface.jail(Side side)
          The size of each jail (in metres)
 java.awt.geom.RectangularShape FieldViewTester.jail(Side side)
           
 java.util.Collection<GameViewInterface.PlayerInfo> GameViewInterface.playerInfo(Side s)
          Position, orientation for all players on a team
 java.util.Collection<GameViewInterface.PlayerInfo> FieldViewTester.playerInfo(Side side)
           
 int GameViewInterface.score(Side s)
          What's the given team's score?
 int FieldViewTester.score(Side side)
           
 TeamColor GameViewInterface.teamColor(Side s)
          What is the given team's colour?
 TeamColor FieldViewTester.teamColor(Side side)