Tags: RLBot/RLBotPack
Tags
Update Noob Black to the last V4 version (#343) * Delete RLBotPack/Noob_Black/src directory * Add files via upload * Delete RLBotPack/Noob_Black/src/v1 directory * Delete RLBotPack/Noob_Black/src/v2 directory * Delete RLBotPack/Noob_Black/src/v3 directory * Delete RLBotPack/Noob_Black/src/__pycache__ directory * Delete RLBotPack/Noob_Black/src/util/__pycache__ directory
fix(Nexto_EZ): buffer randomness value consistency (#335) Updates the Nexto_EZ bot to match user expectations when the GUI slider is unmodified. * when initialized the `Nexto_EZ` class loads the shared memory buffer with a value from 0-255 where 0 represents a fully random bot and 255 is fully nexto. * when initialized the gui expects the value to be in the 0=fully-random format and displays correctly, but does not update the value until the slider is adjusted. * when the slider is adjusted it writes a 0-255 value where 255 is random and 0 is fully nexto. (Note that this is inverted from the initialization step.) * when deciding whether the tick should be random or not the `Nexto_EZ` class expects the buffer to contain a 0-255 value where 255 is fully random. (see line 50) It seems to match expectations if the user modifies the slider before playing. However if the slider is not changed, or when `SHOW_GUI` is set to False the bot's behavior will be the inverse of expectation. * update the initialization of the class and gui to set and expect the 0=fully-nexto 255=fully-random format, respectively. * add debug logging to elevate confidence the bot is behaving as expected. defaults to False/Off
PreviousNext