Wall Smoothing

From Robowiki
Revision as of 16:51, 24 September 2017 by MultiplyByZer0 (talk | contribs) (Adjustments)
Jump to navigation Jump to search
Sub-pages:
Implementations
Youtube
Youtube has a video of Wall Smoothing in action: click here to watch

A method for avoiding collisions with walls without needing to reverse direction. In other words, instead of reversing direction every time your bot would hit the wall (which can be very predictable), your bot will instead turn as it approaches the wall, then move right along the wall.

Wall smoothing is only suitable for movements that orbit an enemy. This makes it irrelevant in most Melee situations, which require moving relative to multiple enemies. It is also irrelevant for GoTo-based movements, such as Minimum Risk Movement, where you should instead simply pick points that are some distance away from the walls.

How it works

Generally, Wall Smoothing is accomplished by extending an imaginary stick (sometimes called a "blind man's stick") from the front and back of the bot and testing if that stick would touch the wall. If it would, then you adjust the bot's new heading until the stick would not touch the wall. A stick length of about 120 to 150 works well for most bots.

Graphical demonstration

Wallsmooth4.png

In the image above, our robot (the small blue circle) is driving in a circle around an enemy (the red circle). The enemy is 250 units away. Our Wall Smoothing algorithm is currently using a 150 unit distance, so we're going to pick destinations that lie somewhere on the outer dark blue circle. The bright green circle is our destination if we drive clockwise around our enemy, the darker green circle is our destination if we drive counter-clockwise around our enemy. Since we're not yet near a wall, no smoothing is needed.


Wallsmooth5.png

Now we've been driving around our enemy clockwise for a bit more time, and we're starting to approach a wall. The end of the black field is the side of the battlefield. The gray line represents the closest we can get to that wall, which is 18 units. Since we can't drive directly perpendicular to our opponent for 150 units any more, we choose a "smoothed" point which is closer to the enemy. In other words, we choose the intersection of the gray line and our 150 unit dark blue circle. The advantages of doing this are

  1. We don't hit any walls.
  2. We can still drive clockwise or counter-clockwise, so we're less predictable (and therefore harder to shoot) than if we always just reversed direction when we came near a wall.


Wallsmooth6.png

If we keep driving clockwise, the "smoothing angle" will get steeper and steeper, meaning that we are driving more towards our enemy instead of perpendicular.

Code

There are several implementations of Wall Smoothing available on the /Implementations sub-page.

See also