2d 中的 Java 运动

标签 java 2d

我以前在 2d 项目中使用过类似的东西来移动并且它总是有效。我现在正在使用它,它为我提供了一些输出的正确角度和错误的角度。我认为我的触发器中有一些错误,我弄错了。不过,我已经检查了大约一百万次。 Prolly 只是自动纠正我头脑中的错误。这是一些示例输出和恶意代码。

this(x,y): (500.0, 250.0)
dest(x,y): (400.0, 300.0)
DeltX: 100.0
DeltY: -50.0
Angle: 0.46364760900080615 //about 26.56°, should be 206.56° (26.56+pi) i think
XVELOC: 0.08944272
YVELOC: 0.04472136

public void Update(long deltaTime){
        if(this.destination == null){
            return;
        }

        this.x += this.x_velocity * deltaTime;
        this.y += this.y_velocity * deltaTime;

        if(Math.abs(this.x-destination.x) < 1 && Math.abs(this.y-destination.y) < 1){
            destination.arrive(this);
        }
    }

    public void setPath(){
        if(this.destination == null){
            return;
        } 

        double delta_x = (double) (this.x-this.destination.x);
        double delta_y = (double) (this.y-this.destination.y);
        int sign_x = (int)Math.signum(delta_x);
        int sign_y = (int)Math.signum(delta_y);
        double radian_angle = Math.atan((delta_x/delta_y));
        if(sign_x > 0 && sign_y > 0)
            radian_angle += Math.PI;
        else if(sign_x > 0 && sign_y < 0)
            radian_angle += Math.PI/2;
        else if(sign_x < 0 && sign_y > 0)
            radian_angle += 3*Math.PI/2;

        System.out.println("DeltX: "+delta_x);
        System.out.println("DeltY: "+delta_y);
        System.out.println("Angle: "+radian_angle);

        this.x_velocity = this.max_velocity*(float)Math.cos(radian_angle);
        this.y_velocity = this.max_velocity*(float)Math.sin(radian_angle);

        System.out.println("XVELOC: "+x_velocity);
        System.out.println("YVELOC: "+y_velocity);
    }

最佳答案

尝试使用 atan2 - 它专为您处理此问题

double delta_x = (double) (this.x-this.destination.x);
double delta_y = (double) (this.y-this.destination.y);
double radian_angle = Math.atan2(delta_y,delta_x); // arguements are y,x not x,y

http://download.oracle.com/javase/6/docs/api/java/lang/Math.html#atan2%28double,%20double%29

关于2d 中的 Java 运动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5705397/

相关文章:

c++ - openGL 中带有/对象的静态背景。 "bake"的最佳方式?

java - Java中如何忽略指定的关键字

java - 我似乎无法让 RadioButtons 在 JavaFX 中工作

algorithm - Matlab:如何获得我有 1 个坐标的区域的表面(m2)

ios - openGL 缩放/旋转(先发生什么......)

c++ - 流氓线被绘制到窗口

java - 如何在 OpenGL 中创建边缘平滑的聚光灯?

java - 需要帮助查找此 if 语句中的错误

java - 如何在不使用 ImageJ 库的情况下在 java 中加载或打开 DICOM 图像文件?

java - 在服务器端使用静态 LinkedList 安全吗?