Difference between revisions of "ScalarR"
m |
m |
||
Line 21: | Line 21: | ||
; How competitive is it? | ; How competitive is it? | ||
− | No.1 in melee ( | + | No.1 in melee ([http://web.archive.org/web/20190319084925/http://literumble.appspot.com/Rankings?game=meleerumble February 12, 2019]) |
− | No. | + | No.1 in 1v1 ([http://web.archive.org/web/20210628051845/https://literumble.appspot.com/Rankings?game=roborumble June 28, 2021]) |
== Strategy == | == Strategy == | ||
Line 49: | Line 49: | ||
; What's next for your robot? | ; What's next for your robot? | ||
− | * | + | * Tune the shield threshold. |
− | |||
* Try some goto movement to be better at killing [[Mirror Movement]]. | * Try some goto movement to be better at killing [[Mirror Movement]]. | ||
− | * Tune gun / movement with more computation power. | + | * Tune gun / movement with more computation power. |
− | * | + | * Tune energy management more. |
; What other robot(s) is it based on? | ; What other robot(s) is it based on? |
Revision as of 09:11, 28 June 2021
- ScalarR Sub-pages:
- Version History
ScalarR | |
Author(s) | Xor |
Extends | AdvancedRobot |
Targeting | GuessFactor Targeting |
Movement | Wave Surfing |
This page is under construction. For recent activities, see Version History.
Background Information
- What's special about it?
It's a melee bot, and shares same surfing algorithms in 1v1.
- How competitive is it?
No.1 in melee (February 12, 2019)
No.1 in 1v1 (June 28, 2021)
Strategy
- How does it move?
True Surfing in melee and 1v1, with different surfing paths generated. Danger computation considers Bullet Shadow, KNN and a simulation of simple guns (to encounter its weakness agains weak bots ;).
- How does it fire?
KNN/Play It Forward in melee, KNN/GuessFactor Targeting in 1v1. Energy Management is quite conservative that optimizes survival as main goal. The weights of 1v1 main KNN gun is tuned with Genetic Algorithms inspired by Skilgannon, by directly optimizing hit rate. The 1v1 anti-surfing gun is not tuned yet.
- What does it save between rounds and matches?
Everything between rounds, nothing between matches.
Additional Information
- Where did you get the name?
Scalar from Scalar Replacement, an optimization technique used in JVM to reduce GC pressure. Letter R is coined.
- What's next for your robot?
- Tune the shield threshold.
- Try some goto movement to be better at killing Mirror Movement.
- Tune gun / movement with more computation power.
- Tune energy management more.
- What other robot(s) is it based on?
Directly and indirectly influenced by everything mentioned on this wiki.
- Experience learnt from ScalarN, ScalarBot and SimpleBot
- Understanding DrussGT. Thanks Skilgannon for sharing many details about how to build a competitive bot.
- Innovations since 2005
- Diamond’s code is very neat, I learned a lot but still get messy code.
- Understanding BeepBoop. Thanks Kev for sharing the idea about using gradients, as well as showing how import correct bullet shadow is.
- to be listed...