我的程序没有 draw/render 它必须做的

My program doesn't draw/render what it has to

我正在读一本关于游戏开发的书:从 Java 游戏开发开始 LibGDX。

有一个class,名字是CheesePlease3,是我从书上抄来的,里面有Stageclass,还有Actorclass, 我不得不从 Actor class 中创建一个子 class,命名为 BaseActor.

我做对了,基本上是复制粘贴整个东西,没有画任何对象。

所以我的问题是为什么?怎么了?

也许代码本身有点长但易于阅读。

这里是 CheesePlease3 class:

public class CheesePlease3 extends Game {

public Stage mainStage;
private BaseActor mouse;
private BaseActor cheese;
private BaseActor floor;
private BaseActor winText;

@Override
public void create () {

    mainStage = new Stage();

    floor = new BaseActor();
    floor.setTexture(new Texture("floor.png"));
    floor.setPosition(0, 0);
    mainStage.addActor(floor);

    cheese = new BaseActor();
    cheese.setTexture(new Texture("cheese.png"));
    cheese.setPosition(300, 300);
    mainStage.addActor(cheese);

    mouse = new BaseActor();
    mouse.setTexture(new Texture("mouse.png"));
    mouse.setPosition(200, 200);
    mainStage.addActor(mouse);

    winText = new BaseActor();
    winText.setTexture(new Texture("youWon.png"));
    winText.setPosition(150, 150);
    winText.setVisible(false);
    mainStage.addActor(winText);

}

@Override
public void render(){
    // process input

    mouse.velocityX = 0;
    mouse.velocityY = 0;

    if (Gdx.input.isKeyPressed(Input.Keys.LEFT))
        mouse.velocityX -= 100;
    if (Gdx.input.isKeyPressed(Input.Keys.RIGHT))
        mouse.velocityX += 100;
    if (Gdx.input.isKeyPressed(Input.Keys.UP))
        mouse.velocityY -= 100;
    if (Gdx.input.isKeyPressed(Input.Keys.DOWN))
        mouse.velocityY += 100;

    // update

    float dt = Gdx.graphics.getDeltaTime();
    mainStage.act(dt);

    // check win condition: Mouse must be overlapping cheese

    Rectangle mouseRectangle = mouse.getBoundingRectangle();
    Rectangle cheeseRectangle = cheese.getBoundingRectangle();

    if (mouseRectangle.contains(cheeseRectangle))
        winText.setVisible(true);

    // draw graphics

    Gdx.gl.glClearColor(0.8f, 0.8f, 1, 1);
    Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);


    mainStage.draw();

}

这是 BaseActor class:

public class BaseActor extends Actor {

public TextureRegion region;
public Rectangle boundary;
public float velocityX;
public float velocityY;

public BaseActor(){
    super();
    region = new TextureRegion();
    boundary = new Rectangle();
    velocityX = 0;
    velocityY = 0;
}

public void setTexture (Texture t){
    int w = t.getWidth();
    int h = t.getHeight();
    setWidth(w);
    setHeight(h);
    region.setRegion(t);
}

public Rectangle getBoundingRectangle(){
    return boundary.set(getX(), getY(), getWidth(), getHeight());
}

@Override
public void act (float dt){
    super.act(dt);
    moveBy(velocityX * dt, velocityY * dt);
}

public void drawBatch (Batch batch, float parentAlpha){
    Color c = getColor();
    batch.setColor(c.r, c.g, c.b, c.a);

    if (isVisible())
        batch.draw(region, getX(), getY(), getOriginX(), getOriginY(),
                   getWidth(), getHeight(), getScaleX(), getScaleY(), getRotation());
}

这是 DesktopLauncher:

public static void main (String[] arg) {
    LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
    new LwjglApplication(new CheesePlease3(), config);
    config.title = "Mouse - Cheese";
}

BaseActor 必须覆盖 draw 方法。
我假设 drawBatch 方法应该重命名为 draw.

Ps.: 上下运动是相反的。