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

com.github.stephengold.joltjni.BodyIdVector Maven / Gradle / Ivy

There is a newer version: 0.9.3
Show newest version
/*
Copyright (c) 2024 Stephen Gold

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
 */
package com.github.stephengold.joltjni;

/**
 * A variable-length vector of body IDs.
 *
 * @author Stephen Gold [email protected]
 */
public class BodyIdVector extends JoltPhysicsObject {
    // *************************************************************************
    // constructors

    /**
     * Instantiate an empty vector.
     */
    public BodyIdVector() {
        long vectorVa = createBodyIdVector();
        setVirtualAddress(vectorVa, () -> free(vectorVa));
    }
    // *************************************************************************
    // new methods exposed

    /**
     * Count how many elements the currently allocated storage can hold.
     *
     * @return the number of elements (≥size)
     */
    public int capacity() {
        long vectorVa = va();
        int result = capacity(vectorVa);
        return result;
    }

    /**
     * Test whether the vector contains any elements.
     *
     * @return true if empty, otherwise false
     */
    public boolean empty() {
        if (size() == 0) {
            return true;
        } else {
            return false;
        }
    }

    /**
     * Access the ID at the specified index.
     *
     * @param elementIndex the index from which to get the ID
     * @return a new JVM object with the pre-existing native object assigned
     */
    public BodyId get(int elementIndex) {
        long vectorVa = va();
        long idVa = getId(vectorVa, elementIndex);
        BodyId result = new BodyId(idVa, true);

        return result;
    }

    /**
     * Expand or truncate the vector.
     *
     * @param numElements the desired size (number of elements)
     */
    public void resize(int numElements) {
        long vectorVa = va();
        resize(vectorVa, numElements);
    }

    /**
     * Count how many elements are in the vector.
     *
     * @return the number of elements (≥0, ≤capacity)
     */
    public int size() {
        long vectorVa = va();
        int result = size(vectorVa);
        return result;
    }
    // *************************************************************************
    // native private methods

    native private static int capacity(long vectorVa);

    native private static long createBodyIdVector();

    native private static void free(long vectorVa);

    native private static long getId(long vectorVa, int elementIndex);

    native private static void resize(long vectorVa, int numElements);

    native private static int size(long vectorVa);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy