Class AIMeshKey

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class AIMeshKey extends Struct<AIMeshKey> implements NativeResource
Binds a anim mesh to a specific point in time.

Layout


 struct aiMeshKey {
     double mTime();
     unsigned int mValue();
 }
  • Field Details

    • SIZEOF

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

      public static final int ALIGNOF
      The struct alignment in bytes.
    • MTIME

      public static final int MTIME
      The struct member offsets.
    • MVALUE

      public static final int MVALUE
      The struct member offsets.
  • Constructor Details

    • AIMeshKey

      public AIMeshKey(ByteBuffer container)
      Creates a AIMeshKey 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 Details

    • sizeof

      public int sizeof()
      Description copied from class: Struct
      Returns sizeof(struct).
      Specified by:
      sizeof in class Struct<AIMeshKey>
    • mTime

      public double mTime()
      The time of this key
    • mValue

      public int mValue()
      Index into the AIMesh::mAnimMeshes array of the mesh coresponding to the AIMeshAnim hosting this key frame. The referenced anim mesh is evaluated according to the rules defined in the docs for AIAnimMesh.
    • mTime

      public AIMeshKey mTime(double value)
      Sets the specified value to the mTime() field.
    • mValue

      public AIMeshKey mValue(int value)
      Sets the specified value to the mValue() field.
    • set

      public AIMeshKey set(double mTime, int mValue)
      Initializes this struct with the specified values.
    • set

      public AIMeshKey set(AIMeshKey src)
      Copies the specified struct data to this struct.
      Parameters:
      src - the source struct
      Returns:
      this struct
    • malloc

      public static AIMeshKey malloc()
      Returns a new AIMeshKey instance allocated with memAlloc. The instance must be explicitly freed.
    • calloc

      public static AIMeshKey calloc()
      Returns a new AIMeshKey instance allocated with memCalloc. The instance must be explicitly freed.
    • create

      public static AIMeshKey create()
      Returns a new AIMeshKey instance allocated with BufferUtils.
    • create

      public static AIMeshKey create(long address)
      Returns a new AIMeshKey instance for the specified memory address.
    • createSafe

      @Nullable public static AIMeshKey createSafe(long address)
      Like create, but returns null if address is NULL.
    • malloc

      public static AIMeshKey.Buffer malloc(int capacity)
      Returns a new AIMeshKey.Buffer instance allocated with memAlloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • calloc

      public static AIMeshKey.Buffer calloc(int capacity)
      Returns a new AIMeshKey.Buffer instance allocated with memCalloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • create

      public static AIMeshKey.Buffer create(int capacity)
      Returns a new AIMeshKey.Buffer instance allocated with BufferUtils.
      Parameters:
      capacity - the buffer capacity
    • create

      public static AIMeshKey.Buffer create(long address, int capacity)
      Create a AIMeshKey.Buffer instance at the specified memory.
      Parameters:
      address - the memory address
      capacity - the buffer capacity
    • createSafe

      @Nullable public static AIMeshKey.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
    • mallocStack

      @Deprecated public static AIMeshKey mallocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static AIMeshKey callocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • mallocStack

      @Deprecated public static AIMeshKey mallocStack(MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static AIMeshKey callocStack(MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • mallocStack

      @Deprecated public static AIMeshKey.Buffer mallocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static AIMeshKey.Buffer callocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
    • mallocStack

      @Deprecated public static AIMeshKey.Buffer mallocStack(int capacity, MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static AIMeshKey.Buffer callocStack(int capacity, MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
    • malloc

      public static AIMeshKey malloc(MemoryStack stack)
      Returns a new AIMeshKey instance allocated on the specified MemoryStack.
      Parameters:
      stack - the stack from which to allocate
    • calloc

      public static AIMeshKey calloc(MemoryStack stack)
      Returns a new AIMeshKey instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      stack - the stack from which to allocate
    • malloc

      public static AIMeshKey.Buffer malloc(int capacity, MemoryStack stack)
      Returns a new AIMeshKey.Buffer instance allocated on the specified MemoryStack.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • calloc

      public static AIMeshKey.Buffer calloc(int capacity, MemoryStack stack)
      Returns a new AIMeshKey.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • nmTime

      public static double nmTime(long struct)
      Unsafe version of mTime().
    • nmValue

      public static int nmValue(long struct)
      Unsafe version of mValue().
    • nmTime

      public static void nmTime(long struct, double value)
      Unsafe version of mTime.
    • nmValue

      public static void nmValue(long struct, int value)
      Unsafe version of mValue.