All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.ovr.OVRSessionStatus Maven / Gradle / Ivy

The newest version!
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.ovr;

import javax.annotation.*;

import java.nio.*;

import org.lwjgl.*;
import org.lwjgl.system.*;

import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.MemoryStack.*;

/**
 * Specifies status information for the current session.
 * 
 * 

Layout

* *

 * struct ovrSessionStatus {
 *     ovrBool {@link #IsVisible};
 *     ovrBool {@link #HmdPresent};
 *     ovrBool {@link #HmdMounted};
 *     ovrBool {@link #DisplayLost};
 *     ovrBool {@link #ShouldQuit};
 *     ovrBool {@link #ShouldRecenter};
 *     ovrBool {@link #HasInputFocus};
 *     ovrBool {@link #OverlayPresent};
 *     ovrBool {@link #DepthRequested};
 * }
*/ @NativeType("struct ovrSessionStatus") public class OVRSessionStatus extends Struct implements NativeResource { /** The struct size in bytes. */ public static final int SIZEOF; /** The struct alignment in bytes. */ public static final int ALIGNOF; /** The struct member offsets. */ public static final int ISVISIBLE, HMDPRESENT, HMDMOUNTED, DISPLAYLOST, SHOULDQUIT, SHOULDRECENTER, HASINPUTFOCUS, OVERLAYPRESENT, DEPTHREQUESTED; static { Layout layout = __struct( __member(1), __member(1), __member(1), __member(1), __member(1), __member(1), __member(1), __member(1), __member(1) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); ISVISIBLE = layout.offsetof(0); HMDPRESENT = layout.offsetof(1); HMDMOUNTED = layout.offsetof(2); DISPLAYLOST = layout.offsetof(3); SHOULDQUIT = layout.offsetof(4); SHOULDRECENTER = layout.offsetof(5); HASINPUTFOCUS = layout.offsetof(6); OVERLAYPRESENT = layout.offsetof(7); DEPTHREQUESTED = layout.offsetof(8); } protected OVRSessionStatus(long address, @Nullable ByteBuffer container) { super(address, container); } @Override protected OVRSessionStatus create(long address, @Nullable ByteBuffer container) { return new OVRSessionStatus(address, container); } /** * Creates a {@code OVRSessionStatus} instance at the current position of the specified {@link 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.

*/ public OVRSessionStatus(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** True if the process has VR focus and thus is visible in the HMD. */ @NativeType("ovrBool") public boolean IsVisible() { return nIsVisible(address()); } /** True if an HMD is present. */ @NativeType("ovrBool") public boolean HmdPresent() { return nHmdPresent(address()); } /** True if the HMD is on the user's head. */ @NativeType("ovrBool") public boolean HmdMounted() { return nHmdMounted(address()); } /** True if the session is in a display-lost state. See {@link OVR#ovr_SubmitFrame SubmitFrame}. */ @NativeType("ovrBool") public boolean DisplayLost() { return nDisplayLost(address()); } /** True if the application should initiate shutdown. */ @NativeType("ovrBool") public boolean ShouldQuit() { return nShouldQuit(address()); } /** True if UX has requested re-centering. Must call {@link OVR#ovr_ClearShouldRecenterFlag ClearShouldRecenterFlag}, {@link OVR#ovr_RecenterTrackingOrigin RecenterTrackingOrigin} or {@link OVR#ovr_SpecifyTrackingOrigin SpecifyTrackingOrigin}. */ @NativeType("ovrBool") public boolean ShouldRecenter() { return nShouldRecenter(address()); } /** * True if the application is the foreground application and receives input (e.g. Touch controller state). If this is false then the application is in the * background (but possibly still visible) should hide any input representations such as hands. */ @NativeType("ovrBool") public boolean HasInputFocus() { return nHasInputFocus(address()); } /** * True if a system overlay is present, such as a dashboard. In this case the application (if visible) should pause while still drawing, avoid drawing * near-field graphics so they don't visually fight with the system overlay, and consume fewer CPU and GPU resources. * *

Deprecated, do not use.

*/ @NativeType("ovrBool") public boolean OverlayPresent() { return nOverlayPresent(address()); } /** True if runtime is requesting that the application provide depth buffers with projection layers. */ @NativeType("ovrBool") public boolean DepthRequested() { return nDepthRequested(address()); } // ----------------------------------- /** Returns a new {@code OVRSessionStatus} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static OVRSessionStatus malloc() { return new OVRSessionStatus(nmemAllocChecked(SIZEOF), null); } /** Returns a new {@code OVRSessionStatus} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static OVRSessionStatus calloc() { return new OVRSessionStatus(nmemCallocChecked(1, SIZEOF), null); } /** Returns a new {@code OVRSessionStatus} instance allocated with {@link BufferUtils}. */ public static OVRSessionStatus create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return new OVRSessionStatus(memAddress(container), container); } /** Returns a new {@code OVRSessionStatus} instance for the specified memory address. */ public static OVRSessionStatus create(long address) { return new OVRSessionStatus(address, null); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static OVRSessionStatus createSafe(long address) { return address == NULL ? null : new OVRSessionStatus(address, null); } /** * Returns a new {@link OVRSessionStatus.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static OVRSessionStatus.Buffer malloc(int capacity) { return new Buffer(nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity); } /** * Returns a new {@link OVRSessionStatus.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static OVRSessionStatus.Buffer calloc(int capacity) { return new Buffer(nmemCallocChecked(capacity, SIZEOF), capacity); } /** * Returns a new {@link OVRSessionStatus.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static OVRSessionStatus.Buffer create(int capacity) { ByteBuffer container = __create(capacity, SIZEOF); return new Buffer(memAddress(container), container, -1, 0, capacity, capacity); } /** * Create a {@link OVRSessionStatus.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static OVRSessionStatus.Buffer create(long address, int capacity) { return new Buffer(address, capacity); } /** Like {@link #create(long, int) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static OVRSessionStatus.Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Deprecated for removal in 3.4.0. Use {@link #malloc(MemoryStack)} instead. */ @Deprecated public static OVRSessionStatus mallocStack() { return malloc(stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(MemoryStack)} instead. */ @Deprecated public static OVRSessionStatus callocStack() { return calloc(stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(MemoryStack)} instead. */ @Deprecated public static OVRSessionStatus mallocStack(MemoryStack stack) { return malloc(stack); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(MemoryStack)} instead. */ @Deprecated public static OVRSessionStatus callocStack(MemoryStack stack) { return calloc(stack); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(int, MemoryStack)} instead. */ @Deprecated public static OVRSessionStatus.Buffer mallocStack(int capacity) { return malloc(capacity, stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(int, MemoryStack)} instead. */ @Deprecated public static OVRSessionStatus.Buffer callocStack(int capacity) { return calloc(capacity, stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(int, MemoryStack)} instead. */ @Deprecated public static OVRSessionStatus.Buffer mallocStack(int capacity, MemoryStack stack) { return malloc(capacity, stack); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(int, MemoryStack)} instead. */ @Deprecated public static OVRSessionStatus.Buffer callocStack(int capacity, MemoryStack stack) { return calloc(capacity, stack); } /** * Returns a new {@code OVRSessionStatus} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static OVRSessionStatus malloc(MemoryStack stack) { return new OVRSessionStatus(stack.nmalloc(ALIGNOF, SIZEOF), null); } /** * Returns a new {@code OVRSessionStatus} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static OVRSessionStatus calloc(MemoryStack stack) { return new OVRSessionStatus(stack.ncalloc(ALIGNOF, 1, SIZEOF), null); } /** * Returns a new {@link OVRSessionStatus.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static OVRSessionStatus.Buffer malloc(int capacity, MemoryStack stack) { return new Buffer(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link OVRSessionStatus.Buffer} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static OVRSessionStatus.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #IsVisible}. */ public static boolean nIsVisible(long struct) { return UNSAFE.getByte(null, struct + OVRSessionStatus.ISVISIBLE) != 0; } /** Unsafe version of {@link #HmdPresent}. */ public static boolean nHmdPresent(long struct) { return UNSAFE.getByte(null, struct + OVRSessionStatus.HMDPRESENT) != 0; } /** Unsafe version of {@link #HmdMounted}. */ public static boolean nHmdMounted(long struct) { return UNSAFE.getByte(null, struct + OVRSessionStatus.HMDMOUNTED) != 0; } /** Unsafe version of {@link #DisplayLost}. */ public static boolean nDisplayLost(long struct) { return UNSAFE.getByte(null, struct + OVRSessionStatus.DISPLAYLOST) != 0; } /** Unsafe version of {@link #ShouldQuit}. */ public static boolean nShouldQuit(long struct) { return UNSAFE.getByte(null, struct + OVRSessionStatus.SHOULDQUIT) != 0; } /** Unsafe version of {@link #ShouldRecenter}. */ public static boolean nShouldRecenter(long struct) { return UNSAFE.getByte(null, struct + OVRSessionStatus.SHOULDRECENTER) != 0; } /** Unsafe version of {@link #HasInputFocus}. */ public static boolean nHasInputFocus(long struct) { return UNSAFE.getByte(null, struct + OVRSessionStatus.HASINPUTFOCUS) != 0; } /** Unsafe version of {@link #OverlayPresent}. */ public static boolean nOverlayPresent(long struct) { return UNSAFE.getByte(null, struct + OVRSessionStatus.OVERLAYPRESENT) != 0; } /** Unsafe version of {@link #DepthRequested}. */ public static boolean nDepthRequested(long struct) { return UNSAFE.getByte(null, struct + OVRSessionStatus.DEPTHREQUESTED) != 0; } // ----------------------------------- /** An array of {@link OVRSessionStatus} structs. */ public static class Buffer extends StructBuffer implements NativeResource { private static final OVRSessionStatus ELEMENT_FACTORY = OVRSessionStatus.create(-1L); /** * Creates a new {@code OVRSessionStatus.Buffer} instance backed by the specified container. * *

Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values * will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided * by {@link OVRSessionStatus#SIZEOF}, and its mark will be undefined.

* *

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

*/ public Buffer(ByteBuffer container) { super(container, container.remaining() / SIZEOF); } public Buffer(long address, int cap) { super(address, null, -1, 0, cap, cap); } Buffer(long address, @Nullable ByteBuffer container, int mark, int pos, int lim, int cap) { super(address, container, mark, pos, lim, cap); } @Override protected Buffer self() { return this; } @Override protected OVRSessionStatus getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@link OVRSessionStatus#IsVisible} field. */ @NativeType("ovrBool") public boolean IsVisible() { return OVRSessionStatus.nIsVisible(address()); } /** @return the value of the {@link OVRSessionStatus#HmdPresent} field. */ @NativeType("ovrBool") public boolean HmdPresent() { return OVRSessionStatus.nHmdPresent(address()); } /** @return the value of the {@link OVRSessionStatus#HmdMounted} field. */ @NativeType("ovrBool") public boolean HmdMounted() { return OVRSessionStatus.nHmdMounted(address()); } /** @return the value of the {@link OVRSessionStatus#DisplayLost} field. */ @NativeType("ovrBool") public boolean DisplayLost() { return OVRSessionStatus.nDisplayLost(address()); } /** @return the value of the {@link OVRSessionStatus#ShouldQuit} field. */ @NativeType("ovrBool") public boolean ShouldQuit() { return OVRSessionStatus.nShouldQuit(address()); } /** @return the value of the {@link OVRSessionStatus#ShouldRecenter} field. */ @NativeType("ovrBool") public boolean ShouldRecenter() { return OVRSessionStatus.nShouldRecenter(address()); } /** @return the value of the {@link OVRSessionStatus#HasInputFocus} field. */ @NativeType("ovrBool") public boolean HasInputFocus() { return OVRSessionStatus.nHasInputFocus(address()); } /** @return the value of the {@link OVRSessionStatus#OverlayPresent} field. */ @NativeType("ovrBool") public boolean OverlayPresent() { return OVRSessionStatus.nOverlayPresent(address()); } /** @return the value of the {@link OVRSessionStatus#DepthRequested} field. */ @NativeType("ovrBool") public boolean DepthRequested() { return OVRSessionStatus.nDepthRequested(address()); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy