org.jogre.common
Interface IJogre

All Known Implementing Classes:
GameProperties, JogreClientApplet

public interface IJogre

Interface file to default values such as the number of players etc. These should be set in game property files.

Version:
Alpha 0.2.3
Author:
Bob Marks

Field Summary
static String APPLET_PARAM_PASSWORD
          Applet parameter "password".
static String APPLET_PARAM_SERVER_HOST
          Applet parameter "serverhost".
static String APPLET_PARAM_SERVER_PORT
          Applet parameter "serverport".
static String APPLET_PARAM_USERNAME
          Applet parameter "username".
static double DEFAULT_ELO_K_FACTOR
          Default ELO k factor.
static int DEFAULT_ELO_START_RATING
          Default ELO starting rating for new users.
static int DEFAULT_MAX_NUM_OF_PLAYERS
          Default maximum number of players (2).
static int DEFAULT_MAX_NUM_OF_TABLES
          Default maximum number of table (2).
static int DEFAULT_MAX_NUM_OF_TABLES_PER_USER
          Default number of tables per user
static int DEFAULT_MAX_NUM_OF_USERS
          Default maximum number of users which is multiplied by the number of games running.
static int DEFAULT_MIN_NUM_OF_PLAYERS
          Default minimum number of players (2).
static int DEFAULT_NUM_OF_PLAYERS
          Default number of players (2).
static int DEFAULT_PORT
          Default port that JOGRE runs on.
static int DEFAULT_REQ_NUM_OF_PLAYERS
          Default required number of players (2).
static String MASTER_SERVE_KEY
          Key to the master server.
static int PROVISIONAL_COUNT
          Number of games a user must complete not to be provisional.
static String VERSION
          Link to the current version of JOGRE.
 

Field Detail

VERSION

public static final String VERSION
Link to the current version of JOGRE.

See Also:
Constant Field Values

MASTER_SERVE_KEY

public static final String MASTER_SERVE_KEY
Key to the master server.

See Also:
Constant Field Values

DEFAULT_PORT

public static final int DEFAULT_PORT
Default port that JOGRE runs on.

See Also:
Constant Field Values

DEFAULT_NUM_OF_PLAYERS

public static final int DEFAULT_NUM_OF_PLAYERS
Default number of players (2).

See Also:
Constant Field Values

DEFAULT_MIN_NUM_OF_PLAYERS

public static final int DEFAULT_MIN_NUM_OF_PLAYERS
Default minimum number of players (2).

See Also:
Constant Field Values

DEFAULT_MAX_NUM_OF_PLAYERS

public static final int DEFAULT_MAX_NUM_OF_PLAYERS
Default maximum number of players (2).

See Also:
Constant Field Values

DEFAULT_REQ_NUM_OF_PLAYERS

public static final int DEFAULT_REQ_NUM_OF_PLAYERS
Default required number of players (2).

See Also:
Constant Field Values

DEFAULT_MAX_NUM_OF_TABLES

public static final int DEFAULT_MAX_NUM_OF_TABLES
Default maximum number of table (2).

See Also:
Constant Field Values

DEFAULT_MAX_NUM_OF_TABLES_PER_USER

public static final int DEFAULT_MAX_NUM_OF_TABLES_PER_USER
Default number of tables per user

See Also:
Constant Field Values

DEFAULT_ELO_START_RATING

public static final int DEFAULT_ELO_START_RATING
Default ELO starting rating for new users.

See Also:
Constant Field Values

DEFAULT_ELO_K_FACTOR

public static final double DEFAULT_ELO_K_FACTOR
Default ELO k factor.

See Also:
Constant Field Values

PROVISIONAL_COUNT

public static final int PROVISIONAL_COUNT
Number of games a user must complete not to be provisional.

See Also:
Constant Field Values

DEFAULT_MAX_NUM_OF_USERS

public static final int DEFAULT_MAX_NUM_OF_USERS
Default maximum number of users which is multiplied by the number of games running.

See Also:
Constant Field Values

APPLET_PARAM_USERNAME

public static final String APPLET_PARAM_USERNAME
Applet parameter "username".

See Also:
Constant Field Values

APPLET_PARAM_PASSWORD

public static final String APPLET_PARAM_PASSWORD
Applet parameter "password".

See Also:
Constant Field Values

APPLET_PARAM_SERVER_HOST

public static final String APPLET_PARAM_SERVER_HOST
Applet parameter "serverhost".

See Also:
Constant Field Values

APPLET_PARAM_SERVER_PORT

public static final String APPLET_PARAM_SERVER_PORT
Applet parameter "serverport".

See Also:
Constant Field Values