Talk:Flattener

From Robowiki
Jump to navigation Jump to search

Contents

Thread titleRepliesLast modified
Flattener vs. Random500:49, 12 August 2019
Pure Flattening Movement Bot705:22, 31 January 2014
Curve Flattening Detection?819:50, 16 December 2013
First page
First page
Previous page
Previous page
Last page
Last page

Flattener vs. Random

In theory, it should be possible to hit a flattener more often than a random movement because you know the flattener will avoid where it last was.

In practice, against top tier RoboRumble guns, which would be harder to hit, a typical flattener that logs where it last was and avoids it, or a type of random movement that moves to a random guessfactor each wave?

Thanks!

Slugzilla (talk)04:57, 11 August 2019

I have never had much success with flatteners but exploiting it is unethical imo. The logic of flattener is that your opponents targeting is learning and you can simulate what your opponent does fairly well keeping your profile fairly flat. On the other hand, assuming that your opponent assumes that your targeting is learning is not that reliable as it might just be that your gun isn't strong. Random movement guarantees that your opponent's gun will be as good as random targeting while flatteners can actually keep an advanced gun's hit rate below random.

Dsekercioglu (talk)18:28, 11 August 2019

I don't understand, what's unethical about it?

Slugzilla (talk)23:21, 11 August 2019

Sorry, my wording wasn't clear: in order to have a better score against all flatteners, you have to exploit it like [LittleBlackBook] does(which I don't really approve btw) because otherwise your targeting will most likely be average against flatteners.

Dsekercioglu (talk)00:22, 12 August 2019

Ah, that makes sense. But against the guns in ScalarN or DrussGT, would a standard flattener or random movement work better?

Slugzilla (talk)00:31, 12 August 2019

I'm pretty sure a good flattener would outperform random movement after seeing ScalarBot with a PWIN of %100 percent only with a tick flattener but WhiteFang's flattener would most definitely do worse than standard random movement =)

Dsekercioglu (talk)00:49, 12 August 2019
 
 
 
 
 

Pure Flattening Movement Bot

Could someone direct me to a strong bot which only flattens, without surfing, or instruct on me how to change a top bot( DrussGT, Diamond, etc) so that it only uses its flattener? Thanks in advance.

Straw (talk)02:22, 31 January 2014

Sure. In Diamond, it's all in voidious/move/MoveEnemy.java. Just comment out some of these:

    addView(simple);
    addView(normal);
    addView(recent);
    addView(recent2);
    addView(recent3);
    addView(recent4);
    addView(recent5);
    addView(recent6);
    addView(lightFlattener);
    addView(flattener);
    addView(flattener2);
Voidious (talk)02:29, 31 January 2014

Oops, sorry, you'll also want to remove the hit percentage thresholds, like:

        .setPaddedHitThreshold(FLATTENER_HIT_THRESHOLD)

Flattener is only enabled at a certain hit percentage, but you want it always on.

Voidious (talk)02:32, 31 January 2014

Just making sure, this will also disable normal hit logging, so it will only dodge places its been before, not where its been hit? Will I also have to add something to its move history so it has some at the beginning?

Straw (talk)03:01, 31 January 2014

I don't think that will be a problem. I just checked and it's hard-coded to dodge head-on targeting (GF=0) when it doesn't have any stats. It doesn't pre-load the trees or anything, it's just a special case in the code.

Voidious (talk)03:32, 31 January 2014

And yep, all the data sets are configured there, hits and visits are both "first-class citizens". ;)

Voidious (talk)03:33, 31 January 2014
 
 
 

Comment out "some"?

Straw (talk)04:54, 31 January 2014

I'd leave just flattener and flattener2. The lightFlattener is pretty new and enabled at a lower hit percentage threshold, so I dunno, up to you.

Voidious (talk)05:22, 31 January 2014
 
 
 

Curve Flattening Detection?

Has anyone figured out a statistical test which gives a good prediction of the state of an enemy surfer's flattener? It seems that it might be useful in targeting to figure out if they are using a flattener or not.

Straw (talk)08:20, 13 December 2013

Combat measures the peak in kernel density estimation. Low peaks are a sign of curve flattening. But it is used only for energy management. Low power bullets against flatteners, max power bullets against predictable movements.

And I'm using it in melee/team only. Doesn't work against surfers since they create peaks to screw up your data on purpose.

MN (talk)16:22, 13 December 2013
 

While you're at it, detecting if they're surfing at all might be good to have. One thought I've had on that is detecting if their attack angle is relative to you or the wave sources.

Voidious (talk)18:23, 13 December 2013

Current virtual gun systems seem to do a pretty good job deciding if they are surfing or not: until they start flattening.

Straw (talk)18:44, 13 December 2013
 

Combat heading is not perpendicular to either bots or waves. It's heading aims to maximize MEA instead.

MN (talk)18:44, 14 December 2013

How do you determine the best attack angle to maximize MEA?

Straw (talk)01:53, 15 December 2013

According to MEA formula, heading should be perpendicular to a bullet path targeted using head-on targeting. It IS perpendicular movement, but keep moving straight until the wave hits, instead of turning as in orbital movement.

When there are 2 or more waves flying in your direction it becomes more complex, but Combat assumes there is only 1 wave.

If close to walls, then heading should create the longest path which would hit the wall at the same time the wave hits. Combat calculates which point in the wall coincides with waves hitting it with PPMEA. It could also be calculated with precise MEA.

The side-effect is dynamic distancing becoming hard to perform.

MN (talk)15:52, 15 December 2013
 
 

"One thought I've had on that is detecting if their attack angle is relative to you or the wave sources."

That doesn't work with all robots, some surf relative to the enemy robot, rather then the wave source (such as Seraphim).

Chase07:31, 16 December 2013

So it's obviously not perfect, but I still think it's a useful signal. A reliable surf-detection system would probably need quite a few of them.

Voidious (talk)19:50, 16 December 2013
 
 
 
First page
First page
Previous page
Previous page
Last page
Last page