I'm trying to come up with a way for players to fire their weapons and only hit for a certain percentage. For example, one gun can only hit 70% of the time while another only hits 34% of the time.

So far all I could come up with is weighted arrays.

Attempt 1:

private function weighted_random(&$weight)
    {
        $weights = array(($weight/100), (100-$weight)/100);
        $r = mt_rand(1,1000);
        $offset = 0;
        foreach($weights as $k => $w)
        {
            $offset += $w*1000;
            if($r <= $offset)
                return $k;
        }
    }

Attempt 2:

private function weapon_fired(&$weight)
    {
        $hit = array();
        for($i = 0; $i < $weight; $i++)
            $hit[] = true;
        for($i = $weight; $i < 100; $i++)
            $hit[] = false;
        shuffle($hit);
        return $hit[mt_rand(0,100)];
    }

It doesn't seem that the players are hitting the correct percentages but I'm not really sure why.

Any ideas or suggestions? Is anything glaringly wrong with these?

Thanks

link|improve this question

40% accept rate
Glaringly wrong? Yes, they are drastically slower than a simpler method like Chris AtLee shows below. You definitely don't want to iterate over any type of array, much less sort it (shuffle) every time a weapon fires. – hobodave May 6 '10 at 3:31
Thanks, I didn't think about overhead! – noko May 6 '10 at 4:06
feedback

1 Answer

up vote 10 down vote accepted
private function weapon_fired($weight)
    {
        return mt_rand(0, 99) < $weight;
    }
link|improve this answer
This is a much simpler way of doing my second attempt right? Do you happen to know if it's "accurate?" – noko May 6 '10 at 3:18
1  
It should be. You can test accuracy by calling it a few thousand times and seeing how it works out. – Charles May 6 '10 at 3:19
1  
Depends what you mean by "accurate". Randomness is a funny thing. Just because it might returns true 10 times in a row for a weapon with a 1% chance of hitting doesn't mean it's not "accurate". – Chris AtLee May 6 '10 at 3:24
1  
Another important thing to consider. When developing a game you definitely do not want to have your weapon firing function be any form of loop. – hobodave May 6 '10 at 3:28
Wouldn't it be: mt_rand(0, 99) < $weight Your answer uses 0, 100 which returns 1 of 101 possibilities. – webbiedave May 6 '10 at 3:58
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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