Package org.lwjgl.ovr

Class OVRTrackingState

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer


    public class OVRTrackingState
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Tracking state at a given absolute time (describes predicted HMD pose etc). Returned by GetTrackingState.

    Member documentation

    • HeadPose – Predicted head pose (and derivatives) at the requested absolute time. The look-ahead interval is equal to (HeadPose.TimeInSeconds - RawSensorData.TimeInSeconds).
    • StatusFlagsHeadPose tracking status described by ovrStatusBits.
    • HandPoses – The most recent calculated pose for each hand when hand controller tracking is present. HandPoses[ovrHand_Left] refers to the left hand and HandPoses[ovrHand_Right] to the right hand. These values can be combined with ovrInputState for complete hand controller information.
    • HandStatusFlagsHandPoses status flags described by ovrStatusBits. Only Status_OrientationTracked and Status_PositionTracked are reported.
    • CalibratedOrigin – the pose of the origin captured during calibration.

      Like all other poses here, this is expressed in the space set by RecenterTrackingOrigin, or SpecifyTrackingOrigin and so will change every time either of those functions are called. This pose can be used to calculate where the calibrated origin lands in the new recentered space. If an application never calls RecenterTrackingOrigin or SpecifyTrackingOrigin, expect this value to be the identity pose and as such will point respective origin based on ovrTrackingOrigin requested when calling GetTrackingState.

    Layout

     struct ovrTrackingState {
         ovrPoseStatef HeadPose;
         unsigned int StatusFlags;
         ovrPoseStatef HandPoses[2];
         unsigned int HandStatusFlags[2];
         ovrPosef CalibratedOrigin;
     }
    • Field Detail

      • SIZEOF

        public static final int SIZEOF
        The struct size in bytes.
    • Constructor Detail

      • OVRTrackingState

        public OVRTrackingState(java.nio.ByteBuffer container)
        Creates a OVRTrackingState instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

        The created instance holds a strong reference to the container object.

    • Method Detail

      • sizeof

        public int sizeof()
        Description copied from class: org.lwjgl.system.Struct
        Returns sizeof(struct).
        Specified by:
        sizeof in class org.lwjgl.system.Struct
      • StatusFlags

        public int StatusFlags()
        Returns the value of the StatusFlags field.
      • HandPoses

        public OVRPoseStatef HandPoses(int index)
        Returns a OVRPoseStatef view of the struct at the specified index of the HandPoses field.
      • HandStatusFlags

        public java.nio.IntBuffer HandStatusFlags()
        Returns a IntBuffer view of the HandStatusFlags field.
      • HandStatusFlags

        public int HandStatusFlags(int index)
        Returns the value at the specified index of the HandStatusFlags field.
      • CalibratedOrigin

        public OVRPosef CalibratedOrigin()
        Returns a OVRPosef view of the CalibratedOrigin field.
      • create

        public static OVRTrackingState create(long address)
        Returns a new OVRTrackingState instance for the specified memory address or null if the address is NULL.
      • callocStack

        public static OVRTrackingState callocStack()
        Returns a new OVRTrackingState instance allocated on the thread-local MemoryStack and initializes all its bits to zero.
      • mallocStack

        public static OVRTrackingState mallocStack(org.lwjgl.system.MemoryStack stack)
        Returns a new OVRTrackingState instance allocated on the specified MemoryStack.
        Parameters:
        stack - the stack from which to allocate
      • callocStack

        public static OVRTrackingState callocStack(org.lwjgl.system.MemoryStack stack)
        Returns a new OVRTrackingState instance allocated on the specified MemoryStack and initializes all its bits to zero.
        Parameters:
        stack - the stack from which to allocate
      • callocStack

        public static OVRTrackingState.Buffer callocStack(int capacity)
        Returns a new OVRTrackingState.Buffer instance allocated on the thread-local MemoryStack and initializes all its bits to zero.
        Parameters:
        capacity - the buffer capacity
      • mallocStack

        public static OVRTrackingState.Buffer mallocStack(int capacity,
                                                          org.lwjgl.system.MemoryStack stack)
        Returns a new OVRTrackingState.Buffer instance allocated on the specified MemoryStack.
        Parameters:
        stack - the stack from which to allocate
        capacity - the buffer capacity
      • callocStack

        public static OVRTrackingState.Buffer callocStack(int capacity,
                                                          org.lwjgl.system.MemoryStack stack)
        Returns a new OVRTrackingState.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
        Parameters:
        stack - the stack from which to allocate
        capacity - the buffer capacity