java - libGDX 咨询速度

标签 java android eclipse libgdx

我需要做的是,当点为“示例10”时,球的速度升高,当点为“示例20”时,球的速度再次升高,等等。我不知道我是否这样做在 Ball 类或 GameScreen 类中,我不知道该怎么做。感谢您的帮助!。

public class Ball {

    //THE SPEED OF THE BALL
    private static final float SPEED=1100;

    //THE POINTS IS 
    puntuacion =0;

    //AND THE METHOD WHEN THE POINTS IS INCREAMENTING
    private void updatePuntuacion(){
        if(ball.getBordes().overlaps(Lpaddle.getBordes())) { 
            puntuacion = puntuacion + 1;
            if(puntuacion > puntuacionMaxima)
            puntuacionMaxima = puntuacion;
        }

        if(ball.getBordes().x <= 0) 
            sonidoex.play();

        if(ball.getBordes().x <= 0)
            puntuacion =0;

        if(ball.getBordes().x <=0)
            Gdx.input.vibrate(1000);

        if(ball.getBordes().x <=0)
            Screens.juego.setScreen(Screens.MAINSCREEN);

        ball.comprobarPosicionBola();
    }
}

编辑:

这是我的 GameScreen 类。

public class GameScreen extends AbstractScreen {

    private SpriteBatch batch;
    private Texture texture;
    private Paddle Lpaddle, Rpaddle;
    private Ball ball;
    private BitmapFont font;
    private int puntuacion, puntuacionMaxima;
    private Preferences preferencias;
    private Music music;
    private Sound sonidoex;

    public GameScreen(Main main) {
        super(main);
            preferencias = Gdx.app.getPreferences("PuntuacionAppPoints");   
            puntuacionMaxima = preferencias.getInteger("puntuacionMaxima");
            music =Gdx.audio.newMusic(Gdx.files.internal("bgmusic.mp3"));
            music.play();
            music.setVolume((float) 0.3);
            music.setLooping(true);
            sonidoex = Gdx.audio.newSound(Gdx.files.internal("explosion5.wav"));
    }

    public void show(){
        batch = main.getBatch();
        texture = new Texture(Gdx.files.internal("spacebg.png"));

        Texture texturaBola = new Texture(Gdx.files.internal("bola.png"));
        ball = new Ball(Gdx.graphics.getWidth() / 2 - texturaBola.getWidth() / 2, Gdx.graphics.getHeight() / 2 - texturaBola.getHeight() / 2);
        Texture texturaPala= new Texture(Gdx.files.internal("pala.png"));
        Lpaddle = new LeftPaddle(80, Gdx.graphics.getHeight()/2 -texturaPala.getHeight() /2);
        Rpaddle = new RightPaddle(Gdx.graphics.getWidth() -100, Gdx.graphics.getHeight()/2 - texturaPala.getHeight() /2, ball);
        font = new BitmapFont(Gdx.files.internal("pointsfont.tf.fnt"), Gdx.files.internal("pointsfont.tf.png"), false);
        puntuacion = 0;    
    }

    public void render(float delta){
        Gdx.gl.glClearColor(0, 0, 0, 1);
        Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
        updatePuntuacion();
        Lpaddle.update();
        Rpaddle.update();
        ball.update(Lpaddle, Rpaddle);
        batch.begin();
        batch.draw(texture, 0, 0,texture.getWidth(), texture.getHeight());
        ball.draw(batch);
        Lpaddle.draw(batch);
        Rpaddle.draw(batch);
        font.draw(batch, "Points: " + Integer.toString(puntuacion), Gdx.graphics.getWidth() / 4 ,Gdx.graphics.getHeight() - 5);
        font.draw(batch, "High score: " + Integer.toString(puntuacionMaxima),Gdx.graphics.getWidth() - Gdx.graphics.getWidth() / 4 ,Gdx.graphics.getHeight() - 5);
        batch.end();
    }

    private void updatePuntuacion(){
        if(ball.getBordes().overlaps(Lpaddle.getBordes())) { 
            puntuacion = puntuacion + 1;
            if(puntuacion > puntuacionMaxima)
            puntuacionMaxima = puntuacion;
        }

        if(ball.getBordes().x <= 0) 
            sonidoex.play();

        if(ball.getBordes().x <= 0)
            puntuacion =0;

        if(ball.getBordes().x <=0)
            Gdx.input.vibrate(1000);

        if (puntuacion % 10 == 0){
             SPEED = 200;
        }

        if(ball.getBordes().x <=0)
            Screens.juego.setScreen(Screens.MAINSCREEN);

        ball.comprobarPosicionBola();
    }

    public void hide(){
        font.dispose();
        texture.dispose();
    }

    @Override
    public void dispose(){
        preferencias.putInteger("puntuacionMaxima", puntuacionMaxima);
        preferencias.flush();
    }

    public void resize(int width, int height){      
        float widthImage = texture.getWidth();
        float heightImage = texture.getHeight();
        float r = heightImage / widthImage;
        if(heightImage > height) { 
            heightImage = height;
            widthImage = heightImage / r;
        }

        if(widthImage > width) { 
            widthImage = width;
            heightImage = widthImage * r;
        }
    }
}

最佳答案

我需要 50 点声誉才能发表评论,因此我将发布一个答案并尝试使其尽可能有帮助。

首先,我不太确定你的问题,但据我了解,当 puntuacion 达到特定值(10、20 等)时,你希望提高球的速度.

您要做的第一件事是从 SPEED 变量中删除 final,因为 final 原语只能设置一次,从而阻止您稍后更改它。

至于更新速度,如果您想在特定的punctuacion值上进行更新,那么只需这样做

if(punctuacion == 10 || punctuacion == 17) { // etc
    speed += x; // x being the value you want to increase the speed by
}

或者,如果您想每 10 个增量更新一次速度,您可以这样做

if (punctuacion % 10 == 0){
    speed += x;
}

请注意,对于第二个示例,当 punctuacion0 时,if 语句将返回 true,因此如果您必须。

至于放置此代码的位置,这实际上取决于您的类,并且您肯定没有发布足够的代码让我能够帮助您,但我最好的猜测是在您递增之后立即放置它punctuacion,因为我假设您希望在 punctuacion 更新后立即执行球的速度更新检查。

关于java - libGDX 咨询速度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26229446/

相关文章:

java - Java 中的字符串比较

java - Elastic Search - 排序 - 在 0 条件下在整数字段之间切换

android - 如何动态改变形状颜色?

eclipse - 无法运行模拟器

java - 我如何知道我正在运行哪个版本的 RichFaces?

java - 如何在Java中获取没有扩展名的文件名?

java - 尝试在 order by 之后添加条件时,JPQL 查询出现异常

android - Docker容器中的Android模拟器没有互联网

android - 在 ViewFlipper 中添加导航句柄

java - 适用于任何 Java 项目的代码混淆器