我正在做一个正交平铺地图Java游戏,当我的飞船按一个方向键移动到x和y边界时,它停止移动(按预期方式),但是如果我继续按该键,我的角色就​​会离开屏幕。

这是我正在使用的代码:

    @Override
    public boolean keyDown(int keycode) {
            ship = world.getShip();

            switch(keycode){
                    case Keys.W:
                        if (ship.getPosition().y<28.5f){

                            ship.getVelocity().y = 1;}
                            else {
                                ship.getVelocity().y = 0;
                            }
                            break;
                    case Keys.S:
                        if (ship.getPosition().y1){
                            ship.getVelocity().y = -1;}
                        else {
                            ship.getVelocity().y = 0;
                    }
                            break;
                    case Keys.A:
                            if (ship.getPosition().x0)
                            ship.getVelocity().x = -1.5f;
                            else{
                                ship.getVelocity().x = 0;
                            }
                            break;
                    case Keys.D:
                            if (ship.getPosition().x<39){

                           ship.getVelocity().x = 1;
                            }
                            else{
                                ship.getVelocity().x = 0;
                            }
                            break;
    default:
                            break;
            }
            return true;
    }

   @Override
   public boolean keyUp(int keycode) {
           ship = world.getShip();
            switch(keycode){
                    case Keys.W:
                            if(ship.getVelocity().y == 1)
                                    ship.getVelocity().y = 0;
                            break;
                    case Keys.S:
                            if(ship.getVelocity().y == -1)
                                    ship.getVelocity().y = 0;
                            break;
                    case Keys.A:
                            if(ship.getVelocity().x == -1.5f)
                                    ship.getVelocity().x = 0;
                            break;
                    case Keys.D:
                            if(ship.getVelocity().x == 1)
                                    ship.getVelocity().x = 0;
                            break;

                    default:
                            break;
            }
            return true;
    }


如果按住某个键,我该怎么办才能使我的“船只”显示在屏幕上?

最佳答案

如果按住某个键,我该怎么办才能使我的“船只”显示在屏幕上?


首先使用当前的API。从JDK1.1开始不推荐使用keyUp()keyDown()

首先阅读Motion Using the Keyboard了解有关如何处理此类问题的更多最新想法。这些代码示例执行基本的边界检查,以确保您不能将组件移出屏幕。

07-24 22:24