class Area extends AnyRef
The class Area
represents locations in a text adventure game world. A game world
consists of areas. In general, an "area" can be pretty much anything: a room, a building,
an acre of forest, or something completely different. What different areas have in
common is that players can be located in them and that they can have exits leading to
other, neighboring areas. An area also has a name and a description.
- Alphabetic
- By Inheritance
- Area
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Area(name: String, description: String)
- name
the name of the area
- description
a basic description of the area (typically not including information about items)
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 addItem(item: Item): Unit
Places an item in the area so that it can be, for instance, picked up.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def contains(itemName: String): Boolean
Determines if the area contains an item of the given name.
- var description: String
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fullDescription: String
Returns a multi-line description of the area as a player sees it.
Returns a multi-line description of the area as a player sees it. This includes a basic description of the area as well as information about exits and items. If there are no items present, the return value has the form "DESCRIPTION\n\nExits available: DIRECTIONS SEPARATED BY SPACES". If there are one or more items present, the return value has the form "DESCRIPTION\nYou see here: ITEMS SEPARATED BY SPACES\n\nExits available: DIRECTIONS SEPARATED BY SPACES".The items and directions are listed in an arbitrary order.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- var name: String
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def neighbor(direction: String): Option[Area]
Returns the area that can be reached from this area by moving in the given direction.
Returns the area that can be reached from this area by moving in the given direction. The result is returned in an
Option
;None
is returned if there is no exit in the given direction. - final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def removeItem(itemName: String): Option[Item]
Removes the item of the given name from the area, assuming an item with that name was there to begin with.
Removes the item of the given name from the area, assuming an item with that name was there to begin with. Returns the removed item wrapped in an
Option
orNone
in the case there was no such item present. - def setNeighbor(direction: String, neighbor: Area): Unit
Adds an exit from this area to the given area.
Adds an exit from this area to the given area. The neighboring area is reached by moving in the specified direction from this area.
- def setNeighbors(exits: Vector[(String, Area)]): Unit
Adds exits from this area to the given areas.
Adds exits from this area to the given areas. Calling this method is equivalent to calling the
setNeighbor
method on each of the given direction--area pairs.- exits
contains pairs consisting of a direction and the neighboring area in that direction
- See also
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString: String
Returns a single-line description of the area for debugging purposes.
Returns a single-line description of the area for debugging purposes.
- Definition Classes
- Area → 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.