I want to create an onscreen pause button in andengine

What I do now is add an sprite and when I touch it, I do engine.stop(), the problem with this, is that the engine doesn't handle more touchevents till I resume the game (now I use the menu button for this), so is there a way to achieve it?

Thanks!

link|improve this question

64% accept rate
feedback

5 Answers

Look at the AndEngine's examples, there is a project that shows the use of menus in AndEngine, you'll find a better way of implementing a menu other than stopping the engine. Good luck!

link|improve this answer
So you mean that I need to create a menuscene?, and then add the pause button to it? Cause I want my pause button in the game – Jordi Puigdellívol May 2 '11 at 16:55
2  
Implement a menu scene, add a button to your game and add a click listener on that button to change between scenes. Check the MenuExample project from the AndEngineExamples, there the menu scene is attached on Menu key pressed. Just copy this code to your button's onClickListener. Good luck! – Egor May 3 '11 at 10:33
feedback

What I would do is add a "paused" boolean in your file and then have the button set it to true, then encompass your engine updater with a if (!pause) {...} block to make it stop updating when it's paused. Not the most elegant solution but worked in my game and caused no performance issues on unpause.

link|improve this answer
feedback

Psedu code

@Override
public boolean onKeyDown(final int pKeyCode, final KeyEvent pEvent) {
    if (pKeyCode == KeyEvent.KEYCODE_MENU && pEvent.getAction() == KeyEvent.ACTION_DOWN) {
        if (this.mEngine.isRunning()) {
            gSceneGlobal.setChildScene(this.mGamePauseScene, false, true, true);
            this.mEngine.stop();
        } else {
            gSceneGlobal.clearChildScene();
            this.mEngine.start();
        }
        return true;
    } else {
        return super.onKeyDown(pKeyCode, pEvent);
    }
}
link|improve this answer
feedback

I create my class (MyEngine extends Engine) and changed

@Override
public boolean onTouch(final View pView, final MotionEvent pSurfaceMotionEvent) {                      
if(!isRunning()) {
  // add your code for engine.stop();
  }
}

and create MyEngine engine in game class;

link|improve this answer
feedback

you can do on screen pause button pretty easily. What you need to do is, create a pause button anywhere on screen, on touching that button, show a MenuScene with play button over the original pause button. You can use .setPosition() for MenuItem if you comment out the .buildAnimations() code from the PauseMenu example.

In order to demonstrate the idea, I've made a simple activity to show its possible. Take a look and try for yourself.

Link: https://github.com/reittes/On-Screen-Pause-Button

GoodLuck

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.