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.
- Alphabetic
- By Inheritance
- Floor
- Square
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Floor()
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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
ifarrivee
was successfully placed in the square,false
if a collision occurred
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clear(): Unit
Removes any robot from the square (if there was one there to begin with).
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def isEmpty: Boolean
Returns
true
if the floor square has no robot in it,false
otherwise. - final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val isUnpassable: Boolean
false
since a floor is never considered entirely unpassable - final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- 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
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def robot: Option[RobotBody]
Returns the robot occupying the square, wrapped in an
Option
, orNone
, if there is no robot in the square. - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString: String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.