abstract class ObjectDefinition extends BasicDefinition

Associate an object's canned in-game representation with its basic game identification unit. The extension of this class would identify the common data necessary to construct such a given game object.

The converter transforms a game object that is created by this ObjectDefinition into packet data through method-calls. The field for this converter is a PacketConverter, the superclass for ObjectCreateConverter; the type of the mutator's parameter is ObjectCreateConverter of a wildcard tparam; and, the accessor return type is ObjectCreateConverter[PlanetSideGameObject], a minimum-true statement. The actual type of the converter at a given point, casted or otherwise, is mostly meaningless. Casting the external object does not mutate any of the types used by the methods within that object. So long as it is an ObjectCreatePacket, those methods can be called correctly for a game object of the desired type.

Source
ObjectDefinition.scala
Linear Supertypes
BasicDefinition, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ObjectDefinition
  2. BasicDefinition
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ObjectDefinition(objectId: Int)

    objectId

    the object's identifier number

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 Descriptor: String
    Definition Classes
    BasicDefinition
  5. def Descriptor_=(description: Option[String]): String
    Definition Classes
    BasicDefinition
  6. def Descriptor_=(description: String): String
    Definition Classes
    BasicDefinition
  7. def DisableAtMaxDepth: Boolean
  8. def DisableAtMaxDepth_=(drowns: Boolean): Boolean
  9. def DrownAtMaxDepth: Boolean
  10. def DrownAtMaxDepth_=(drowns: Boolean): Boolean
  11. def Geometry: (Any) => VolumetricGeometry
  12. def Geometry_=(func: (Any) => VolumetricGeometry): (Any) => VolumetricGeometry
  13. def MaxDepth: Float
  14. def MaxDepth_=(height: Float): Float
  15. def Name: String
    Definition Classes
    BasicDefinition
  16. def Name_=(name: String): String
    Definition Classes
    BasicDefinition
  17. def ObjectId: Int
  18. final def Packet: ObjectCreateConverter[PlanetSideGameObject]

    Get the conversion object.

  19. final def Packet_=(pkt: ObjectCreateConverter[_]): PacketConverter

    Assign this definition a conversion object.

    Assign this definition a conversion object.

    pkt

    the new converter

    returns

    the current converter, after assignment

  20. def ServerSplashTargetsCentroid: Boolean
  21. def ServerSplashTargetsCentroid_=(splash: Boolean): Boolean
  22. def UnderwaterLifespan(suffocation: Long, recovery: Long): Map[OxygenState, Long]
  23. def UnderwaterLifespan(key: OxygenState): Long
  24. def UnderwaterLifespan(): Map[OxygenState, Long]
  25. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  26. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  27. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  29. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  30. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  31. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. var maxForwardSpeed: Float

    The maximum forward speed that can be expected to be achieved by this unit.

    The maximum forward speed that can be expected to be achieved by this unit. Faster speeds are not discounted due to conditions of the motion or game environment but speeds too far beyond this measure should be considered suspicious. For ground vehicles, this field is called maxForward in the ADB. For flight vehicles, this field is called MaxSpeed and flightmaxspeed in the ADB, and it does not factor in the afterburner.

  34. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  35. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  37. var packet: PacketConverter

    a data converter for this type of object

    a data converter for this type of object

    Attributes
    protected
  38. var registerAs: String
  39. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from BasicDefinition

Inherited from AnyRef

Inherited from Any

Ungrouped