Class RoundStartedEvent

    • Constructor Summary

      Constructors 
      Constructor Description
      RoundStartedEvent​(ITurnSnapshot startSnapshot, int round)
      Called by the game to create a new RoundStartedEvent.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getRound()
      Returns the round number.
      ITurnSnapshot getStartSnapshot()
      Returns the start snapshot of the participating robots, initial starting positions etc.
      • Methods inherited from class java.lang.Object

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

      • RoundStartedEvent

        public RoundStartedEvent​(ITurnSnapshot startSnapshot,
                                 int round)
        Called by the game to create a new RoundStartedEvent. Please don't use this constructor as it might change.
        Parameters:
        startSnapshot - the start snapshot of the participating robots, initial starting positions etc.
        round - the round number (zero indexed).
    • Method Detail

      • getStartSnapshot

        public ITurnSnapshot getStartSnapshot()
        Returns the start snapshot of the participating robots, initial starting positions etc.
        Returns:
        a ITurnSnapshot that serves as the start snapshot of the round.
      • getRound

        public int getRound()
        Returns the round number.
        Returns:
        the round number, which is zero indexed.