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?