XNA矢量数学运动

时间:2012-10-03 19:03:25

标签: c# xna vectormath

我正在c#xna为我的大学游戏设计课做一个自上而下的2D RPG游戏。我试图创建一个简单的AI,将敌人移向玩家。目前我的代码是以下

    /// <summary>
    /// method to move the enemy
    /// </summary>
    /// <param name="target">the position of the target</param>
    /// <returns>the new position to be moved to</returns>
    public virtual Vector2 move(Vector2 target)
    {
        Vector2 temp = (target - Position); // gets the difference between the target and position
        temp.Normalize();                   // sets the vector to unit vector
        temp *= moveSpeed;                  // sets the vector to be the length of moveSpeed
        float x = temp.X;
        float y = temp.Y;
        float xP, yP;
        double angle = Math.Acos(((x * direction.X) + (y * direction.Y)) / (temp.Length() * direction.Length())); //dot product finds the angle between temp and direction
        angle *= agility;                                                                                        //gets the angle to move based on agility
        xP = (float)(Math.Cos(angle) * (x - direction.X) - Math.Sin(angle) * (y - direction.Y) + x); 
        yP = (float)(Math.Sin(angle) * (x - direction.X) - Math.Cos(angle) * (y - direction.Y) + y);            // these lines rotate the point x,y around the direction vector by angle "angle"
        return new Vector2(xP, yP);
    }

目标在更新方法中正确传递:

    /// <summary>
    /// updates the enemy
    /// </summary>
    public void update()
    {
        this.Position = move(Game1.player.Position);
    }

但是敌人根本没动。我在构造函数中添加了代码,确保敏捷性和移动速度不是0.更改这些值什么都不做。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

在你的代码中你返回这个(方向角的代码):

xP = (float)(Math.Cos(angle) * (x - direction.X) - Math.Sin(angle) * (y - direction.Y) + x);  
yP = (float)(Math.Sin(angle) * (x - direction.X) - Math.Cos(angle) * (y - direction.Y) + y);            // these lines rotate the point x,y around the direction vector by angle "angle" 

return new Vector2(xP, yP); 

但是你需要将此返回给移动:

temp *= moveSpeed;                  // sets the vector to be the length of moveSpeed    
float x = temp.X;    
float y = temp.Y; 
...

return new Vector2(x, y);