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 Name: String
    Definition Classes
    BasicDefinition
  8. def Name_=(name: String): String
    Definition Classes
    BasicDefinition
  9. def ObjectId: Int
  10. final def Packet: ObjectCreateConverter[PlanetSideGameObject]

    Get the conversion object.

  11. 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

  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. var packet: PacketConverter

    a data converter for this type of object

    a data converter for this type of object

    Attributes
    protected
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. 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