I have a:

@Override
    public boolean onTouchEvent(MotionEvent event) {
        synchronized (event)  
        {  

        try {
            Thread.sleep(16);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        if(event.getAction() == MotionEvent.ACTION_DOWN){

          isDown = true;
        }else if(event.getAction() == MotionEvent.ACTION_MOVE){

          isDown = true;
        }else if(event.getAction() == MotionEvent.ACTION_UP){

         isDown = false;
        }

        return true;
        } 

    }

Then in my MainGame thread I use setCharacterPosition();

 public void setCharacterPosition(){
    if(isDown){
CharacterX += 32;
}
    }

but this make my Character to run toooo quickly so i tried to add:

Thread.sleep(500);

Because i only want my character to increase with 32 every half a sencond.

IT works but bring my FPS down to 2-3.

How do i do it right?

//Simon

link|improve this question

Why not decrease the increment value you are using (i.e. something lower than 32 maybe 5)? – source.rar Jul 14 '11 at 20:57
feedback

2 Answers

up vote 3 down vote accepted

I know little about Java or Android, but this seems like a wrong way to do it.

What you're after is setting up a Game Loop (a loop that continuously runs and updates the game logic, frame by frame).

This loop is executed on timed intervals (usually 60 frames per second, or maybe less on a mobile platform).

On each frame, you can scale the game object's movements based on the time elapsed since last frame.

This gives a scaled movement, irrelevant to the clock speed of the device you're using.

Read more abot game loops in these fine resources:

Simple Java Android Game Loop

Game Loop

Android Game Loop

link|improve this answer
To add an easy example... character moves 10px per second... time since last frame 0.005s. CharacterX += 10 * 0.005f – mibollma Jul 14 '11 at 20:49
Well basicly i increase by 32 because i have a grid and my character should not stand in middle between a line – carefacerz Jul 14 '11 at 21:28
feedback

Android UI is based on Single Thread Model, so do not block UI Thread. Your onTouchEvent executes in UI Thread...when you call Thread.sleep you are making your UI thread to sleep for that specific period of time.

Hope this help. Ref: Painless Threading

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.