Uses of Class
info.PlaceType

Packages that use PlaceType
bot   
info   
logging   
 

Uses of PlaceType in bot
 

Fields in bot declared as PlaceType
 PlaceType EmotionalBot.myGoalPlace
          This is my destination place, so I know where I am going to - MY_HOME, CINEMA, etc.
 

Methods in bot that return PlaceType
 PlaceType EmotionalBot.getAgentHomePlace(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Player agent)
          Returns home place for input agent.
 

Methods in bot with parameters of type PlaceType
 cz.cuni.amis.pogamut.base3d.worldview.objects.Location EmotionalBot.getDestinationLocation(PlaceType goalPlace)
          Returns actual location that we should head to if we want to reach input goal place!
 

Uses of PlaceType in info
 

Methods in info that return PlaceType
static PlaceType PlaceType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PlaceType[] PlaceType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of PlaceType in logging
 

Fields in logging declared as PlaceType
 PlaceType AgentStateLog.agentGoalPlace
          Place our agent wanted to go at the time.
 

Methods in logging with parameters of type PlaceType
 void AgentLogging.insertAgentState(double currentTime, java.lang.String agWithName, cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Player agentWith, PlaceType myGoalPlace, cz.cuni.amis.pogamut.base3d.worldview.objects.Location myGoalTarget, StateType state, cz.cuni.amis.pogamut.base3d.worldview.objects.Location location, cz.cuni.amis.pogamut.base3d.worldview.objects.Rotation rotation, java.util.ArrayList<java.lang.String> interNames, java.util.ArrayList<cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Player> inters)
          This method is used to insert agent state to agentStateHistory.
 

Constructors in logging with parameters of type PlaceType
AgentStateLog(double time, java.lang.String agentWithName, PlaceType agentGoalPlace, LocationLog agentGoalTarget, StateType agentState, LocationLog agentLocation, RotationLog agentRotation, java.util.ArrayList<java.lang.String> interruptersNames)
          Complete constructor.