2

我刚开始学习 libGDX,并按照http://steigert.blogspot.in/2012/02/2-libgdx-tutorial-game-screens.html(libGdx帮助页面上的第二个链接)中的示例进行操作。

截至目前,我只显示 512x512 的徽标。应用程序中没有其他任何事情发生,但是当我在桌面模式下运行应用程序时,我的 FPS 为 15-16。当我删除图像时,我得到 60fps 的空白屏幕。对于 android 来说更糟糕的是,我在 Galaxy SL - GT-i9003 中获得 3-4 fps(Temple Run 在设备上以可播放的速度运行)。

我的笔记本电脑玩魔兽世界时质量没有任何问题,所以这么小的应用程序只能达到 15fps 令人困惑。

public class SplashScreen extends AbstractScreen {
    private Texture splashTexture;
    private TextureRegion splashTextureRegion;

    public SplashScreen(MyGDXGame game){
        super(game);
    }

    @Override
    public void show()
    {
        super.show();

        // load the splash image and create the texture region
        splashTexture = new Texture("splash.png");

        // we set the linear texture filter to improve the stretching
        splashTexture.setFilter( TextureFilter.Linear, TextureFilter.Linear );

        // in the image atlas, our splash image begins at (0,0) at the
        // upper-left corner and has a dimension of 512x301
        splashTextureRegion = new TextureRegion( splashTexture, 0, 0, 512, 382 );
    }

    @Override
    public void render(float delta ) {
        super.render( delta );

        // we use the SpriteBatch to draw 2D textures (it is defined in our base
        // class: AbstractScreen)
        batch.begin();

        // we tell the batch to draw the region starting at (0,0) of the
        // lower-left corner with the size of the screen
        batch.draw( splashTextureRegion, 0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight() );

        // the end method does the drawing
        batch.end();
    }

    @Override
    public void dispose()
    {
        super.dispose();
        splashTexture.dispose();
    }

}

这是 AbstractScreen 类的相关部分:

    public class AbstractScreen implements Screen {


    protected final MyGDXGame game;
    protected final BitmapFont font;
    protected final SpriteBatch batch;

    public AbstractScreen(MyGDXGame game ){
        this.game = game;
        this.font = new BitmapFont();
        this.batch = new SpriteBatch();
    }

    @Override
    public void render(float delta) {
        Gdx.gl.glClearColor( 0f, 0f, 0f, 1f );
        Gdx.gl.glClear( GL20.GL_COLOR_BUFFER_BIT );
    }
...
}

和桌面应用程序:

public class Main {
public static void main(String[] args) {
    LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();

    cfg.title = "First Game";
    cfg.useGL20 = false;
    cfg.width = 800;
    cfg.height = 480;

    new LwjglApplication(new MyGDXGame(), cfg);
}

MyGDXGame如下:

public class MyGDXGame extends Game {
private FPSLogger fpsLogger;

public SplashScreen getSplashScreen() {
    return new SplashScreen( this );
}


@Override
public void create() {
    fpsLogger = new FPSLogger();
}

@Override
public void dispose() {
    super.dispose();
}

@Override
public void render() {
    super.render();
    setScreen(getSplashScreen());
    fpsLogger.log();
}

@Override
public void resize(int width, int height) {
    super.resize(width, height);
}

@Override
public void pause() {
    super.pause();
}

@Override
public void resume() {
    super.resume();
}

我已经阅读了很多关于 libGdx 的好东西,所以这个问题让我感到莫名其妙。获得如此低的帧速率我做错了什么?

4

1 回答 1

3

我认为setScreen(getSplashScreen());您的render()方法可能是问题所在。将其移至 的create()方法MyGDXGame

现在,您在每一帧中切换屏幕并重新创建SpriteBatch一个非常重的对象(请参阅我对您问题的评论)。

于 2013-11-05T11:21:53.957 回答