Packages

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

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EloEngine
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def calculateExpectedScore(playerRating: Int, opponentRating: Int): Double

    Calculates expected score using logistic curve.

  6. 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.

  7. 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

  8. 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

  9. 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

  10. def calculateRating(player: Player, kFactor: Double): Int

    Calculates rating from a player object and allows for custom K-Factor

  11. def calculateRating(player: Player, kFactorType: KFactor = KFactor.SIMPLE): Int

    Calculates rating from a player object using KFactor presets

  12. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped