Where to find a simple example to move a ball using accelerometer(Andengine) . I make that using onKeyDown events.

int x=20; iny y=10;

//ballSprite.setPostion(x,y); Eg: when pressed leftKey

x=x-5;

when Pressed Up key

y=y+5;

The same thing , how to make using accelerometer.. Any samples ?

link|improve this question

63% accept rate
9  
Sorry, but have you at least tried to search for it? I used 3 words for my search and came up with that: blog.androgames.net/85/android-accelerometer-tutorial as you should consider: not everything is "simple" so working with an accelerometer takes some time to understand and some skills in math. Also "simple" is very subjective. Try the tutorial and combine it with andengine... ask if you have a specific problem... – WarrenFaith Jul 27 '11 at 14:11
nice comment. It's true – subspider Jul 27 '11 at 14:14
robertpenner.com/easing/penner_chapter7_tweening.pdf Book chapter on all aspects of tweening. Explains maths in detail. – QuentinUK Jul 27 '11 at 14:27
feedback

2 Answers

up vote 1 down vote accepted

You may find the following useful;

public class AccelerometerScreen extends BaseGameActivity implements IAccelerometerListener, IOnAreaTouchListener{

private static final int CAMERA_WIDTH = 480;
private static final int CAMERA_HEIGHT = 720;



@Override
public void onLoadResources() {

    this.enableAccelerometerSensor(this);
    this.mEngine.getTextureManager().loadTextures(mTexture);
}

@Override
public Scene onLoadScene() {
    mEngine.registerUpdateHandler(new FPSLogger());
    }




    @Override
public void onAccelerometerChanged(AccelerometerData pAccelerometerData) {  
    accellerometerSpeedX = (int)pAccelerometerData.getX();
            //   accellerometerSpeedY = (int)pAccelerometerData.getY();
    Log.v("Accelerometer X Y Z: ", ""+pAccelerometerData);

    // from this accelerometer data u can set ur sprite. 
         }
    }
link|improve this answer
feedback

Specific to AndEngine... download the AndEngineExamples and check out the source for the PhysicsExample. It uses the accelerometer to adjust the gravity of the physics world.

Essentially, all you do is override onAccelerometerChanged to move the ball using the AccelerometerData.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.