class Matchup extends AnyRef
Allows for creating matches before knowing winner, useful for matchmaking a pool of players or used to create a tournament of players
Players can play matches 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) val matchOne = playerA plays opponent1 val matchTwo = playerA plays opponent2 val matchThree = playerA plays opponent3 val matchFour = playerA plays opponent4 val matchFive = playerA plays opponent5 matchOne winner opponent1 matchTwo.draw() matchThree loser opponent3 matchFour.winner(playerA) matchFive.loser(playerA) playerA.updateRating(KFactor.USCF) // If not specified the Simple K-Factor is used playerA.rating // playerA now has a rating of 1601
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Matchup
- AnyRef
- Any
- Hide All
- Show All
Visibility
- 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
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
draw(): Unit
Applies a draw to both players in the matchup
-
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()
-
def
isGameOver: Boolean
- returns
Returns true if the match has already been completed
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
loser(losingPlayer: Player): Unit
Apples a losing game to the selected player and a winning game to the opponent
-
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()
- val opponent: Player
- val player: Player
-
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( ... )
-
def
winner(winningPlayer: Player): Unit
Applies a winning game to the selected player and a losing game to the opponent
Applies a winning game to the selected player and a losing game to the opponent
- winningPlayer
The player who has won the match