Class/Object

net.psforever.packet.game

ChildObjectStateMessage

Related Docs: object ChildObjectStateMessage | package game

Permalink

final case class ChildObjectStateMessage(object_guid: PlanetSideGUID, pitch: Float, yaw: Float) extends PlanetSideGamePacket with Product with Serializable

Dispatched from a client when its user is controlling a secondary object whose state must be updated.

When ChildObjectStateMessage is being sent to the server, it replaces PlayerStateMessage. The packet frequently gets hidden in a MultiPacket, though it is not functionally essential to do that.

Note the lack of position data. The secondary object in question is updated in position through another means or is stationary. The only concern is the direction the object is facing. The angles are relative to the object's normal forward-facing and typically begin tracking at 0, 0 (forward-facing).

object_guid

the object being manipulated (controlled)

pitch

the amount of pitch that affects orientation from forward facing (0)

yaw

the amount of yaw that affects orientation from forward-facing (0)

Source
ChildObjectStateMessage.scala
Linear Supertypes
Product, Equals, PlanetSideGamePacket, PlanetSidePacket, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ChildObjectStateMessage
  2. Product
  3. Equals
  4. PlanetSideGamePacket
  5. PlanetSidePacket
  6. Serializable
  7. Serializable
  8. AnyRef
  9. 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

Instance Constructors

  1. new ChildObjectStateMessage(object_guid: PlanetSideGUID, pitch: Float, yaw: Float)

    Permalink

    object_guid

    the object being manipulated (controlled)

    pitch

    the amount of pitch that affects orientation from forward facing (0)

    yaw

    the amount of yaw that affects orientation from forward-facing (0)

Type Members

  1. type Packet = ChildObjectStateMessage

    Permalink

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 ChildObjectStateMessage to any2stringadd[ChildObjectStateMessage] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ChildObjectStateMessage, B)

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

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def encode: Attempt[BitVector]

    Permalink
  9. def ensuring(cond: (ChildObjectStateMessage) ⇒ Boolean, msg: ⇒ Any): ChildObjectStateMessage

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  14. def finalize(): Unit

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  21. val object_guid: PlanetSideGUID

    Permalink

    the object being manipulated (controlled)

  22. def opcode: GamePacketOpcode.Value

    Permalink
  23. val pitch: Float

    Permalink

    the amount of pitch that affects orientation from forward facing (0)

  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. val yaw: Float

    Permalink

    the amount of yaw that affects orientation from forward-facing (0)

  29. def [B](y: B): (ChildObjectStateMessage, B)

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

Inherited from Product

Inherited from Equals

Inherited from PlanetSideGamePacket

Inherited from PlanetSidePacket

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped