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

org.lwjgl.openvr.PathWrite Maven / Gradle / Ivy

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

import org.jspecify.annotations.*;

import java.nio.*;

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

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

/**
 * 

Layout

* *

 * struct PathWrite_t {
 *     PathHandle_t ulPath;
 *     EPropertyWriteType {@link #writeType};
 *     ETrackedPropertyError {@link #eSetError};
 *     void * pvBuffer;
 *     uint32_t unBufferSize;
 *     PropertyTypeTag_t unTag;
 *     ETrackedPropertyError {@link #eError};
 *     char * pszPath;
 * }
*/ @NativeType("struct PathWrite_t") public class PathWrite 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 ULPATH, WRITETYPE, ESETERROR, PVBUFFER, UNBUFFERSIZE, UNTAG, EERROR, PSZPATH; static { Layout layout = __struct( __member(8), __member(4), __member(4), __member(POINTER_SIZE), __member(4), __member(4), __member(4), __member(POINTER_SIZE) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); ULPATH = layout.offsetof(0); WRITETYPE = layout.offsetof(1); ESETERROR = layout.offsetof(2); PVBUFFER = layout.offsetof(3); UNBUFFERSIZE = layout.offsetof(4); UNTAG = layout.offsetof(5); EERROR = layout.offsetof(6); PSZPATH = layout.offsetof(7); } protected PathWrite(long address, @Nullable ByteBuffer container) { super(address, container); } @Override protected PathWrite create(long address, @Nullable ByteBuffer container) { return new PathWrite(address, container); } /** * Creates a {@code PathWrite} 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 PathWrite(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code ulPath} field. */ @NativeType("PathHandle_t") public long ulPath() { return nulPath(address()); } /** one of:
{@link VR#EPropertyWriteType_PropertyWrite_Set}{@link VR#EPropertyWriteType_PropertyWrite_Erase}
{@link VR#EPropertyWriteType_PropertyWrite_SetError}
*/ @NativeType("EPropertyWriteType") public int writeType() { return nwriteType(address()); } /** one of:
{@link VR#ETrackedPropertyError_TrackedProp_Success}
{@link VR#ETrackedPropertyError_TrackedProp_WrongDataType}
{@link VR#ETrackedPropertyError_TrackedProp_WrongDeviceClass}
{@link VR#ETrackedPropertyError_TrackedProp_BufferTooSmall}
{@link VR#ETrackedPropertyError_TrackedProp_UnknownProperty}
{@link VR#ETrackedPropertyError_TrackedProp_InvalidDevice}
{@link VR#ETrackedPropertyError_TrackedProp_CouldNotContactServer}
{@link VR#ETrackedPropertyError_TrackedProp_ValueNotProvidedByDevice}
{@link VR#ETrackedPropertyError_TrackedProp_StringExceedsMaximumLength}
{@link VR#ETrackedPropertyError_TrackedProp_NotYetAvailable}
{@link VR#ETrackedPropertyError_TrackedProp_PermissionDenied}
{@link VR#ETrackedPropertyError_TrackedProp_InvalidOperation}
{@link VR#ETrackedPropertyError_TrackedProp_CannotWriteToWildcards}
{@link VR#ETrackedPropertyError_TrackedProp_IPCReadFailure}
{@link VR#ETrackedPropertyError_TrackedProp_OutOfMemory}
{@link VR#ETrackedPropertyError_TrackedProp_InvalidContainer}
*/ @NativeType("ETrackedPropertyError") public int eSetError() { return neSetError(address()); } /** @return a {@link ByteBuffer} view of the data pointed to by the {@code pvBuffer} field. */ @NativeType("void *") public ByteBuffer pvBuffer() { return npvBuffer(address()); } /** @return the value of the {@code unBufferSize} field. */ @NativeType("uint32_t") public int unBufferSize() { return nunBufferSize(address()); } /** @return the value of the {@code unTag} field. */ @NativeType("PropertyTypeTag_t") public int unTag() { return nunTag(address()); } /** one of:
{@link VR#ETrackedPropertyError_TrackedProp_Success}
{@link VR#ETrackedPropertyError_TrackedProp_WrongDataType}
{@link VR#ETrackedPropertyError_TrackedProp_WrongDeviceClass}
{@link VR#ETrackedPropertyError_TrackedProp_BufferTooSmall}
{@link VR#ETrackedPropertyError_TrackedProp_UnknownProperty}
{@link VR#ETrackedPropertyError_TrackedProp_InvalidDevice}
{@link VR#ETrackedPropertyError_TrackedProp_CouldNotContactServer}
{@link VR#ETrackedPropertyError_TrackedProp_ValueNotProvidedByDevice}
{@link VR#ETrackedPropertyError_TrackedProp_StringExceedsMaximumLength}
{@link VR#ETrackedPropertyError_TrackedProp_NotYetAvailable}
{@link VR#ETrackedPropertyError_TrackedProp_PermissionDenied}
{@link VR#ETrackedPropertyError_TrackedProp_InvalidOperation}
{@link VR#ETrackedPropertyError_TrackedProp_CannotWriteToWildcards}
{@link VR#ETrackedPropertyError_TrackedProp_IPCReadFailure}
{@link VR#ETrackedPropertyError_TrackedProp_OutOfMemory}
{@link VR#ETrackedPropertyError_TrackedProp_InvalidContainer}
*/ @NativeType("ETrackedPropertyError") public int eError() { return neError(address()); } /** @return a {@link ByteBuffer} view of the null-terminated string pointed to by the {@code pszPath} field. */ @NativeType("char *") public ByteBuffer pszPath() { return npszPath(address()); } /** @return the null-terminated string pointed to by the {@code pszPath} field. */ @NativeType("char *") public String pszPathString() { return npszPathString(address()); } /** Sets the specified value to the {@code ulPath} field. */ public PathWrite ulPath(@NativeType("PathHandle_t") long value) { nulPath(address(), value); return this; } /** Sets the specified value to the {@link #writeType} field. */ public PathWrite writeType(@NativeType("EPropertyWriteType") int value) { nwriteType(address(), value); return this; } /** Sets the specified value to the {@link #eSetError} field. */ public PathWrite eSetError(@NativeType("ETrackedPropertyError") int value) { neSetError(address(), value); return this; } /** Sets the address of the specified {@link ByteBuffer} to the {@code pvBuffer} field. */ public PathWrite pvBuffer(@NativeType("void *") ByteBuffer value) { npvBuffer(address(), value); return this; } /** Sets the specified value to the {@code unTag} field. */ public PathWrite unTag(@NativeType("PropertyTypeTag_t") int value) { nunTag(address(), value); return this; } /** Sets the specified value to the {@link #eError} field. */ public PathWrite eError(@NativeType("ETrackedPropertyError") int value) { neError(address(), value); return this; } /** Sets the address of the specified encoded string to the {@code pszPath} field. */ public PathWrite pszPath(@NativeType("char *") ByteBuffer value) { npszPath(address(), value); return this; } /** Initializes this struct with the specified values. */ public PathWrite set( long ulPath, int writeType, int eSetError, ByteBuffer pvBuffer, int unTag, int eError, ByteBuffer pszPath ) { ulPath(ulPath); writeType(writeType); eSetError(eSetError); pvBuffer(pvBuffer); unTag(unTag); eError(eError); pszPath(pszPath); return this; } /** * Copies the specified struct data to this struct. * * @param src the source struct * * @return this struct */ public PathWrite set(PathWrite src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code PathWrite} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static PathWrite malloc() { return new PathWrite(nmemAllocChecked(SIZEOF), null); } /** Returns a new {@code PathWrite} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static PathWrite calloc() { return new PathWrite(nmemCallocChecked(1, SIZEOF), null); } /** Returns a new {@code PathWrite} instance allocated with {@link BufferUtils}. */ public static PathWrite create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return new PathWrite(memAddress(container), container); } /** Returns a new {@code PathWrite} instance for the specified memory address. */ public static PathWrite create(long address) { return new PathWrite(address, null); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */ public static @Nullable PathWrite createSafe(long address) { return address == NULL ? null : new PathWrite(address, null); } /** * Returns a new {@link PathWrite.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static PathWrite.Buffer malloc(int capacity) { return new Buffer(nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity); } /** * Returns a new {@link PathWrite.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static PathWrite.Buffer calloc(int capacity) { return new Buffer(nmemCallocChecked(capacity, SIZEOF), capacity); } /** * Returns a new {@link PathWrite.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static PathWrite.Buffer create(int capacity) { ByteBuffer container = __create(capacity, SIZEOF); return new Buffer(memAddress(container), container, -1, 0, capacity, capacity); } /** * Create a {@link PathWrite.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static PathWrite.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}. */ public static PathWrite.@Nullable Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } /** * Returns a new {@code PathWrite} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static PathWrite malloc(MemoryStack stack) { return new PathWrite(stack.nmalloc(ALIGNOF, SIZEOF), null); } /** * Returns a new {@code PathWrite} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static PathWrite calloc(MemoryStack stack) { return new PathWrite(stack.ncalloc(ALIGNOF, 1, SIZEOF), null); } /** * Returns a new {@link PathWrite.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static PathWrite.Buffer malloc(int capacity, MemoryStack stack) { return new Buffer(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link PathWrite.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 PathWrite.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #ulPath}. */ public static long nulPath(long struct) { return memGetLong(struct + PathWrite.ULPATH); } /** Unsafe version of {@link #writeType}. */ public static int nwriteType(long struct) { return memGetInt(struct + PathWrite.WRITETYPE); } /** Unsafe version of {@link #eSetError}. */ public static int neSetError(long struct) { return memGetInt(struct + PathWrite.ESETERROR); } /** Unsafe version of {@link #pvBuffer() pvBuffer}. */ public static ByteBuffer npvBuffer(long struct) { return memByteBuffer(memGetAddress(struct + PathWrite.PVBUFFER), nunBufferSize(struct)); } /** Unsafe version of {@link #unBufferSize}. */ public static int nunBufferSize(long struct) { return memGetInt(struct + PathWrite.UNBUFFERSIZE); } /** Unsafe version of {@link #unTag}. */ public static int nunTag(long struct) { return memGetInt(struct + PathWrite.UNTAG); } /** Unsafe version of {@link #eError}. */ public static int neError(long struct) { return memGetInt(struct + PathWrite.EERROR); } /** Unsafe version of {@link #pszPath}. */ public static ByteBuffer npszPath(long struct) { return memByteBufferNT1(memGetAddress(struct + PathWrite.PSZPATH)); } /** Unsafe version of {@link #pszPathString}. */ public static String npszPathString(long struct) { return memASCII(memGetAddress(struct + PathWrite.PSZPATH)); } /** Unsafe version of {@link #ulPath(long) ulPath}. */ public static void nulPath(long struct, long value) { memPutLong(struct + PathWrite.ULPATH, value); } /** Unsafe version of {@link #writeType(int) writeType}. */ public static void nwriteType(long struct, int value) { memPutInt(struct + PathWrite.WRITETYPE, value); } /** Unsafe version of {@link #eSetError(int) eSetError}. */ public static void neSetError(long struct, int value) { memPutInt(struct + PathWrite.ESETERROR, value); } /** Unsafe version of {@link #pvBuffer(ByteBuffer) pvBuffer}. */ public static void npvBuffer(long struct, ByteBuffer value) { memPutAddress(struct + PathWrite.PVBUFFER, memAddress(value)); nunBufferSize(struct, value.remaining()); } /** Sets the specified value to the {@code unBufferSize} field of the specified {@code struct}. */ public static void nunBufferSize(long struct, int value) { memPutInt(struct + PathWrite.UNBUFFERSIZE, value); } /** Unsafe version of {@link #unTag(int) unTag}. */ public static void nunTag(long struct, int value) { memPutInt(struct + PathWrite.UNTAG, value); } /** Unsafe version of {@link #eError(int) eError}. */ public static void neError(long struct, int value) { memPutInt(struct + PathWrite.EERROR, value); } /** Unsafe version of {@link #pszPath(ByteBuffer) pszPath}. */ public static void npszPath(long struct, ByteBuffer value) { if (CHECKS) { checkNT1(value); } memPutAddress(struct + PathWrite.PSZPATH, memAddress(value)); } /** * Validates pointer members that should not be {@code NULL}. * * @param struct the struct to validate */ public static void validate(long struct) { check(memGetAddress(struct + PathWrite.PVBUFFER)); check(memGetAddress(struct + PathWrite.PSZPATH)); } // ----------------------------------- /** An array of {@link PathWrite} structs. */ public static class Buffer extends StructBuffer implements NativeResource { private static final PathWrite ELEMENT_FACTORY = PathWrite.create(-1L); /** * Creates a new {@code PathWrite.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 PathWrite#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 Buffer create(long address, @Nullable ByteBuffer container, int mark, int position, int limit, int capacity) { return new Buffer(address, container, mark, position, limit, capacity); } @Override protected PathWrite getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code ulPath} field. */ @NativeType("PathHandle_t") public long ulPath() { return PathWrite.nulPath(address()); } /** @return the value of the {@link PathWrite#writeType} field. */ @NativeType("EPropertyWriteType") public int writeType() { return PathWrite.nwriteType(address()); } /** @return the value of the {@link PathWrite#eSetError} field. */ @NativeType("ETrackedPropertyError") public int eSetError() { return PathWrite.neSetError(address()); } /** @return a {@link ByteBuffer} view of the data pointed to by the {@code pvBuffer} field. */ @NativeType("void *") public ByteBuffer pvBuffer() { return PathWrite.npvBuffer(address()); } /** @return the value of the {@code unBufferSize} field. */ @NativeType("uint32_t") public int unBufferSize() { return PathWrite.nunBufferSize(address()); } /** @return the value of the {@code unTag} field. */ @NativeType("PropertyTypeTag_t") public int unTag() { return PathWrite.nunTag(address()); } /** @return the value of the {@link PathWrite#eError} field. */ @NativeType("ETrackedPropertyError") public int eError() { return PathWrite.neError(address()); } /** @return a {@link ByteBuffer} view of the null-terminated string pointed to by the {@code pszPath} field. */ @NativeType("char *") public ByteBuffer pszPath() { return PathWrite.npszPath(address()); } /** @return the null-terminated string pointed to by the {@code pszPath} field. */ @NativeType("char *") public String pszPathString() { return PathWrite.npszPathString(address()); } /** Sets the specified value to the {@code ulPath} field. */ public PathWrite.Buffer ulPath(@NativeType("PathHandle_t") long value) { PathWrite.nulPath(address(), value); return this; } /** Sets the specified value to the {@link PathWrite#writeType} field. */ public PathWrite.Buffer writeType(@NativeType("EPropertyWriteType") int value) { PathWrite.nwriteType(address(), value); return this; } /** Sets the specified value to the {@link PathWrite#eSetError} field. */ public PathWrite.Buffer eSetError(@NativeType("ETrackedPropertyError") int value) { PathWrite.neSetError(address(), value); return this; } /** Sets the address of the specified {@link ByteBuffer} to the {@code pvBuffer} field. */ public PathWrite.Buffer pvBuffer(@NativeType("void *") ByteBuffer value) { PathWrite.npvBuffer(address(), value); return this; } /** Sets the specified value to the {@code unTag} field. */ public PathWrite.Buffer unTag(@NativeType("PropertyTypeTag_t") int value) { PathWrite.nunTag(address(), value); return this; } /** Sets the specified value to the {@link PathWrite#eError} field. */ public PathWrite.Buffer eError(@NativeType("ETrackedPropertyError") int value) { PathWrite.neError(address(), value); return this; } /** Sets the address of the specified encoded string to the {@code pszPath} field. */ public PathWrite.Buffer pszPath(@NativeType("char *") ByteBuffer value) { PathWrite.npszPath(address(), value); return this; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy