robocode.control
Class RobotResults
- Serializable
public class RobotResults
- Mathew A. Nelson (original)
- Flemming N. Larsen (contributor)
RobotResults(RobotSpecification robot, int rank, double score, double survival, double lastSurvivorBonus, double bulletDamage, double bulletDamageBonus, double ramDamage, double ramDamageBonus, int firsts, int seconds, int thirds)- Constructs a new RobotResults.
|
int | getBulletDamage()- Returns the bullet damage score of this robot in the battle.
|
int | getBulletDamageBonus()- Returns the bullet damage bonus of this robot in the battle.
|
int | getFirsts()- Returns the number of times this robot placed first in the battle.
|
int | getLastSurvivorBonus()- Returns the last survivor score of this robot in the battle.
|
int | getRamDamage()- Returns the ram damage score of this robot in the battle.
|
int | getRamDamageBonus()- Returns the ram damage bonus of this robot in the battle.
|
int | getRank()- Returns the rank of this robot in the battle results.
|
RobotSpecification | getRobot()- Returns the robot these results are meant for.
|
int | getScore()- Returns the total score of this robot in the battle.
|
int | getSeconds()- Returns the number of times this robot placed second in the battle.
|
int | getSurvival()- Returns the survival score of this robot in the battle.
|
int | getThirds()- Returns the number of times this robot placed third in the battle.
|
RobotResults
public RobotResults(RobotSpecification robot,
int rank,
double score,
double survival,
double lastSurvivorBonus,
double bulletDamage,
double bulletDamageBonus,
double ramDamage,
double ramDamageBonus,
int firsts,
int seconds,
int thirds) Constructs a new RobotResults.
robot - the robot these results are forrank - the rank of the robot in the battlescore - the total score for the robot in the battlesurvival - the survival score for the robot in the battlelastSurvivorBonus - the last survivor bonus for the robot in the battlebulletDamage - the bullet damage score for the robot in the battlebulletDamageBonus - the bullet damage bonus for the robot in the battleramDamage - the ram damage for the robot in the battleramDamageBonus - the ram damage bonus for the robot in the battlefirsts - the number of times this robot placed firstseconds - the number of times this robot placed secondthirds - the number of times this robot placed third
getBulletDamage
public int getBulletDamage()
Returns the bullet damage score of this robot in the battle.
- the bullet damage score of this robot in the battle.
getBulletDamageBonus
public int getBulletDamageBonus()
Returns the bullet damage bonus of this robot in the battle.
- the bullet damage bonus of this robot in the battle.
getFirsts
public int getFirsts()
Returns the number of times this robot placed first in the battle.
- the number of times this robot placed first in the battle.
getLastSurvivorBonus
public int getLastSurvivorBonus()
Returns the last survivor score of this robot in the battle.
- the last survivor score of this robot in the battle.
getRamDamage
public int getRamDamage()
Returns the ram damage score of this robot in the battle.
- the ram damage score of this robot in the battle.
getRamDamageBonus
public int getRamDamageBonus()
Returns the ram damage bonus of this robot in the battle.
- the ram damage bonus of this robot in the battle.
getRank
public int getRank()
Returns the rank of this robot in the battle results.
- the rank of this robot in the battle results.
getRobot
public RobotSpecification getRobot()
Returns the robot these results are meant for.
- the robot these results are meant for.
getScore
public int getScore()
Returns the total score of this robot in the battle.
- the total score of this robot in the battle.
getSeconds
public int getSeconds()
Returns the number of times this robot placed second in the battle.
- the number of times this robot placed second in the battle.
getSurvival
public int getSurvival()
Returns the survival score of this robot in the battle.
- the survival score of this robot in the battle.
getThirds
public int getThirds()
Returns the number of times this robot placed third in the battle.
- the number of times this robot placed third in the battle.