BryanSWeber / CUNYAIModule

CUNYBot, an AI that plays complete games of Starcraft.
MIT License
6 stars 3 forks source link

Prebuild Buildings using this as a basic plan #147

Closed BryanSWeber closed 5 years ago

BryanSWeber commented 5 years ago

//TODO Real maths public int getMineralsWhenReaching(TilePosition start, TilePosition end) { double rate = getMineralRate(); double distance = Util.getGroundDistance(start.toPosition(), end.toPosition()); double frames = distance / 2.55; return (int) (rate * frames); }

BryanSWeber commented 5 years ago

Done in current macro and micro branches