cz.cuni.amis.pogamut.ut2004.utils
Enum PogamutUT2004Property

Package class diagram package PogamutUT2004Property
java.lang.Object
  extended by java.lang.Enum<PogamutUT2004Property>
      extended by cz.cuni.amis.pogamut.ut2004.utils.PogamutUT2004Property
All Implemented Interfaces:
Serializable, Comparable<PogamutUT2004Property>

public enum PogamutUT2004Property
extends Enum<PogamutUT2004Property>


Enum Constant Summary
POGAMUT_UNREAL_HOME
          Path to the Unreal home dir.
POGAMUT_UNREAL_TEST_EXT_SERVER
          Should tests use external UCC instance or they will run internal one?
POGAMUT_UT2004_BOT_HOST
          Where the bot should connect to (hostname of the server running GameBots2004)
POGAMUT_UT2004_BOT_INIT_NAME
          String parameter that sets the name for the bot, see Initialize.setName(String).
POGAMUT_UT2004_BOT_INIT_OVERRIDE_PARAMS
          Boolean parameter (true/false) that affects how UT2004Bot works with IUT2004BotController.getInitializeCommand().
POGAMUT_UT2004_BOT_INIT_SKILL
          Integer parameter (0, 1, 2, 3, 4, 5, 6, 7) that sets skill level for the bot, see Initialize.setDesiredSkill(Integer).
POGAMUT_UT2004_BOT_INIT_SKIN
          String parameter that sets the skin for the bot, see Initialize.setSkin(String).
POGAMUT_UT2004_BOT_INIT_TEAM
          Integer parameter (0, 1, 2, 3, 255) that sets team the bot should join into.
POGAMUT_UT2004_BOT_PORT
          Where the bot should connect to (bot port of the GameBots2004).
POGAMUT_UT2004_OBSERVER_HOST
          Where the observer should connect to (hostname of the server running GameBots2004)
POGAMUT_UT2004_OBSERVER_PORT
          Where the observer should connect to (observer port of the GameBots2004)
POGAMUT_UT2004_PATH_EXECUTOR_SEND_SET_ROUTE
          Whether UT2004PathExecutor is using SetRoute command (causes RED LINE to appear in UT2004 GUI when enablind "display bot routes").
POGAMUT_UT2004_SERVER_HOST
          Where the server should connect to (hostname of the server running GameBots2004)
POGAMUT_UT2004_SERVER_PORT
          Where the server should connect to (server port of the GameBots2004)
POGAMUT_UT2004_VISIBILITY_DIRECTORY
          Directory where to search for VisibilityMatrixes for respective maps.
 
Method Summary
 Object getDefaultValue()
           
 String getKey()
           
 Object getValue()
           
 String toString()
           
static PogamutUT2004Property valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PogamutUT2004Property[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

POGAMUT_UT2004_BOT_HOST

public static final PogamutUT2004Property POGAMUT_UT2004_BOT_HOST
Where the bot should connect to (hostname of the server running GameBots2004)


POGAMUT_UT2004_BOT_PORT

public static final PogamutUT2004Property POGAMUT_UT2004_BOT_PORT
Where the bot should connect to (bot port of the GameBots2004).


POGAMUT_UT2004_SERVER_HOST

public static final PogamutUT2004Property POGAMUT_UT2004_SERVER_HOST
Where the server should connect to (hostname of the server running GameBots2004)


POGAMUT_UT2004_SERVER_PORT

public static final PogamutUT2004Property POGAMUT_UT2004_SERVER_PORT
Where the server should connect to (server port of the GameBots2004)


POGAMUT_UT2004_OBSERVER_HOST

public static final PogamutUT2004Property POGAMUT_UT2004_OBSERVER_HOST
Where the observer should connect to (hostname of the server running GameBots2004)


POGAMUT_UT2004_OBSERVER_PORT

public static final PogamutUT2004Property POGAMUT_UT2004_OBSERVER_PORT
Where the observer should connect to (observer port of the GameBots2004)


POGAMUT_UNREAL_HOME

public static final PogamutUT2004Property POGAMUT_UNREAL_HOME
Path to the Unreal home dir.


POGAMUT_UNREAL_TEST_EXT_SERVER

public static final PogamutUT2004Property POGAMUT_UNREAL_TEST_EXT_SERVER
Should tests use external UCC instance or they will run internal one?


POGAMUT_UT2004_PATH_EXECUTOR_SEND_SET_ROUTE

public static final PogamutUT2004Property POGAMUT_UT2004_PATH_EXECUTOR_SEND_SET_ROUTE
Whether UT2004PathExecutor is using SetRoute command (causes RED LINE to appear in UT2004 GUI when enablind "display bot routes").


POGAMUT_UT2004_VISIBILITY_DIRECTORY

public static final PogamutUT2004Property POGAMUT_UT2004_VISIBILITY_DIRECTORY
Directory where to search for VisibilityMatrixes for respective maps.


POGAMUT_UT2004_BOT_INIT_OVERRIDE_PARAMS

public static final PogamutUT2004Property POGAMUT_UT2004_BOT_INIT_OVERRIDE_PARAMS
Boolean parameter (true/false) that affects how UT2004Bot works with IUT2004BotController.getInitializeCommand().
False == provide parameters only if NOT specified
True == always set the parameters into Initialize command (i.e., override any existing settings).


POGAMUT_UT2004_BOT_INIT_TEAM

public static final PogamutUT2004Property POGAMUT_UT2004_BOT_INIT_TEAM
Integer parameter (0, 1, 2, 3, 255) that sets team the bot should join into. See AgentInfo for team constants (e.g. AgentInfo.TEAM_RED)


POGAMUT_UT2004_BOT_INIT_SKILL

public static final PogamutUT2004Property POGAMUT_UT2004_BOT_INIT_SKILL
Integer parameter (0, 1, 2, 3, 4, 5, 6, 7) that sets skill level for the bot, see Initialize.setDesiredSkill(Integer).


POGAMUT_UT2004_BOT_INIT_SKIN

public static final PogamutUT2004Property POGAMUT_UT2004_BOT_INIT_SKIN
String parameter that sets the skin for the bot, see Initialize.setSkin(String).


POGAMUT_UT2004_BOT_INIT_NAME

public static final PogamutUT2004Property POGAMUT_UT2004_BOT_INIT_NAME
String parameter that sets the name for the bot, see Initialize.setName(String).

Method Detail

values

public static PogamutUT2004Property[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (PogamutUT2004Property c : PogamutUT2004Property.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PogamutUT2004Property valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getKey

public String getKey()

toString

public String toString()
Overrides:
toString in class Enum<PogamutUT2004Property>

getValue

public Object getValue()

getDefaultValue

public Object getDefaultValue()


Copyright © 2014 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.