Packages

class Floor extends Square

The class Floor represents squares that robots can successfully occupy and move through. On creation, a floor square is always empty, but this changes if a robot arrives.

Linear Supertypes
Square, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Floor
  2. Square
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Floor()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addRobot(arrivee: RobotBody): Boolean

    Adds the given robot in the floor square, if possible.

    Adds the given robot in the floor square, if possible. The arrival fails if the square already had an occupant. In that case, the occupant gets destroyed; the robot that crashed into it stays intact and does not get added in the square.

    (This method never affects the contents of any other square besides the single floor square on which the method is invoked.)

    arrivee

    the robot attempting to arrive in the square

    returns

    true if arrivee was successfully placed in the square, false if a collision occurred

    Definition Classes
    FloorSquare
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clear(): Unit

    Removes any robot from the square (if there was one there to begin with).

    Removes any robot from the square (if there was one there to begin with).

    Definition Classes
    FloorSquare
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def isEmpty: Boolean

    Returns true if the floor square has no robot in it, false otherwise.

    Returns true if the floor square has no robot in it, false otherwise.

    Definition Classes
    FloorSquare
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. val isUnpassable: Boolean

    false since a floor is never considered entirely unpassable

    false since a floor is never considered entirely unpassable

    Definition Classes
    FloorSquare
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def nonEmpty: Boolean

    Returns true if the square contains any robot or wall, false otherwise.

    Returns true if the square contains any robot or wall, false otherwise.

    Definition Classes
    Square
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. def robot: Option[RobotBody]

    Returns the robot occupying the square, wrapped in an Option, or None, if there is no robot in the square.

    Returns the robot occupying the square, wrapped in an Option, or None, if there is no robot in the square.

    Definition Classes
    FloorSquare
  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString: String
    Definition Classes
    AnyRef → Any
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Square

Inherited from AnyRef

Inherited from Any

Ungrouped