Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to add sprites to my scene every second. I have 4 sprites that i am adding according to percentage.

The only thing is i need to be able to change the percentage of each sprite during the game. Right now i am trying to use this:

final double[] mOdds = {0.10, 0.25, 0.30, 0.35};   
// note, mOdds totals 1.0

public int pickSprite()
{
double rand = Math.Random();
for(int i=0;i<mOdds.length;i++)
{
    if(rand < mOdds[i])
        return i;
    rand -= mOdds[i];
}
return -1;                    // should never reach this
}

I then use a switch statement to pull the sprites.

    ...
switch(pickSprite())
{
case 0:
    // draw sprite 0
    break;
case 1:
    // draw sprite 1
    break;
case 2:
    // draw sprite 2
    break;
case 3:
    // draw sprite 3
    break;
}
...

This isn't working for me. I need it to pull a sprite EACH second when the method is called, but its not. Sometimes it skips until the next second.

Does anyone know a better approach to this?

share|improve this question
Can anyone help? – coder_For_Life22 Jul 2 '12 at 19:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.