cz.cuni.amis.pogamut.udk.communication.messages.gbinfomessages
Class LockedVehicle

Package class diagram package LockedVehicle
java.lang.Object
  extended by cz.cuni.amis.pogamut.base.communication.messages.InfoMessage
      extended by cz.cuni.amis.pogamut.udk.communication.messages.GBEvent
          extended by cz.cuni.amis.pogamut.udk.communication.messages.gbinfomessages.LockedVehicle
All Implemented Interfaces:
IWorldChangeEvent, IWorldEventWrapper, IWorldEvent, IGBWorldEvent, cz.cuni.amis.utils.listener.Event

public class LockedVehicle
extends GBEvent
implements IWorldEvent, IWorldChangeEvent

Asynchronous message. Sent as a response to ENTER command. Sent if the ENTER command was unsuccessfull because the vehicle is locked for our bot. Corresponding GameBots message is LOCKED.


Field Summary
protected  UnrealId Id
          Id of the vehicle, which we cannot enter, because it is locked.
protected  Location Location
          Location of the vehicle.
static String PROTOTYPE
          Example how the message looks like - used during parser tests.
protected  String Type
          Type of the vehicle we wanted to enter.
 
Constructor Summary
LockedVehicle()
          Used by Yylex to create empty message then to fill it's protected fields (Yylex is in the same package).
LockedVehicle(LockedVehicle original)
          Cloning constructor.
LockedVehicle(UnrealId Id, String Type, Location Location)
          Creates new instance of command LockedVehicle.
 
Method Summary
 UnrealId getId()
          Id of the vehicle, which we cannot enter, because it is locked.
 Location getLocation()
          Location of the vehicle.
 long getSimTime()
           
 String getType()
          Type of the vehicle we wanted to enter.
 String toHtmlString()
           
 String toString()
           
 
Methods inherited from class cz.cuni.amis.pogamut.udk.communication.messages.GBEvent
getWorldEvent
 
Methods inherited from class cz.cuni.amis.pogamut.base.communication.messages.InfoMessage
toJsonLiteral
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

PROTOTYPE

public static final String PROTOTYPE
Example how the message looks like - used during parser tests.

See Also:
Constant Field Values

Id

protected UnrealId Id
Id of the vehicle, which we cannot enter, because it is locked.


Type

protected String Type
Type of the vehicle we wanted to enter. What kind of turret or car.


Location

protected Location Location
Location of the vehicle.

Constructor Detail

LockedVehicle

public LockedVehicle(UnrealId Id,
                     String Type,
                     Location Location)
Creates new instance of command LockedVehicle. Asynchronous message. Sent as a response to ENTER command. Sent if the ENTER command was unsuccessfull because the vehicle is locked for our bot. Corresponding GameBots message for this command is .

Parameters:
Id - Id of the vehicle, which we cannot enter, because it is locked.
Type - Type of the vehicle we wanted to enter. What kind of turret or car.
Location - Location of the vehicle.

LockedVehicle

public LockedVehicle(LockedVehicle original)
Cloning constructor.


LockedVehicle

public LockedVehicle()
Used by Yylex to create empty message then to fill it's protected fields (Yylex is in the same package).

Method Detail

getId

public UnrealId getId()
Id of the vehicle, which we cannot enter, because it is locked.


getType

public String getType()
Type of the vehicle we wanted to enter. What kind of turret or car.


getLocation

public Location getLocation()
Location of the vehicle.


getSimTime

public long getSimTime()
Specified by:
getSimTime in interface IWorldChangeEvent
Specified by:
getSimTime in interface IWorldEvent
Overrides:
getSimTime in class GBEvent

toString

public String toString()
Overrides:
toString in class InfoMessage

toHtmlString

public String toHtmlString()


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