I've got my BotFactory working just fine, but I was wondering at what
point the "get bot" method gets called. Do I have access to all the
information I would have access to when onStart() gets called? Or does
my factory and my bot class get loaded before the game even starts?
I'm asking because I'd like to be able to have my BotFactory class
analyze the map and/or check the race and such before returning a
particular bot.
I can still implement this functionality by just making one bot that
acts as a wrapper for my own set of bot classes, but it would be
easier and cleaner to do it inside the factory class.
Thanks!