Future Gunheat Waves & active bullet shadowing

Jump to navigation Jump to search

I found the future gunheat waves only to be useful against rambots, as dodging simple targeters from a distance is easy anyway. Turning it on against other bots didn't hurt, but it's pretty expensive because it means creating and estimating the danger for 3+ virtual waves every tick. It does produce some neat emergent behaviors when it works, like turning left for a few ticks so a circular gun fires one way and then switching to turning right.

The scoring algorithm basically tries to maximize probability-of-hitting / probability-of-getting-hit, although there is an extra factor taking into account bullet power because it doesn't make sense to try to block a 0.1-power bullet with a 2-power bullet. For example, probability of hitting comes just from the aim model’s probability density function. It assumes the surfing dangers are unbiased and accurate, which of course isn't true at all in practice, but still seems to work. I guess surfing data is unavoidably biased no matter what: surfers generally only get hit in areas they think are safe. I guess bullet collisions are more unbiased, so maybe it would be a good idea to give them a higher weight than bullet hit data, but I haven't tried that.

--Kev (talk)04:30, 19 January 2024

About active bullet shielding, I'm quite interested in that you sample candidate angles from the aimer's distribution.

I've been long thinking about improving anti-surfing guns by adding true entropy this way (it works well for non-adaptive guns against surfers, but no effect yet for the anti-adaptive gun). So I'm quite curious about whether sampling itself (without the scoring of creating a good bullet shadow), instead of always firing at the max works on its own against top surfers in BeepBoop.

Xor (talk)07:53, 26 February 2024

I did try that out a while ago before I implemented active shadowing. Yes, sampling instead of taking the argmax guess factor for the anti-surfer gun slightly improved scores in battles of BeepBoop vs itself. However, I didn't include it in a released version because scores dropped against weaker surfers, so the change didn't improve APS.

--Kev (talk)01:43, 27 February 2024

And with active bullet shadowing scoring, weak surfers make BeepBoop firing at max angles since their guns aren’t strong enough, while the strongest surfers with the strongest guns makes BeepBoop firing at sampled angles, improving both targeting performance and bullet shadow.

If my assumptions are correct, we should notice improvements in hit rate in targeting, and decreased hit rate in surfing at the same time against the strongest bots.

Xor (talk)03:11, 27 February 2024