Trait/Object

net.psforever.objects.serverobject.terminals

ProximityUnit

Related Docs: object ProximityUnit | package terminals

Permalink

trait ProximityUnit extends AnyRef

A server object that provides a service, triggered when a certain distance from the unit itself (proximity-based). Unlike conventional terminals, this one is not necessarily structure-owned. For example, the cavern crystals are considered owner-neutral elements that are not attached to a Building object.

Self Type
ProximityUnit with Terminal
Source
ProximityUnit.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProximityUnit
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ProximityUnit to any2stringadd[ProximityUnit] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ProximityUnit, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ProximityUnit to ArrowAssoc[ProximityUnit] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def AddUser(target: PlanetSideGameObject): Boolean

    Permalink

    Accept a new target for this unit.

    Accept a new target for this unit.

    target

    the new target

    returns

    true, if the entrant has been added and is new to the list; false if the entrant is already in the list or can not be added

  7. def NumberUsers: Int

    Permalink
  8. def RemoveUser(target: PlanetSideGameObject): Boolean

    Permalink

    Remove an existing target for this unit.

    Remove an existing target for this unit.

    target

    the target

    returns

    true, if the submitted entity was previously in the list but is not longer in the list; false, if the submitted entity was never in the list or can not be removed

  9. def Targets: Seq[PlanetSideGameObject]

    Permalink
  10. def Validate(radius: Float, validations: Seq[(PlanetSideGameObject) ⇒ Boolean])(target: PlanetSideGameObject): Boolean

    Permalink

    Confirm whether the entity is a valid target for the effects of this unit.

    Confirm whether the entity is a valid target for the effects of this unit. Curried to accept parameters for the tests separately from the entity to be tested. In general, the two requirements beyond the custom validations involve distance (from the unit) and inclusiveness (known to the unit beforehand).

    radius

    the squared minimum activation distance

    validations

    the custom tests that the entity must pass to be considered valid; in general, regardless of the type of the target, any of the tests must be passed

    target

    the submitted entity

    returns

    true, if the entity passes the validation tests; false, otherwise

  11. def Validate(target: PlanetSideGameObject): Boolean

    Permalink

    Confirm whether the entity is a valid target for the effects of this unit.

    Confirm whether the entity is a valid target for the effects of this unit.

    target

    the submitted entity

    returns

    true, if the entity passes the validation tests; false, otherwise

  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def ensuring(cond: (ProximityUnit) ⇒ Boolean, msg: ⇒ Any): ProximityUnit

    Permalink
    Implicit information
    This member is added by an implicit conversion from ProximityUnit to Ensuring[ProximityUnit] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (ProximityUnit) ⇒ Boolean): ProximityUnit

    Permalink
    Implicit information
    This member is added by an implicit conversion from ProximityUnit to Ensuring[ProximityUnit] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): ProximityUnit

    Permalink
    Implicit information
    This member is added by an implicit conversion from ProximityUnit to Ensuring[ProximityUnit] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): ProximityUnit

    Permalink
    Implicit information
    This member is added by an implicit conversion from ProximityUnit to Ensuring[ProximityUnit] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ProximityUnit to StringFormat[ProximityUnit] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  22. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  23. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. def [B](y: B): (ProximityUnit, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ProximityUnit to ArrowAssoc[ProximityUnit] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ProximityUnit to any2stringadd[ProximityUnit]

Inherited by implicit conversion StringFormat from ProximityUnit to StringFormat[ProximityUnit]

Inherited by implicit conversion Ensuring from ProximityUnit to Ensuring[ProximityUnit]

Inherited by implicit conversion ArrowAssoc from ProximityUnit to ArrowAssoc[ProximityUnit]

Ungrouped