English 中文(简体)
和引擎:多重定时器
原标题:AndEngine: Multiple TimerHandlers

我已另建了一个班级, 延伸 AnimatedSprite, 称为敌人 。 我在我的场景中创造了几个敌人的例子。 每个班应该有自己的控制动画的TimerHandler。 然而, 计时器似乎都连接在一起, 每一个图案同时更改了它的 TileIndex 。 这里的代码是 :

package com.tahakki.folkprequel;

import java.util.Random;

import org.anddev.andengine.engine.handler.timer.ITimerCallback;
import org.anddev.andengine.engine.handler.timer.TimerHandler;
import org.anddev.andengine.entity.sprite.AnimatedSprite;
import org.anddev.andengine.extension.physics.box2d.PhysicsConnector;
import org.anddev.andengine.extension.physics.box2d.PhysicsFactory;
import org.anddev.andengine.extension.physics.box2d.PhysicsWorld;
import org.anddev.andengine.opengl.texture.region.TiledTextureRegion;

import com.badlogic.gdx.math.Vector2;
import com.badlogic.gdx.physics.box2d.Body;
import com.badlogic.gdx.physics.box2d.Contact;
import com.badlogic.gdx.physics.box2d.ContactListener;
import com.badlogic.gdx.physics.box2d.BodyDef.BodyType;
import com.badlogic.gdx.physics.box2d.FixtureDef;

public class Enemy extends AnimatedSprite{

private Body physB;
private PhysicsWorld physW = MainActivity.mPhysicsWorld;
private static final FixtureDef FIXTURE_DEF = PhysicsFactory.createFixtureDef(1, 0, 0);
private TimerHandler timer;
private Random rand = new Random();

public Enemy(float pX, float pY, TiledTextureRegion pTiledTextureRegion) {
    super(pX, pY, pTiledTextureRegion);

    this.setCurrentTileIndex(rand.nextInt(3));
    this.setScale(0.6f);
    physB = PhysicsFactory.createBoxBody(physW, this, BodyType.DynamicBody, FIXTURE_DEF);
    physB.setFixedRotation(true);
    physW.registerPhysicsConnector(new PhysicsConnector(this, physB));

    timer = new TimerHandler(2 + (2*rand.nextFloat()), true, new ITimerCallback(){
        @Override
        public void onTimePassed(TimerHandler pTimerHandler) {
            int random = rand.nextInt(3);
            Enemy.this.setCurrentTileIndex(random);
        }
    });
    this.registerUpdateHandler(timer);
}

}

有没有人知道如何让每个物体 有自己的独立计时器?

最佳回答

我猜你对每个敌人都使用相同的纹理区域。 如果您不复制它们, 请尝试

Enemy e = new Enemy(x,y,yourTextureregion.deepCopy());
问题回答

暂无回答




相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签