Package | Description |
---|---|
wwwordz.game |
Game management classes, including rounds and players.
|
Modifier and Type | Method and Description |
---|---|
void |
Players.addPoints(java.lang.String nick,
int points)
Add points to player
|
Puzzle |
Round.getPuzzle()
Get table of this round
|
Puzzle |
Manager.getPuzzle()
Get table of current round
|
java.util.List<Rank> |
Round.getRanking()
List of players in this round sorted by points
|
java.util.List<Rank> |
Manager.getRanking()
List of players in current round sorted by points
|
long |
Round.register(java.lang.String nick,
java.lang.String password)
Register user with nick and password for this round
|
long |
Manager.register(java.lang.String nick,
java.lang.String password)
Register user with nick and password for current round
|
void |
Players.resetPoints(java.lang.String nick)
Reset points of current round while keeping accumulated points
|
void |
Round.setPoints(java.lang.String nick,
int points)
Set number of points obtained by user in this round
|
void |
Manager.setPoints(java.lang.String nick,
int points)
Set number of points obtained by user in current round
|