org.lwjgl.nuklear.NkPropertyState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-nuklear Show documentation
Show all versions of lwjgl-nuklear Show documentation
A minimal state immediate mode graphical user interface toolkit.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.nuklear;
import javax.annotation.*;
import java.nio.*;
import org.lwjgl.system.*;
import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.nuklear.Nuklear.NK_MAX_NUMBER_BUFFER;
/**
* Layout
*
*
* struct nk_property_state {
* int active;
* int prev;
* char buffer[NK_MAX_NUMBER_BUFFER];
* int length;
* int cursor;
* int select_start;
* int select_end;
* nk_hash name;
* unsigned int seq;
* unsigned int old;
* int state;
* }
*/
@NativeType("struct nk_property_state")
public class NkPropertyState extends Struct {
/** 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
ACTIVE,
PREV,
BUFFER,
LENGTH,
CURSOR,
SELECT_START,
SELECT_END,
NAME,
SEQ,
OLD,
STATE;
static {
Layout layout = __struct(
__member(4),
__member(4),
__array(1, NK_MAX_NUMBER_BUFFER),
__member(4),
__member(4),
__member(4),
__member(4),
__member(4),
__member(4),
__member(4),
__member(4)
);
SIZEOF = layout.getSize();
ALIGNOF = layout.getAlignment();
ACTIVE = layout.offsetof(0);
PREV = layout.offsetof(1);
BUFFER = layout.offsetof(2);
LENGTH = layout.offsetof(3);
CURSOR = layout.offsetof(4);
SELECT_START = layout.offsetof(5);
SELECT_END = layout.offsetof(6);
NAME = layout.offsetof(7);
SEQ = layout.offsetof(8);
OLD = layout.offsetof(9);
STATE = layout.offsetof(10);
}
/**
* Creates a {@code NkPropertyState} 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 NkPropertyState(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code active} field. */
public int active() { return nactive(address()); }
/** @return the value of the {@code prev} field. */
public int prev() { return nprev(address()); }
/** @return a {@link ByteBuffer} view of the {@code buffer} field. */
@NativeType("char[NK_MAX_NUMBER_BUFFER]")
public ByteBuffer buffer() { return nbuffer(address()); }
/** @return the value at the specified index of the {@code buffer} field. */
@NativeType("char")
public byte buffer(int index) { return nbuffer(address(), index); }
/** @return the value of the {@code length} field. */
public int length() { return nlength(address()); }
/** @return the value of the {@code cursor} field. */
public int cursor() { return ncursor(address()); }
/** @return the value of the {@code select_start} field. */
public int select_start() { return nselect_start(address()); }
/** @return the value of the {@code select_end} field. */
public int select_end() { return nselect_end(address()); }
/** @return the value of the {@code name} field. */
@NativeType("nk_hash")
public int name() { return nname(address()); }
/** @return the value of the {@code seq} field. */
@NativeType("unsigned int")
public int seq() { return nseq(address()); }
/** @return the value of the {@code old} field. */
@NativeType("unsigned int")
public int old() { return nold(address()); }
/** @return the value of the {@code state} field. */
public int state() { return nstate(address()); }
// -----------------------------------
/** Returns a new {@code NkPropertyState} instance for the specified memory address. */
public static NkPropertyState create(long address) {
return wrap(NkPropertyState.class, address);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */
@Nullable
public static NkPropertyState createSafe(long address) {
return address == NULL ? null : wrap(NkPropertyState.class, address);
}
/**
* Create a {@link NkPropertyState.Buffer} instance at the specified memory.
*
* @param address the memory address
* @param capacity the buffer capacity
*/
public static NkPropertyState.Buffer create(long address, int capacity) {
return wrap(Buffer.class, address, capacity);
}
/** Like {@link #create(long, int) create}, but returns {@code null} if {@code address} is {@code NULL}. */
@Nullable
public static NkPropertyState.Buffer createSafe(long address, int capacity) {
return address == NULL ? null : wrap(Buffer.class, address, capacity);
}
// -----------------------------------
/** Unsafe version of {@link #active}. */
public static int nactive(long struct) { return UNSAFE.getInt(null, struct + NkPropertyState.ACTIVE); }
/** Unsafe version of {@link #prev}. */
public static int nprev(long struct) { return UNSAFE.getInt(null, struct + NkPropertyState.PREV); }
/** Unsafe version of {@link #buffer}. */
public static ByteBuffer nbuffer(long struct) { return memByteBuffer(struct + NkPropertyState.BUFFER, NK_MAX_NUMBER_BUFFER); }
/** Unsafe version of {@link #buffer(int) buffer}. */
public static byte nbuffer(long struct, int index) {
return UNSAFE.getByte(null, struct + NkPropertyState.BUFFER + check(index, NK_MAX_NUMBER_BUFFER) * 1);
}
/** Unsafe version of {@link #length}. */
public static int nlength(long struct) { return UNSAFE.getInt(null, struct + NkPropertyState.LENGTH); }
/** Unsafe version of {@link #cursor}. */
public static int ncursor(long struct) { return UNSAFE.getInt(null, struct + NkPropertyState.CURSOR); }
/** Unsafe version of {@link #select_start}. */
public static int nselect_start(long struct) { return UNSAFE.getInt(null, struct + NkPropertyState.SELECT_START); }
/** Unsafe version of {@link #select_end}. */
public static int nselect_end(long struct) { return UNSAFE.getInt(null, struct + NkPropertyState.SELECT_END); }
/** Unsafe version of {@link #name}. */
public static int nname(long struct) { return UNSAFE.getInt(null, struct + NkPropertyState.NAME); }
/** Unsafe version of {@link #seq}. */
public static int nseq(long struct) { return UNSAFE.getInt(null, struct + NkPropertyState.SEQ); }
/** Unsafe version of {@link #old}. */
public static int nold(long struct) { return UNSAFE.getInt(null, struct + NkPropertyState.OLD); }
/** Unsafe version of {@link #state}. */
public static int nstate(long struct) { return UNSAFE.getInt(null, struct + NkPropertyState.STATE); }
// -----------------------------------
/** An array of {@link NkPropertyState} structs. */
public static class Buffer extends StructBuffer {
private static final NkPropertyState ELEMENT_FACTORY = NkPropertyState.create(-1L);
/**
* Creates a new {@code NkPropertyState.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 NkPropertyState#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 NkPropertyState getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return the value of the {@code active} field. */
public int active() { return NkPropertyState.nactive(address()); }
/** @return the value of the {@code prev} field. */
public int prev() { return NkPropertyState.nprev(address()); }
/** @return a {@link ByteBuffer} view of the {@code buffer} field. */
@NativeType("char[NK_MAX_NUMBER_BUFFER]")
public ByteBuffer buffer() { return NkPropertyState.nbuffer(address()); }
/** @return the value at the specified index of the {@code buffer} field. */
@NativeType("char")
public byte buffer(int index) { return NkPropertyState.nbuffer(address(), index); }
/** @return the value of the {@code length} field. */
public int length() { return NkPropertyState.nlength(address()); }
/** @return the value of the {@code cursor} field. */
public int cursor() { return NkPropertyState.ncursor(address()); }
/** @return the value of the {@code select_start} field. */
public int select_start() { return NkPropertyState.nselect_start(address()); }
/** @return the value of the {@code select_end} field. */
public int select_end() { return NkPropertyState.nselect_end(address()); }
/** @return the value of the {@code name} field. */
@NativeType("nk_hash")
public int name() { return NkPropertyState.nname(address()); }
/** @return the value of the {@code seq} field. */
@NativeType("unsigned int")
public int seq() { return NkPropertyState.nseq(address()); }
/** @return the value of the {@code old} field. */
@NativeType("unsigned int")
public int old() { return NkPropertyState.nold(address()); }
/** @return the value of the {@code state} field. */
public int state() { return NkPropertyState.nstate(address()); }
}
}