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

jme3utilities.InfluenceUtil Maven / Gradle / Ivy

There is a newer version: 9.1.0
Show newest version
/*
 Copyright (c) 2017-2021, Stephen Gold
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
 * Redistributions of source code must retain the above copyright
 notice, this list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright
 notice, this list of conditions and the following disclaimer in the
 documentation and/or other materials provided with the distribution.
 * Neither the name of the copyright holder nor the names of its contributors
 may be used to endorse or promote products derived from this software without
 specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package jme3utilities;

import com.jme3.anim.Armature;
import com.jme3.anim.Joint;
import com.jme3.anim.SkinningControl;
import com.jme3.animation.Bone;
import com.jme3.animation.Skeleton;
import com.jme3.animation.SkeletonControl;
import com.jme3.math.ColorRGBA;
import com.jme3.scene.Geometry;
import com.jme3.scene.Mesh;
import com.jme3.scene.Node;
import com.jme3.scene.Spatial;
import com.jme3.scene.VertexBuffer;
import java.nio.Buffer;
import java.nio.FloatBuffer;
import java.util.BitSet;
import java.util.List;
import java.util.logging.Logger;
import jme3utilities.debug.SkeletonVisualizer;
import jme3utilities.math.MyBuffer;

/**
 * Utility methods to determine which bones can influence mesh vertices. All
 * methods should be static.
 *
 * @author Stephen Gold [email protected]
 */
public class InfluenceUtil { // TODO finalize the class
    // *************************************************************************
    // constants and loggers

    /**
     * maximum number of bones that can influence any one vertex
     */
    final private static int maxWeights = 4;
    /**
     * message logger for this class
     */
    final private static Logger logger
            = Logger.getLogger(InfluenceUtil.class.getName());
    // *************************************************************************
    // constructors

    /**
     * A private constructor to inhibit instantiation of this class.
     */
    private InfluenceUtil() {
    }
    // *************************************************************************
    // new methods exposed

    /**
     * De-visualize any bones that don't influence mesh vertices.
     *
     * @param visualizer the visualizer (not null, modified)
     * @param skeletonControl the Control to analyze (not null, unaffected)
     */
    public static void hideNonInfluencers(SkeletonVisualizer visualizer,
            SkeletonControl skeletonControl) {
        Spatial subtree = skeletonControl.getSpatial();
        Skeleton skeleton = skeletonControl.getSkeleton();
        BitSet influencers = addAllInfluencers(subtree, skeleton);

        int numBones = skeleton.getBoneCount();
        for (int boneIndex = 0; boneIndex < numBones; ++boneIndex) {
            if (influencers.get(boneIndex) == false) {
                visualizer.setHeadColor(boneIndex, ColorRGBA.BlackNoAlpha);
            }
        }
    }

    /**
     * De-visualize any joints that don't influence mesh vertices.
     *
     * @param visualizer the visualizer (not null, modified)
     * @param skinningControl the Control to analyze (not null, unaffected)
     */
    public static void hideNonInfluencers(SkeletonVisualizer visualizer,
            SkinningControl skinningControl) {
        Spatial subtree = skinningControl.getSpatial();
        Armature armature = skinningControl.getArmature();
        BitSet influencers = addAllInfluencers(subtree, armature);

        int numJoints = armature.getJointCount();
        for (int jointIndex = 0; jointIndex < numJoints; ++jointIndex) {
            if (influencers.get(jointIndex) == false) {
                visualizer.setHeadColor(jointIndex, ColorRGBA.BlackNoAlpha);
            }
        }
    }

    /**
     * Generate a set of indices for joints that influence (directly or
     * indirectly) vertices in the specified subtree of the scene graph. Note:
     * recursive!
     *
     * @param subtree the subtree to traverse (may be null, unaffected)
     * @param armature the Armature containing the joints (not null, unaffected)
     * @return a new set of joint indices
     */
    public static BitSet addAllInfluencers(Spatial subtree, Armature armature) {
        int numJoints = armature.getJointCount();
        BitSet result = new BitSet(numJoints);

        addDirectInfluencers(subtree, result);

        for (int boneIndex = 0; boneIndex < numJoints; ++boneIndex) {
            if (result.get(boneIndex)) {
                Joint joint = armature.getJoint(boneIndex);
                for (Joint parent = joint.getParent();
                        parent != null;
                        parent = parent.getParent()) {
                    int parentIndex = armature.getJointIndex(parent);
                    result.set(parentIndex);
                }
            }
        }

        return result;
    }

    /**
     * Generate a set of indices for bones that influence (directly or
     * indirectly) vertices in the specified subtree of the scene graph. Note:
     * recursive!
     *
     * @param subtree the subtree to traverse (may be null, unaffected)
     * @param skeleton the Skeleton containing the bones (not null, unaffected)
     * @return a new set of bone indices
     */
    public static BitSet addAllInfluencers(Spatial subtree, Skeleton skeleton) {
        int numBones = skeleton.getBoneCount();
        BitSet result = new BitSet(numBones);

        addDirectInfluencers(subtree, result);

        for (int boneIndex = 0; boneIndex < numBones; ++boneIndex) {
            if (result.get(boneIndex)) {
                Bone bone = skeleton.getBone(boneIndex);
                for (Bone parent = bone.getParent();
                        parent != null;
                        parent = parent.getParent()) {
                    int parentIndex = skeleton.getBoneIndex(parent);
                    result.set(parentIndex);
                }
            }
        }

        return result;
    }

    /**
     * Add indices to the result for bones that directly influence vertices in
     * the specified subtree of the scene graph. Note: recursive!
     *
     * @param subtree subtree to traverse (may be null, unaffected)
     * @param addResult (not null, modified)
     */
    public static void addDirectInfluencers(Spatial subtree, BitSet addResult) {
        if (subtree instanceof Geometry) {
            Geometry geometry = (Geometry) subtree;
            Mesh mesh = geometry.getMesh();
            if (MyMesh.isAnimated(mesh)) {
                addDirectInfluencers(mesh, addResult);
            }

        } else if (subtree instanceof Node) {
            Node node = (Node) subtree;
            List children = node.getChildren();
            for (Spatial child : children) {
                addDirectInfluencers(child, addResult);
            }
        }
    }
    // *************************************************************************
    // private methods

    /**
     * Add indices to the result for bones that directly influence vertices in
     * the specified mesh.
     *
     * @param mesh animated mesh to analyze (not null, unaffected)
     * @param addResult (not null, modified)
     */
    private static void addDirectInfluencers(Mesh mesh, BitSet addResult) {
        int maxWeightsPerVert = mesh.getMaxNumWeights();
        if (maxWeightsPerVert <= 0) {
            maxWeightsPerVert = 1;
        }
        assert maxWeightsPerVert > 0 : maxWeightsPerVert;
        assert maxWeightsPerVert <= maxWeights : maxWeightsPerVert;

        VertexBuffer biBuf = mesh.getBuffer(VertexBuffer.Type.BoneIndex);
        Buffer boneIndexBuffer = biBuf.getDataReadOnly();
        boneIndexBuffer.rewind();
        int numBoneIndices = boneIndexBuffer.remaining();
        assert numBoneIndices % maxWeights == 0 : numBoneIndices;
        int numVertices = boneIndexBuffer.remaining() / maxWeights;

        FloatBuffer weightBuffer
                = mesh.getFloatBuffer(VertexBuffer.Type.BoneWeight);
        weightBuffer.rewind();
        int numWeights = weightBuffer.remaining();
        assert numWeights == numVertices * maxWeights : numWeights;

        for (int vIndex = 0; vIndex < numVertices; ++vIndex) {
            for (int wIndex = 0; wIndex < maxWeights; ++wIndex) {
                float weight = weightBuffer.get();
                int boneIndex = MyBuffer.readIndex(boneIndexBuffer);
                if (wIndex < maxWeightsPerVert && weight != 0f) {
                    addResult.set(boneIndex);
                }
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy