1

这是我的第一次尝试:

.......
.......
OTHER CODE
// ===========================================================
// Inner and Anonymous Classes
// ===========================================================
private  class Ball extends AnimatedSprite {
private final PhysicsHandler mPhysicsHandler;

public Ball(final float pX, final float pY, final TiledTextureRegion pTextureRegion, final VertexBufferObjectManager pVertexBufferObjectManager) {
    super(pX, pY, pTextureRegion, pVertexBufferObjectManager);
    this.mPhysicsHandler = new PhysicsHandler(this);
    this.registerUpdateHandler(this.mPhysicsHandler);
}

@Override
protected void onManagedUpdate(final float pSecondsElapsed) {
    /* Get the scene-coordinates of the players feet. */
    final float[] playerFootCordinates = this.convertLocalToSceneCoordinates(16, 16);

    int foodX = ((int) playerFootCordinates[Constants.VERTEX_INDEX_X]) / 20;
    int foodY = ((int) playerFootCordinates[Constants.VERTEX_INDEX_Y]) / 20;


    final TMXTile tmxTile = tmxLayer.getTMXTileAt(playerFootCordinates[Constants.VERTEX_INDEX_X], playerFootCordinates[Constants.VERTEX_INDEX_Y]);

    if (tmxTile.getGlobalTileID() == 2){
        final EngineLock engineLock = mEngine.getEngineLock();
        engineLock.lock();

        /* Now it is save to remove the entity! */
        scene.detachChild(food[foodX][foodY]);
        food[foodX][foodY].dispose();
        food[foodX][foodY] = null;

        engineLock.unlock();
    }
      // OTHER CODE
       ......
 }

但它不起作用(“java.lang.IndexOutOfBoundsException:无效的位置blabla,大小是blabla”

我已经读到:警告:应该从注册到场景或引擎本身的 RunnableHandler.postRunnable(Runnable) 中调用此函数(detachChild),否则它可能会在 Update-Thread 或 GL 中引发 IndexOutOfBoundsException -线!

那么当我的播放器过来时我如何删除精灵呢?

ps:我看过 SpriteRemoveExample,但在我的情况下它对我没有帮助

4

2 回答 2

2

通过以下方式,您可以安全地删除您的精灵,这不会触发任何 ArrayIndexOutOfBoundException。

    mActivity.runOnUpdateThread(new Runnable() {

        @Override
        public void run() {
            clearUpdateHandlers();
            clearEntityModifiers();
            clearTouchAreas();
            detachSelf();
        }
    });
于 2013-06-09T05:01:34.550 回答
0

以下是您可以执行的操作:

首先,为您的场景注册一个更新处理程序。

每次玩家与精灵碰撞时,将该精灵添加到需要移除的精灵列表中。

在更新处理程序中,浏览该列表,并完全按照您的方式删除它们。

于 2013-06-08T22:39:46.317 回答