Class BotEvent

java.lang.Object
dev.robocode.tankroyale.botapi.events.BotEvent
All Implemented Interfaces:
IEvent
Direct Known Subclasses:
BotDeathEvent, BulletFiredEvent, BulletHitBotEvent, BulletHitBulletEvent, BulletHitWallEvent, CustomEvent, DeathEvent, HitBotEvent, HitByBulletEvent, HitWallEvent, ScannedBotEvent, SkippedTurnEvent, TeamMessageEvent, TickEvent, WonRoundEvent

public abstract class BotEvent extends Object implements IEvent
Bot event occurring during a battle.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    BotEvent(int turnNumber)
    Initializes a new instance of the Event class.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the turn number when the event occurred.
    boolean
    Indicates if this event is critical, and hence should not be removed from event queue when it gets old.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • BotEvent

      protected BotEvent(int turnNumber)
      Initializes a new instance of the Event class.
      Parameters:
      turnNumber - is the turn number when the event occurred.
  • Method Details

    • getTurnNumber

      public int getTurnNumber()
      Returns the turn number when the event occurred.
      Returns:
      The turn number when the event occurred.
    • isCritical

      public boolean isCritical()
      Indicates if this event is critical, and hence should not be removed from event queue when it gets old.
      Returns:
      true if this event is critical; false otherwise. Default is false.