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

com.github.stephengold.joltjni.VehicleDifferentialSettings 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;

/**
 * Settings used to configure the differential of a
 * {@code WheeledVehicleController}.
 *
 * @author Stephen Gold [email protected]
 */
public class VehicleDifferentialSettings extends JoltPhysicsObject {
    // *************************************************************************
    // constructors

    /**
     * Instantiate with the specified container and native object.
     *
     * @param container the containing object, or {@code null} if none
     * @param settingsVa the virtual address of the native object to assign (not
     * zero)
     */
    VehicleDifferentialSettings(JoltPhysicsObject container, long settingsVa) {
        super(container, settingsVa);
    }
    // *************************************************************************
    // new methods exposed

    /**
     * Return the number of gearbox rotations per wheel rotation. The settings
     * are unaffected. (native attribute: mDifferentialRatio)
     *
     * @return the ratio
     */
    public float getDifferentialRatio() {
        long settingsVa = va();
        float result = getDifferentialRatio(settingsVa);

        return result;
    }

    /**
     * Return the index of left wheel. The settings are unaffected. (native
     * attribute: mLeftWheel)
     *
     * @return the index of the wheel (≥0) or -1 for none
     */
    public int getLeftWheel() {
        long settingsVa = va();
        int result = getLeftWheel(settingsVa);

        return result;
    }

    /**
     * Return the index of right wheel. The settings are unaffected. (native
     * attribute: mRightWheel)
     *
     * @return the index of the wheel (≥0) or -1 for none
     */
    public int getRightWheel() {
        long settingsVa = va();
        int result = getRightWheel(settingsVa);

        return result;
    }

    /**
     * Alter the number of gearbox rotations per wheel rotation. (native
     * attribute: mDifferentialRatio)
     *
     * @param ratio the desired ratio (default=3.42)
     */
    public void setDifferentialRatio(float ratio) {
        long settingsVa = va();
        setDifferentialRatio(settingsVa, ratio);
    }

    /**
     * Alter which left wheel is assigned to the differential. (native
     * attribute: mLeftWheel)
     *
     * @param wheelIndex the index of the wheel (≥0) or -1 for none
     * (default=-1)
     */
    public void setLeftWheel(int wheelIndex) {
        long settingsVa = va();
        setLeftWheel(settingsVa, wheelIndex);
    }

    /**
     * Alter which right wheel is assigned to the differential. (native
     * attribute: mRightWheel)
     *
     * @param wheelIndex the index of the wheel (≥0) or -1 for none
     * (default=-1)
     */
    public void setRightWheel(int wheelIndex) {
        long settingsVa = va();
        setRightWheel(settingsVa, wheelIndex);
    }
    // *************************************************************************
    // native private methods

    native private static float getDifferentialRatio(long settingsVa);

    native private static int getLeftWheel(long settingsVa);

    native private static int getRightWheel(long settingsVa);

    native private static void setDifferentialRatio(
            long settingsVa, float ratio);

    native private static void setLeftWheel(long settingsVa, int wheelIndex);

    native private static void setRightWheel(long settingsVa, int wheelIndex);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy