cz.cuni.amis.pogamut.udk.communication.messages.gbcommands
Class Shoot

Package class diagram package Shoot
java.lang.Object
  extended by cz.cuni.amis.pogamut.base.communication.messages.CommandMessage
      extended by cz.cuni.amis.pogamut.udk.communication.messages.gbcommands.Shoot

public class Shoot
extends CommandMessage

Start firing your weapon (until receives STOPSHOOT command, or run out of ammo or die). Corresponding GameBots command is SHOOT.


Field Summary
protected  boolean Alt
          If you send True to this you will alt fire instead of normal fire.
protected  Location Location
          Location you want to shoot at.
protected  UnrealId Target
          The unique Id of your target.
 
Constructor Summary
Shoot()
          Creates new instance of command Shoot.
Shoot(Location Location, UnrealId Target, boolean Alt)
          Creates new instance of command Shoot.
Shoot(Shoot original)
          Cloning constructor.
 
Method Summary
 Location getLocation()
          Location you want to shoot at.
 UnrealId getTarget()
          The unique Id of your target.
 boolean isAlt()
          If you send True to this you will alt fire instead of normal fire.
 Shoot setAlt(boolean Alt)
          If you send True to this you will alt fire instead of normal fire.
 Shoot setLocation(Location Location)
          Location you want to shoot at.
 Shoot setTarget(UnrealId Target)
          The unique Id of your target.
 String toHtmlString()
           
 String toMessage()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

Location

protected Location Location
Location you want to shoot at.


Target

protected UnrealId Target
The unique Id of your target. If you specify a target, and it is visible to you, the server will provide aim correction and target leading for you. If not you just shoot at the location specified.


Alt

protected boolean Alt
If you send True to this you will alt fire instead of normal fire. For normal fire you don't need to send this argument at all.

Constructor Detail

Shoot

public Shoot(Location Location,
             UnrealId Target,
             boolean Alt)
Creates new instance of command Shoot. Start firing your weapon (until receives STOPSHOOT command, or run out of ammo or die). Corresponding GameBots message for this command is SHOOT.

Parameters:
Location - Location you want to shoot at.
Target - The unique Id of your target. If you specify a target, and it is visible to you, the server will provide aim correction and target leading for you. If not you just shoot at the location specified.
Alt - If you send True to this you will alt fire instead of normal fire. For normal fire you don't need to send this argument at all.

Shoot

public Shoot()
Creates new instance of command Shoot. Start firing your weapon (until receives STOPSHOOT command, or run out of ammo or die). Corresponding GameBots message for this command is SHOOT.

WARNING: this is empty-command constructor, you have to use setters to fill it up!


Shoot

public Shoot(Shoot original)
Cloning constructor.

Method Detail

getLocation

public Location getLocation()
Location you want to shoot at.


setLocation

public Shoot setLocation(Location Location)
Location you want to shoot at.


getTarget

public UnrealId getTarget()
The unique Id of your target. If you specify a target, and it is visible to you, the server will provide aim correction and target leading for you. If not you just shoot at the location specified.


setTarget

public Shoot setTarget(UnrealId Target)
The unique Id of your target. If you specify a target, and it is visible to you, the server will provide aim correction and target leading for you. If not you just shoot at the location specified.


isAlt

public boolean isAlt()
If you send True to this you will alt fire instead of normal fire. For normal fire you don't need to send this argument at all.


setAlt

public Shoot setAlt(boolean Alt)
If you send True to this you will alt fire instead of normal fire. For normal fire you don't need to send this argument at all.


toString

public String toString()
Overrides:
toString in class CommandMessage

toHtmlString

public String toHtmlString()

toMessage

public String toMessage()


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