object EloEngine
Calculates the player's rating based on their actual performance against their expected performance Formula is: R_new = R_old + K(Score_actual - Score_expected) where R_new is there new rating, R_old is their old rating, K is the K-factor coefficient, Score_actual is their score from their games and Score_expected is the score that was expected.
For more details @see https://en.wikipedia.org/wiki/Elo_rating_system
- Alphabetic
- By Inheritance
- EloEngine
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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
calculateExpectedScore(playerRating: Int, opponentRating: Int): Double
Calculates expected score using logistic curve.
-
def
calculateKFactor(currentRating: Int, totalGamesPlayed: Int, kFactor: KFactor = KFactor.SIMPLE): Double
Calculates the K-Factor to control sensitivity of rating changes from possible presets.
Calculates the K-Factor to control sensitivity of rating changes from possible presets. New players will have greater fluctuations in their initial rating than players with more games.
-
def
calculateRating(currentRating: Int, actualScore: Double, expectedScore: Double, kFactor: Double): Int
- currentRating
Current rating of player
- actualScore
Score of the games played (0 for Loss, 1 for win, 0.5 for a Draw)
- expectedScore
Expected score of played games @see EloEngine.calculateExpectedScore
- kFactor
K-Factor value
- returns
Returns rating of player
-
def
calculateRating(currentRating: Int, totalGamesPlayed: Int, actualScore: Double, expectedScore: Double, kFactor: KFactor): Int
- currentRating
Current rating of player
- totalGamesPlayed
Total games player has played
- actualScore
Score of the games played (0 for Loss, 1 for win, 0.5 for a Draw)
- expectedScore
Expected score of played games @see EloEngine.calculateExpectedScore
- kFactor
K-Factor preset
- returns
Returns rating of player
-
def
calculateRating(playerRating: Int, playedGames: List[Game], totalGamesPlayed: Int, kFactor: Double): Int
Calculates rating given the player's rating, played games, and total games played
-
def
calculateRating(player: Player, kFactor: Double): Int
Calculates rating from a player object and allows for custom K-Factor
-
def
calculateRating(player: Player, kFactorType: KFactor = KFactor.SIMPLE): Int
Calculates rating from a player object using KFactor presets
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
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] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
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()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
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( ... )