class Player extends AnyRef
Holds player information and is backed by an ELO rating engine to update the player's rating. Also contains tournament and game history.
Players can play games against other players, here is an example following the example from wikipedia https://en.wikipedia.org/wiki/Elo_rating_system#Mathematical_details
val playerA = new Player(rating = 1613) val opponent1 = new Player(rating = 1609) val opponent2 = new Player(rating = 1477) val opponent3 = new Player(rating = 1388) val opponent4 = new Player(rating = 1586) val opponent5 = new Player(rating = 1720) playerA loses opponent1 playerA draws opponent2 playerA wins opponent3 playerA wins opponent4 playerA loses opponent5 playerA.updateRating(KFactor.USCF) // If not specified the Simple K-Factor is used playerA.rating // playerA now has a rating of 1601
The class can be extended as shown:
// An example class that requires a name, rating, and player's always start at 0 games. class NamedPlayer(val name: String, rating: Int) extends Player(rating, 0) { // Some possible methods that can be added. def isPro: Boolean = if (rating > 2400) true else false def isNew: Boolean = if (gamesPlayed < 30) true else false // Change the default KFactor to USCF. def updateRating(): Unit = super.updateRating(KFactor.USCF) // Or create a custom KFactor def updateRating(): Unit = { val customerFactor = if (isPro) 10 else 400 / gamesPlayed super.updateRating(customerFactor) } } val myPlayer = new NamedPlayer("My Player Name", 1613)
- Alphabetic
- By Inheritance
- Player
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
Player(rating: Int = 1400, startingGameCount: Int = 0)
- rating
Player's starting rating, defaulted to 1400
- startingGameCount
How many games the player has already played, defaulted to 0
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
draws(opponent: Player): Unit
Adds draw to the player history and draw to opponent's
Adds draw to the player history and draw to opponent's
- opponent
Opposing player
players draws opponent
Example: -
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
gameHistory: List[Game]
- returns
Games history
-
def
gamesPlayed: Int
- returns
Total games played
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hasAlreadyPlayed(opponent: Player): Boolean
- opponent
Player to check against
- returns
Returns true if the player has played the opponent
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
loses(opponent: Player): Unit
Adds loss to the player history and win to opponent's
Adds loss to the player history and win to opponent's
- opponent
Opposing player
players loses opponent
Example: -
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
plays(opponent: Player): Matchup
- opponent
Opposing player
- returns
Returns a matchup between player and opponent
val matchup = players plays opponent
Example: - var rating: Int
- val startingGameCount: Int
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
tournamentHistory: List[Game]
- returns
Active tournament history
-
def
updateRating(kFactor: Double): Unit
Updates the player's rating and clears tournament history
Updates the player's rating and clears tournament history
- kFactor
Custom K-Factor value or function
-
def
updateRating(kFactorType: KFactor = KFactor.SIMPLE): Unit
Updates player's rating and clears tournament history
Updates player's rating and clears tournament history
- kFactorType
What K-Factor formula to use when calculating the rating
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
wins(opponent: Player): Unit
Adds win to the player history and loss to opponent's
Adds win to the player history and loss to opponent's
- opponent
Opposing player
players wins opponent
Example: