Class Constants

java.lang.Object
  |
  +--Constants

public class Constants
extends java.lang.Object

Constants is a set of globally defined constants.


Field Summary
static java.lang.String graphicsPath
          The directory path to where the graphics are stored.
static int gSizeX
          the size of the square graphics in the x direction.
static int gSizeY
          the size of the square graphics in the y direction.
static java.lang.String helpHostFile
          the String file name for the host game instructions.
static java.lang.String helpJoinFile
          the String file name for the join game instructions.
static java.lang.String helpLevelEditorFile
          The String file name for the level editor help file
static java.lang.String helpPath
          The directory path to where the help files are stored.
static java.lang.String instructionsFile
          the String file name for the instructions.
static java.lang.String levelExt
          the String file name extension for level files.
static java.lang.String levelList
          The directory path to where the level list is stored.
static java.lang.String levelPath
          The directory path to where the levels are stored.
static int maxCol
          the maximum number of columns in a map.
static int maxRow
          the maximum number of rows in a map.
static int maxSaves
          the maximum number of saved games.
static int multiResX
          the x coordinate of the multiplayer window size.
static int multiResY
          the y coordinate of the multiplayer window size.
static int normalResX
          the x coordinate of the normal window size.
static int normalResY
          the y coordinate of the normal window size.
static java.lang.String saveExt
          the String file name extension for save game files
static java.lang.String savePath
          The directory path to where the saved games are stored.
static java.lang.String tutPath
          The directory path to where the tutorial files are stored.
 
Constructor Summary
Constants()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

maxRow

public static final int maxRow
the maximum number of rows in a map.

maxCol

public static final int maxCol
the maximum number of columns in a map.

gSizeX

public static final int gSizeX
the size of the square graphics in the x direction.

gSizeY

public static final int gSizeY
the size of the square graphics in the y direction.

normalResX

public static final int normalResX
the x coordinate of the normal window size.

normalResY

public static final int normalResY
the y coordinate of the normal window size.

multiResX

public static final int multiResX
the x coordinate of the multiplayer window size.

multiResY

public static final int multiResY
the y coordinate of the multiplayer window size.

maxSaves

public static final int maxSaves
the maximum number of saved games.

levelPath

public static final java.lang.String levelPath
The directory path to where the levels are stored.

graphicsPath

public static final java.lang.String graphicsPath
The directory path to where the graphics are stored.

savePath

public static final java.lang.String savePath
The directory path to where the saved games are stored.

levelList

public static final java.lang.String levelList
The directory path to where the level list is stored.

tutPath

public static final java.lang.String tutPath
The directory path to where the tutorial files are stored.

helpPath

public static final java.lang.String helpPath
The directory path to where the help files are stored.

instructionsFile

public static final java.lang.String instructionsFile
the String file name for the instructions.

helpHostFile

public static final java.lang.String helpHostFile
the String file name for the host game instructions.

helpJoinFile

public static final java.lang.String helpJoinFile
the String file name for the join game instructions.

levelExt

public static final java.lang.String levelExt
the String file name extension for level files.

saveExt

public static final java.lang.String saveExt
the String file name extension for save game files

helpLevelEditorFile

public static final java.lang.String helpLevelEditorFile
The String file name for the level editor help file
Constructor Detail

Constants

public Constants()