Perceptual melee radar

Jump to navigation Jump to search
Revision as of 11 May 2012 at 20:15.
The highlighted comment was created in this revision.

Perceptual melee radar

I tried building a perceptual bot a while ago. The hardest problem I found was how to make a melee radar without storing any data and without accessing getScannedRobotEvents().

A second radar event in the same tick overrides the first and the bot keeps changing targets. Didn´t find how to overcome this problem yet.

    MN18:00, 11 May 2012

    Not sure if this is what you are looking for, but you can use clearAllEvents() within the onScannedRobot(..) function. This clears all remaining scan events.

      Wompi18:57, 11 May 2012
       

      The problem is the last radar event overrides the others. With clearAllEvents() the first radar event overrides the others. In practice, both make perceptual bots change targets every tick in melee, and the performance is awful.

      I was looking for something to lock onto the same target for many scans.

        MN19:52, 11 May 2012
         

        Hmm. Not sure if this is within the rules but you can try to combine a gunlock radar with distance. Lets say you set your radar to turn 4*360degree and the distance check to 200 if you have no target increase the distance by 200 if you turned 360degree and so on until radar is 0 or you have found a target within the distance. If you find a target within the distance you lock it with the getGunHeat() or until it leaves the current distance. Hmm, just a quick thought and not well indicated by me, but you should get the idear :).

          Wompi21:15, 11 May 2012