1

我怎样才能让我的玩家在点击鼠标时移动到鼠标上(就像在魔兽争霸中一样)?

到目前为止,我已经尝试过:

if (Mouse.isButtonDown(0)) {

    if (X < Mouse.getX()) {
        X += Speed;
    }
    if (X > Mouse.getX()) {
        X -= Speed;
    }
    if (Y < Mouse.getY()) { 
        Y += Speed;
    }
    if (Y > Mouse.getY()) {
        Y -= Speed;
    }
} 

但这只有在我按住鼠标时才符合我的要求。

4

1 回答 1

3

只需存储最后一次点击的位置,让玩家朝那个方向移动。

将这些字段添加到您的播放器类:

int targetX;
int targetY;

在您的更新方法中存储新目标并应用移动:

// A new target is selected
if (Mouse.isButtonDown(0)) {

    targetX = Mouse.getX();
    targetY = Mouse.getY();
}

// Player is not standing on the target
if (targetX != X || targetY != Y) {

    // Get the vector between the player and the target
    int pathX = targetX - X;
    int pathY = targetY - Y;

    // Calculate the unit vector of the path
    double distance = Math.sqrt(pathX * pathX + pathY * pathY);
    double directionX = pathX / distance;
    double directionY = pathY / distance;

    // Calculate the actual walk amount
    double movementX = directionX * speed;
    double movementY = directionY * speed;

    // Move the player
    X = (int)movementX;
    Y = (int)movementY;
}
于 2013-02-01T23:35:16.223 回答