public class ItemMessage extends Item implements IWorldObjectUpdatedEvent, ICompositeWorldObjectUpdatedEvent
Modifier and Type | Class and Description |
---|---|
class |
ItemMessage.ItemLocalMessage
Implementation of the local part of the GameBots2004 message INV, used
to facade INVMessage.
|
class |
ItemMessage.ItemSharedMessage
Implementation of the shared part of the GameBots2004 message INV, used
to facade INVMessage.
|
class |
ItemMessage.ItemStaticMessage
Implementation of the static part of the GameBots2004 message INV, used
to facade INVMessage.
|
Item.ItemUpdate, Item.ObjectDisappeared
IWorldObjectUpdatedEvent.DestroyWorldObject
Modifier and Type | Field and Description |
---|---|
protected int |
Amount
If this item is some ammo or health pack, here we can find
out how much of the attribute this item will add.
|
protected boolean |
Amount_Set
Whether property 'Amount' was received from GB2004.
|
protected ItemDescriptor |
Descriptor
Descriptor of the item - according the ItemType you may cast this to various XYZDescriptor.
|
protected boolean |
Descriptor_Set
Whether property 'Descriptor' was received from GB2004.
|
protected boolean |
Dropped
Whether it is regular item or one dropped by some bot (usually during dying).
|
protected boolean |
Dropped_Set
Whether property 'Dropped' was received from GB2004.
|
protected UnrealId |
Id
Unique Id of the item.
|
protected boolean |
Id_Set
Whether property 'Id' was received from GB2004.
|
protected Location |
Location
Location of the item.
|
protected boolean |
Location_Set
Whether property 'Location' was received from GB2004.
|
protected NavPoint |
NavPoint
If the Item is not dropped then it's item that is laying at some navpoint and
this is that NavPoint instance.
|
protected boolean |
NavPoint_Set
Whether property 'NavPoint' was received from GB2004.
|
protected UnrealId |
NavPointId
Id of the navpoint where the item is laying.
|
protected boolean |
NavPointId_Set
Whether property 'NavPointId' was received from GB2004.
|
protected ITeamId |
TeamId |
protected ItemType |
Type
Class of the item (e.g.
|
protected boolean |
Type_Set
Whether property 'Type' was received from GB2004.
|
protected boolean |
Visible
If the item is in the field of view of the bot.
|
protected boolean |
Visible_Set
Whether property 'Visible' was received from GB2004.
|
Constructor and Description |
---|
ItemMessage()
Parameter-less contructor for the message.
|
ItemMessage(ItemMessage original)
Cloning constructor from the full message.
|
ItemMessage(UnrealId Id,
UnrealId NavPointId,
NavPoint NavPoint,
boolean Visible,
Location Location,
int Amount,
ItemType Type,
ItemDescriptor Descriptor,
boolean Dropped)
Creates new instance of the message Item.
|
Modifier and Type | Method and Description |
---|---|
int |
getAmount()
If this item is some ammo or health pack, here we can find
out how much of the attribute this item will add.
|
ItemDescriptor |
getDescriptor()
Descriptor of the item - according the ItemType you may cast this to various XYZDescriptor.
|
UnrealId |
getId()
Unique Id of the item.
|
ItemLocal |
getLocal() |
ILocalWorldObjectUpdatedEvent |
getLocalEvent() |
Location |
getLocation()
Location of the item.
|
NavPoint |
getNavPoint()
If the Item is not dropped then it's item that is laying at some navpoint and
this is that NavPoint instance.
|
UnrealId |
getNavPointId()
Id of the navpoint where the item is laying.
|
ItemShared |
getShared() |
ISharedWorldObjectUpdatedEvent |
getSharedEvent() |
ItemStatic |
getStatic() |
IStaticWorldObjectUpdatedEvent |
getStaticEvent() |
ITeamId |
getTeamId() |
ItemType |
getType()
Class of the item (e.g.
|
boolean |
isDropped()
Whether it is regular item or one dropped by some bot (usually during dying).
|
boolean |
isVisible()
If the item is in the field of view of the bot.
|
void |
setNavPoint(NavPoint navPoint)
DO NOT USE THIS METHOD! Reserved for GaviaLib (Pogamut core)! It's used
to set correct navpoint instance into the item.
|
protected void |
setTeamId(ITeamId TeamId)
Used by Yylex to slip corretn TeamId.
|
String |
toHtmlString() |
String |
toString() |
IWorldObjectUpdateResult<IWorldObject> |
update(IWorldObject object) |
createDisappearEvent, getSimTime, setSimTime, toJsonLiteral
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getSimTime
protected ITeamId TeamId
protected UnrealId Id
protected boolean Id_Set
protected UnrealId NavPointId
protected boolean NavPointId_Set
protected NavPoint NavPoint
protected boolean NavPoint_Set
protected boolean Visible
protected boolean Visible_Set
protected Location Location
protected boolean Location_Set
protected int Amount
protected boolean Amount_Set
protected ItemType Type
protected boolean Type_Set
protected ItemDescriptor Descriptor
protected boolean Descriptor_Set
protected boolean Dropped
protected boolean Dropped_Set
public ItemMessage()
public ItemMessage(UnrealId Id, UnrealId NavPointId, NavPoint NavPoint, boolean Visible, Location Location, int Amount, ItemType Type, ItemDescriptor Descriptor, boolean Dropped)
Id
- Unique Id of the item. This Id represents just item on the
map, not in our inventory.NavPointId
- Id of the navpoint where the item is laying. If null - the item was dropped by the bot or another player.NavPoint
- If the Item is not dropped then it's item that is laying at some navpoint and
this is that NavPoint instance.Visible
- If the item is in the field of view of the bot.Location
- Location of the item.Amount
- If this item is some ammo or health pack, here we can find
out how much of the attribute this item will add.Type
- Class of the item (e.g. xWeapons.FlakCannonPickup).Descriptor
- Descriptor of the item - according the ItemType you may cast this to various XYZDescriptor.Dropped
- Whether it is regular item or one dropped by some bot (usually during dying). Items that are not dropped
usually respawns itself (depends on the game settings) while those that are dropped may be taken only once.public ItemMessage(ItemMessage original)
original
- protected void setTeamId(ITeamId TeamId)
public ITeamId getTeamId()
public UnrealId getId()
Item
getId
in interface IWorldObjectUpdatedEvent
getId
in interface IWorldObject
getId
in interface ICompositeWorldObjectUpdatedEvent
getId
in class Item
public UnrealId getNavPointId()
Item
getNavPointId
in class Item
public NavPoint getNavPoint()
Item
getNavPoint
in class Item
public boolean isVisible()
Item
public Location getLocation()
Item
getLocation
in interface ILocated
getLocation
in class Item
public int getAmount()
Item
public ItemType getType()
Item
public ItemDescriptor getDescriptor()
Item
getDescriptor
in class Item
public boolean isDropped()
Item
public ItemLocal getLocal()
getLocal
in interface ICompositeWorldObject
public ItemShared getShared()
getShared
in interface ICompositeWorldObject
public ItemStatic getStatic()
getStatic
in interface ICompositeWorldObject
public IWorldObjectUpdateResult<IWorldObject> update(IWorldObject object)
update
in interface IWorldObjectUpdatedEvent
public ILocalWorldObjectUpdatedEvent getLocalEvent()
getLocalEvent
in interface ICompositeWorldObjectUpdatedEvent
public ISharedWorldObjectUpdatedEvent getSharedEvent()
getSharedEvent
in interface ICompositeWorldObjectUpdatedEvent
public IStaticWorldObjectUpdatedEvent getStaticEvent()
getStaticEvent
in interface ICompositeWorldObjectUpdatedEvent
public String toHtmlString()
toHtmlString
in class Item
public void setNavPoint(NavPoint navPoint)
Copyright © 2012 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.