cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages
Class BotKilled

java.lang.Object
  extended by cz.cuni.amis.pogamut.base.communication.messages.InfoMessage
      extended by cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.BotKilled
All Implemented Interfaces:
IWorldChangeEvent, IWorldEvent, Event

public class BotKilled
extends InfoMessage
implements IWorldEvent, IWorldChangeEvent

Definition of the event DIE.

Complete message documentation: Asynchronous message. This bot has died.


Field Summary
protected  boolean BulletHit
          If this damage was caused by bullet.
protected  boolean CausedByWorld
          If this damage was caused by world - falling into lava, or falling down.
protected  java.lang.String DamageType
          A string describing what kind of damage killed the bot.
protected  java.lang.String DeathString
          String describing this type of death.
protected  boolean DirectDamage
          If the damage is direct.
protected  boolean Flaming
          If this damage is causing our bot to burn.
protected  UnrealId Killer
          Unique Id of player that killed our bot if any (may have walked off a ledge).
static java.lang.String PROTOTYPE
          Example how the message looks like - used during parser tests.
protected  long SimTime
           
protected  boolean VehicleHit
          If this damage was caused by vehicle running over us.
protected  java.lang.String WeaponName
          Name of the weapon that caused this damage.
 
Constructor Summary
BotKilled()
          Parameter-less contructor for the message.
BotKilled(BotKilled original)
          Cloning constructor from the full message.
BotKilled(UnrealId Killer, java.lang.String DamageType, java.lang.String DeathString, java.lang.String WeaponName, boolean Flaming, boolean CausedByWorld, boolean DirectDamage, boolean BulletHit, boolean VehicleHit)
          Creates new instance of the message BotKilled.
 
Method Summary
 java.lang.String getDamageType()
          A string describing what kind of damage killed the bot.
 java.lang.String getDeathString()
          String describing this type of death.
 UnrealId getKiller()
          Unique Id of player that killed our bot if any (may have walked off a ledge).
 long getSimTime()
          Returns the simulation time when the event has occurred.
 java.lang.String getWeaponName()
          Name of the weapon that caused this damage.
 boolean isBulletHit()
          If this damage was caused by bullet.
 boolean isCausedByWorld()
          If this damage was caused by world - falling into lava, or falling down.
 boolean isDirectDamage()
          If the damage is direct.
 boolean isFlaming()
          If this damage is causing our bot to burn.
 boolean isVehicleHit()
          If this damage was caused by vehicle running over us.
protected  void setSimTime(long SimTime)
          Used by Yylex to slip correct time of the object or programmatically.
 java.lang.String toHtmlString()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

PROTOTYPE

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

See Also:
Constant Field Values

SimTime

protected long SimTime

Killer

protected UnrealId Killer
Unique Id of player that killed our bot if any (may have walked off a ledge).


DamageType

protected java.lang.String DamageType
A string describing what kind of damage killed the bot.


DeathString

protected java.lang.String DeathString
String describing this type of death.


WeaponName

protected java.lang.String WeaponName
Name of the weapon that caused this damage.


Flaming

protected boolean Flaming
If this damage is causing our bot to burn. TODO


CausedByWorld

protected boolean CausedByWorld
If this damage was caused by world - falling into lava, or falling down.


DirectDamage

protected boolean DirectDamage
If the damage is direct. TODO


BulletHit

protected boolean BulletHit
If this damage was caused by bullet.


VehicleHit

protected boolean VehicleHit
If this damage was caused by vehicle running over us.

Constructor Detail

BotKilled

public BotKilled()
Parameter-less contructor for the message.


BotKilled

public BotKilled(UnrealId Killer,
                 java.lang.String DamageType,
                 java.lang.String DeathString,
                 java.lang.String WeaponName,
                 boolean Flaming,
                 boolean CausedByWorld,
                 boolean DirectDamage,
                 boolean BulletHit,
                 boolean VehicleHit)
Creates new instance of the message BotKilled. Asynchronous message. This bot has died. Corresponding GameBots message is DIE.

Parameters:
Killer - Unique Id of player that killed our bot if any (may have walked off a ledge).
DamageType - A string describing what kind of damage killed the bot.
DeathString - String describing this type of death.
WeaponName - Name of the weapon that caused this damage.
Flaming - If this damage is causing our bot to burn. TODO
CausedByWorld - If this damage was caused by world - falling into lava, or falling down.
DirectDamage - If the damage is direct. TODO
BulletHit - If this damage was caused by bullet.
VehicleHit - If this damage was caused by vehicle running over us.

BotKilled

public BotKilled(BotKilled original)
Cloning constructor from the full message.

Parameters:
original -
Method Detail

getSimTime

public long getSimTime()
Description copied from interface: IWorldEvent
Returns the simulation time when the event has occurred.

Specified by:
getSimTime in interface IWorldChangeEvent
Specified by:
getSimTime in interface IWorldEvent
Returns:
timestamp

setSimTime

protected void setSimTime(long SimTime)
Used by Yylex to slip correct time of the object or programmatically.


getKiller

public UnrealId getKiller()
Unique Id of player that killed our bot if any (may have walked off a ledge).


getDamageType

public java.lang.String getDamageType()
A string describing what kind of damage killed the bot.


getDeathString

public java.lang.String getDeathString()
String describing this type of death.


getWeaponName

public java.lang.String getWeaponName()
Name of the weapon that caused this damage.


isFlaming

public boolean isFlaming()
If this damage is causing our bot to burn. TODO


isCausedByWorld

public boolean isCausedByWorld()
If this damage was caused by world - falling into lava, or falling down.


isDirectDamage

public boolean isDirectDamage()
If the damage is direct. TODO


isBulletHit

public boolean isBulletHit()
If this damage was caused by bullet.


isVehicleHit

public boolean isVehicleHit()
If this damage was caused by vehicle running over us.


toString

public java.lang.String toString()
Overrides:
toString in class InfoMessage

toHtmlString

public java.lang.String toHtmlString()