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

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

/*
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;

import com.github.stephengold.joltjni.readonly.Mat44Arg;
import com.github.stephengold.joltjni.readonly.QuatArg;
import com.github.stephengold.joltjni.readonly.Vec3Arg;
import com.github.stephengold.joltjni.readonly.Vec4Arg;

/**
 * A 4x4 matrix composed of 16 single-precision elements, used to represent
 * transformations of 3-D coordinates.
 *
 * @author Stephen Gold [email protected]
 */
final public class Mat44 extends JoltPhysicsObject implements Mat44Arg {
    // *************************************************************************
    // constructors

    /**
     * Instantiate an uninitialized matrix.
     */
    public Mat44() {
        long matrixVa = createUninitialized();
        setVirtualAddress(matrixVa, () -> free(matrixVa));
    }

    /**
     * Instantiate a matrix with the specified elements.
     *
     * @param elements in column-major order (not null)
     */
    public Mat44(float... elements) {
        long matrixVa = createFromColumnMajor(elements);
        setVirtualAddress(matrixVa, () -> free(matrixVa));
    }

    /**
     * Instantiate a matrix with the specified native object assigned.
     *
     * @param matrixVa the virtual address of the native object to assign (not
     * zero)
     * @param owner {@code true} → make the JVM object the owner,
     * {@code false} → it isn't the owner
     */
    Mat44(long matrixVa, boolean owner) {
        Runnable freeingAction = owner ? () -> free(matrixVa) : null;
        setVirtualAddress(matrixVa, freeingAction);
    }

    /**
     * Instantiate a copy of the specified matrix.
     *
     * @param original the matrix to duplicate (not null, unaffected)
     */
    public Mat44(Mat44Arg original) {
        long originalVa = original.targetVa();
        long matrixVa = createCopy(originalVa);
        setVirtualAddress(matrixVa, () -> free(matrixVa));
    }

    /**
     * Instantiate a matrix with the specified columns.
     *
     * @param c1 the desired first/leftmost column (not null, unaffected)
     * @param c2 the desired 2nd column (not null, unaffected)
     * @param c3 the desired 3rd column (not null, unaffected)
     * @param c4 the desired last/rightmost column (not null, unaffected)
     */
    public Mat44(Vec4Arg c1, Vec4Arg c2, Vec4Arg c3, Vec4Arg c4) {
        this(c1.getX(), c1.getY(), c1.getZ(), c1.getW(),
                c2.getX(), c2.getY(), c2.getZ(), c2.getW(),
                c3.getX(), c3.getY(), c3.getZ(), c3.getW(),
                c4.getX(), c4.getY(), c4.getZ(), c4.getW());
    }
    // *************************************************************************
    // new methods exposed

    /**
     * Alter the specified element.
     *
     * @param row the zero-origin index of the row (≥0, <4)
     * @param column the zero-origin index of the column (≥0, <4)
     * @param value the desired value
     */
    public void setElement(int row, int column, float value) {
        long matrixVa = va();
        setElement(matrixVa, row, column, value);
    }

    /**
     * Create an identity matrix.
     *
     * @return a new instance
     */
    public static Mat44 sIdentity() {
        long matrixVa = createIdentity();
        Mat44 result = new Mat44(matrixVa, true);

        return result;
    }

    /**
     * Create a matrix from the specified quaternion.
     *
     * @param rotation the rotation quaternion to use (not null, unaffected)
     * @return a new instance
     */
    public static Mat44 sRotation(QuatArg rotation) {
        float rw = rotation.getW();
        float rx = rotation.getX();
        float ry = rotation.getY();
        float rz = rotation.getZ();
        long matrixVa = sRotation(rx, ry, rz, rw);
        Mat44 result = new Mat44(matrixVa, true);

        return result;
    }

    /**
     * Create a translation-and-rotation matrix.
     *
     * @param rotation the amount to rotate (not null, unaffected)
     * @param offset the amount to translate (not null, unaffected)
     * @return a new object
     */
    public static Mat44 sRotationTranslation(
            QuatArg rotation, Vec3Arg offset) {
        float[] floatArray = new float[7];
        floatArray[0] = rotation.getX();
        floatArray[1] = rotation.getY();
        floatArray[2] = rotation.getZ();
        floatArray[3] = rotation.getW();
        floatArray[4] = offset.getX();
        floatArray[5] = offset.getY();
        floatArray[6] = offset.getZ();
        long matrixVa = sRotationTranslation(floatArray);
        Mat44 result = new Mat44(matrixVa, true);

        return result;
    }

    /**
     * Create a pure translation matrix.
     *
     * @param offset the amount to translate (not null, unaffected)
     * @return a new instance
     *
     */
    public static Mat44 sTranslation(Vec3Arg offset) {
        float x = offset.getX();
        float y = offset.getY();
        float z = offset.getZ();
        long matrixVa = sTranslation(x, y, z);
        Mat44 result = new Mat44(matrixVa, true);

        return result;
    }

    /**
     * Create an all-zero matrix.
     *
     * @return a new instance
     */
    public static Mat44 sZero() {
        long matrixVa = createZero();
        Mat44 result = new Mat44(matrixVa, true);

        return result;
    }
    // *************************************************************************
    // Mat44Arg methods

    /**
     * Copy the first column to a {@code Vec3}. The matrix is unaffected.
     *
     * @return a new vector
     */
    @Override
    public Vec3 getAxisX() {
        long matrixVa = va();
        float x = getElement(matrixVa, 0, 0);
        float y = getElement(matrixVa, 1, 0);
        float z = getElement(matrixVa, 2, 0);
        Vec3 result = new Vec3(x, y, z);

        return result;
    }

    /**
     * Copy the 2nd column to a {@code Vec3}. The matrix is unaffected.
     *
     * @return a new vector
     */
    @Override
    public Vec3 getAxisY() {
        long matrixVa = va();
        float x = getElement(matrixVa, 0, 1);
        float y = getElement(matrixVa, 1, 1);
        float z = getElement(matrixVa, 2, 1);
        Vec3 result = new Vec3(x, y, z);

        return result;
    }

    /**
     * Copy the 3rd column to a {@code Vec3}. The matrix is unaffected.
     *
     * @return a new vector
     */
    @Override
    public Vec3 getAxisZ() {
        long matrixVa = va();
        float x = getElement(matrixVa, 0, 2);
        float y = getElement(matrixVa, 1, 2);
        float z = getElement(matrixVa, 2, 2);
        Vec3 result = new Vec3(x, y, z);

        return result;
    }

    /**
     * Return the specified element. The matrix is unaffected.
     *
     * @param row the zero-origin index of the row (≥0, <4)
     * @param column the zero-origin index of the column (≥0, <4)
     * @return the element's value
     */
    @Override
    public float getElement(int row, int column) {
        long matrixVa = va();
        float result = getElement(matrixVa, row, column);

        return result;
    }

    /**
     * Convert the rotation to a {@code Quat}. The matrix is unaffected.
     *
     * @return a new rotation quaternion
     */
    @Override
    public Quat getQuaternion() {
        long matrixVa = va();
        float[] storeArray = new float[4];
        getQuaternion(matrixVa, storeArray);
        Quat result = new Quat(
                storeArray[0], storeArray[1], storeArray[2], storeArray[3]);

        return result;
    }

    /**
     * Copy the translation component. The matrix is unaffected.
     *
     * @return a new vector
     */
    @Override
    public Vec3 getTranslation() {
        long matrixVa = va();
        float x = getTranslationX(matrixVa);
        float y = getTranslationY(matrixVa);
        float z = getTranslationZ(matrixVa);
        Vec3 result = new Vec3(x, y, z);

        return result;
    }

    /**
     * Return the inverse of the current matrix, which is unaffected.
     *
     * @return a new matrix
     */
    @Override
    public Mat44 inversed() {
        long currentVa = va();
        long resultVa = inversed(currentVa);
        Mat44 result = new Mat44(resultVa, true);

        return result;
    }

    /**
     * Return the inverse of the 3x3 portion. The current matrix is unaffected.
     *
     * @return a new matrix
     */
    @Override
    public Mat44 inversed3x3() {
        long currentVa = va();
        long resultVa = inversed3x3(currentVa);
        Mat44 result = new Mat44(resultVa, true);

        return result;
    }

    /**
     * Test whether the current matrix is equal to the argument. The current
     * matrix is unaffected.
     *
     * @param m2 the 2nd matrix to test (not null, unaffected)
     * @return {@code true} if equal, {@code false} if unequal
     */
    @Override
    public boolean isEqual(Mat44Arg m2) {
        long m1Va = va();
        long m2Va = m2.targetVa();
        boolean result = equals(m1Va, m2Va);

        return result;
    }

    /**
     * Multiply the current matrix by the specified matrix. The current matrix
     * is unaffected.
     *
     * @param m2 the right factor (not null, unaffected)
     * @return a new matrix
     */
    @Override
    public Mat44 multiply(Mat44Arg m2) {
        long m1Va = va();
        long m2Va = m2.targetVa();
        long productVa = multiply(m1Va, m2Va);
        Mat44 result = new Mat44(productVa, true);

        return result;
    }

    /**
     * Multiply the current 3x3 matrix by the specified 3x3 matrix. The current
     * matrix is unaffected.
     *
     * @param arg the factor (not null, unaffected)
     * @return a new matrix
     */
    @Override
    public Mat44 multiply3x3(Mat44Arg arg) {
        long currentVa = va();
        long argVa = arg.targetVa();
        long productVa = multiply3x3(currentVa, argVa);
        Mat44 result = new Mat44(productVa, true);

        return result;
    }

    /**
     * Multiply the 3x3 matrix by the specified vector. The matrix is
     * unaffected.
     *
     * @param vec3Arg the right factor (not null, unaffected)
     * @return a new vector
     */
    @Override
    public Vec3 multiply3x3(Vec3Arg vec3Arg) {
        long matrixVa = va();
        float[] tmpFloats = vec3Arg.toArray();
        multiply3x3(matrixVa, tmpFloats);
        Vec3 result = new Vec3(tmpFloats);

        return result;
    }

    /**
     * Multiply the transpose of the 3x3 matrix by the specified vector. The
     * matrix is unaffected.
     *
     * @param vec3Arg the right factor (not null, unaffected)
     * @return a new vector
     */
    @Override
    public Vec3 multiply3x3Transposed(Vec3Arg vec3Arg) {
        long matrixVa = va();
        float[] tmpFloats = vec3Arg.toArray();
        multiply3x3Transposed(matrixVa, tmpFloats);
        Vec3 result = new Vec3(tmpFloats);

        return result;
    }

    /**
     * Multiply the 3x4 matrix by the specified column vector, with the 4th
     * component of the right factor implied to be one. The matrix is
     * unaffected.
     *
     * @param vec3Arg the right factor (not null, unaffected)
     * @return a new vector
     */
    @Override
    public Vec3 multiply3x4(Vec3Arg vec3Arg) {
        long matrixVa = va();
        float[] tmpFloats = vec3Arg.toArray();
        multiply3x4(matrixVa, tmpFloats);
        Vec3 result = new Vec3(tmpFloats);

        return result;
    }

    /**
     * Post multiply by the specified translation vector. The current matrix is
     * unaffected.
     *
     * @param offset the left factor (not null, unaffected)
     * @return a new matrix
     */
    @Override
    public Mat44 postTranslated(Vec3Arg offset) {
        long matrixVa = va();
        float x = offset.getX();
        float y = offset.getY();
        float z = offset.getZ();
        long resultVa = postTranslated(matrixVa, x, y, z);
        Mat44 result = new Mat44(resultVa, true);

        return result;

    }
    // *************************************************************************
    // Object methods

    /**
     * Return a string representation of the matrix, which is unaffected. For
     * example, an identity matrix is represented by:
     * 
     * Mat44[
     *  1.0  0.0  0.0  0.0
     *  0.0  1.0  0.0  0.0
     *  0.0  0.0  1.0  0.0
     *  0.0  0.0  0.0  1.0
     * ]
     * 
* * @return the string representation (not null, not empty) */ @Override public String toString() { StringBuilder result = new StringBuilder("Mat44["); for (int rowIndex = 0; rowIndex < 4; ++rowIndex) { result.append("\n "); result.append(getElement(rowIndex, 0)); result.append(" "); result.append(getElement(rowIndex, 1)); result.append(" "); result.append(getElement(rowIndex, 2)); result.append(" "); result.append(getElement(rowIndex, 3)); } result.append("\n]"); return result.toString(); } // ************************************************************************* // native private methods native private static long createCopy(long originalVa); native private static long createFromColumnMajor(float[] elements); native private static long createIdentity(); native private static long createUninitialized(); native private static long createZero(); native private static boolean equals(long m1va, long m2va); native private static void free(long matrixVa); native private static float getElement(long matrixVa, int row, int column); native private static void getQuaternion( long matrixVa, float[] storeArray); native private static float getTranslationX(long matrixVa); native private static float getTranslationY(long matrixVa); native private static float getTranslationZ(long matrixVa); native private static long inversed(long currentVa); native private static long inversed3x3(long currentVa); native private static long multiply(long m1Va, long m2Va); native private static long multiply3x3(long currentVa, long argVa); native private static void multiply3x3(long matrixVa, float[] array); native private static void multiply3x3Transposed( long matrixVa, float[] array); native private static void multiply3x4(long matrixVa, float[] array); native private static long postTranslated( long matrixVa, float x, float y, float z); native private static void setElement( long matrixVa, int row, int column, float value); native private static long sRotation(float x, float y, float z, float w); native private static long sRotationTranslation(float[] floatArray); native private static long sTranslation(float x, float y, float z); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy