Dynamic Clustering
Dynamic clustering is a technique to find entries in your log similar to the current situation. Essentially, it is a K-nearest neighbor algorithm, and not actually clustering at all. Despite this misnomer, the term "Dynamic Clustering" has stuck with the Robocode community.
The idea is to record a "state" (or termed "situation") for each entry in your log. The state can contain any data that you deem valuable, such as lateral velocity, advancing velocity, or enemy distance. Save this along with your data. Then to use the data, you find a "distance" between current state and past states. Distance can be Euclidian (sqrt((dist1 - dist2)2 + (lat1 - lat2)2 + ···)
) or another way, such as Manhattan distance (|dist1 - dist2| + |lat1 - lat2| + ···
). Find some number of entries with the lowest distance, and use them for targeting, movement, or whatever you like.
The earliest method doing this was by iterating through the log and calculating the distance for each log entry. If you have a large log this is very slow. More recently kd-trees have been used. Corbos was the first one to mention them on the RoboWiki, which caught the interest of Chase-san and Simonton.
Bot using this technique
- Tron & Shadow: First two bots using this technique. This technique used to be called "Trons Gun", but later it was renamed.
- Chalk: First dynamic clustering bot that was released with source code.
- DCBot: A simplified version of gun used by earlier version of Tron and Shadow.
- Lukious & Firebird & Hydra: Dynamic Clustering version of Dookious, Phoenix, WaveSerpent, respectively.
- Horizon & RougeDC & YersiniaPestis: Newer dynamic clustering bots.
- X2 & Ali & DrussGT: These bots use Dynamic Clustering only for their gun.