Libgdx Melee Attack Collision Detection

2019-07-16 02:10发布

I have a 3D scene with 3D model instances; and I want to do collision detection. I'm currently following this tutorial (http://blog.xoppa.com/using-the-libgdx-3d-physics-bullet-wrapper-part1/). However, what I want is a bit more complicated.

There's a character (a knight.g3db model that's part of the sample code from Libgdx basic 3d model class), and it can attack with a sword. I also have another model instance that I want to "attack" with the sword.

Checking if the two objects for collision isn't the problem since that can easily be detected from the Bullet library. What I would like is possibly the following, but I'm not sure how to implement:

  • Have the sword as the collision object, or
  • Implement checking if only the front part of the "box" of the knight is colliding with the other object, or
  • Create a separate invisible virtual box in front of the knight character and use that as basis if there's a collision.

Are there any references that you know that can do this (if the above proposed solutions are even possible)? Or if there's a better solution, please let me know.

What I'm trying to avoid: knight attacking while the other object is behind and still getting hit.

Thanks in advance.

2条回答
老娘就宠你
2楼-- · 2019-07-16 02:41

These are what I used to check if the enemy object is within the 'field of view' of the hero (Working code):

/**
 *
 * @param localAngle - the current yaw of the Player
 * @param angleTarget - the angle between the player and the target receipent of the attack -- use RotationHelper.angle() method
 * @param offset - the difference in localAngle(hero) and angleTarget(enemy)
 * @return
 */
public static float angleDifference(float localAngle, float angleTarget, int offset) {
    float newLocalAngle = (convert180to360(localAngle) + offset) % 360;
    AppLog.log("ANGLE_DIFFERENCE2", "localAngle(yaw, degrees, with offset): " + newLocalAngle + ", angleTarget: " + angleTarget);

    float result = 180 - Math.abs(Math.abs(newLocalAngle - angleTarget) - 180);
    AppLog.log("ANGLE_DIFFERENCE2", "result : " + result);
    AppLog.log("ANGLE_DIFFERENCE2", "==================================");
    return result;
}

public static float angle(Vector3 vectorA, Vector3 vectorB) {
    return new Vector2(vectorB.x - vectorA.x, (-vectorB.z) - (-vectorA.z)).angle();
}


public static float convert180to360(float originalAngle) {
    float newAngle = 0;
    if(originalAngle < 0) {
        newAngle = (originalAngle + 180) + 180;
    } else {
        newAngle = originalAngle;
    }

    return newAngle;
}

Thanks to @Menno Gouw for the idea on getting the angle from Vector3.

And the code below is how I used these helper methods:

                float angleTarget = RotationHelper.angle(hero.transform.getTranslation(hero.tmpVector), enemy.transform.getTranslation(enemy.tmpVector));
                    float angleDifference = RotationHelper.angleDifference(hero.transform.getRotation(playerObject.tmpRotation).nor().getYaw(), angleTarget, CHARACTER_TO_WORLD_ROTATION_OFFSET);
                    AppLog.log("ANGLE_DIFFERENCE2", " angle from point hero to enemy): " + angleTarget);

                    if(angleDifference < VIEW_ANGLE_THRESHOLD) { //use 'angleDifference < VIEW_ANGLE_THRESHOLD'

                        enemy.hurt(hero.stats.damage);
                        AppLog.log("HERO_STATE", "Enemy monkey hit!");
                    }

                    if(enemy.stats.hp <= 0) {
                        AppLog.log("ENEMY_STATE", "Dead monkey");
                        //TODO: Remove monkey from game 
                        enemy.die();
                        instances.removeValue(gameObject, true);
                    }

Hope this helps you if you're encountering the same issue. Feel free to make changes if there are improvements or issues with this.

查看更多
地球回转人心会变
3楼-- · 2019-07-16 02:53

If you just want to avoid enemies in your back being hit you could check if you are facing them. I'll take it you have a direction Vector for movement, check the difference in rotation of that Vector vs the vector calculated based on your position and the enemy.

Something like this (Disclaimer: out of my head, not sure if this work and just to give you an idea):

float yourAngle = direction.angle();
float enemyAngle = new Vector2(enemyPos.x - playerPos.X, enemyPos.y - playerPos.y).angle();

if (yourAngle - enemyAngle < 30 && yourAngle - enemyAngle > -30) //enemy within a 60 degree cone in front of you.

This might not be the ideal solution but it sure is a cheap solution and it might work very well.

查看更多
登录 后发表回答