LOCATION RlocInRect(MAP_RECT tRect);
// random loc in rect
UnitEx nearestColonyBuilding(LOCATION loc, int owner);
// nearest not combat or power building (that will have tubes to it, probably)
void showRoutes(int show);
// show unit routes for selected units when set
void randBeacons();
// randomly disperse beacons, weighted
bool IsPassable( int x, int y);
// is square at X,Y passable?
bool isCmbtUnit(Unit u);
// is that unit a combat type?
bool getClosest(Unit &unit, LOCATION loc, int plrNum, enum map_id types[], int count);
// get closest unit that is of a certain list of types
char * getUnitNiceName(UnitEx u);
// get unit's nice name, like "Guard Post" TODO check for memory leak? can cause crashes?
int randbar();
// weighted random bar
int randtype();
// weighted random type
int distance(int x1, int y1, int x2, int y2);
// distance from a to b (int)
int distance(LOCATION l1, LOCATION l2);
double dist(LOCATION l1, LOCATION l2);
// double distance funcs (with dec)
double dist(int x1, int y1, int x2, int y2);
int getStrengthInRect(MAP_RECT area,int playerNr, double competence);
// get strength of units in rect
int getUnitClass(Unit u);
// get class of unit (from strengths)
int getStrengthInArr(Unit *units, int count, int playerNr, double competence);
// get strength of units in array. kinda redundant now...
int findUnit(map_id id, int owner);
// does owner own a unit of type ID? only really useful for structures
int findUnit(map_id id, int owner, Unit &u);
// get first unit of type ID
int unitStrength(UnitEx u, double competence);
// get strength of singular unit, considering damage, type, and weapon
int unitStrength2(UnitEx u);
// get strength of singular unit, considering type, and weapon
int locationInRect(LOCATION l, MAP_RECT r);
// is l in rect r?
int unitHPPer(UnitEx u);
// percentage of hp unit u has (int 0-100)
int getUnitAtLoc(LOCATION l, Unit &unit);
// get unit at location
int CalcLocationDword(int pixelX, int pixelY);
// Hooville location function, used for passing LOCATIONS in cmdpkt
/* AI funcs */
void TruckCheck(int aiplayer);
// assign idle trucks to the nearist matched smelter and mine pair
void SetOreRoute(int numTrucks, int truckID[], UnitEx mine, UnitEx smelter);
// set an ore route from mine to smelter
bool GarageHasCargo(Unit u, int bay);
// garage has cargo in bay?
void Deploy(Unit u,int tileX, int tileY, int x1, int y1, int x2, int y2);
// deploy cargo (miner, convec with cargo)
void Produce(Unit un,map_id unitType, map_id cargoWeaponType, int u);
// build a unitType with cargoWeaponType, with callback
int Shoo(LOCATION l);
// make a unit move from location l in any free direction
void DoWPMove(Unit u, int nrPts,LOCATION pts[]);
// move a unit on wps
void powerStatus(int pl, int &use, int &cap);
// power used/total
void foodStatus(int pl, int &use, int &cap);
// food used/total
void hummiesStatus(int pl, int &freeWorkers, int &freeSci);
// human use status.