Hmm, this is programed a bit differently than when i do my landrush maps. I usualy make all the base handling code by hand, since BaseBuilder.h can be not good.
Anyway, you can center the view using:
Unit CV;
PlayerVehicleEnum CVfinder(0);
CVfinder.GetNext(CV);
Player[0].CenterViewOn(CV.Location().x, CV.Location().y);
And fill a cargo truck by creating all empty trucks and using:
Truck_Cargo Cargoes[5] = {truckFood, truckCommonOre, truckCommonOre, truckCommonOre, truckCommonOre};
Unit CT;
PlayerVehicleEnum CTfinder(0);
for(int i = 0; CTfinder.GetNext(CT) == 1; i++) //Or i < 5 as the condition CT.SetTruckCargo(Cargoes[i], 1000);
Also, you'll need to have code to check for impassible terrain where you create your units. Or you could cheat and make an array of possible base locations and randomly pick one of those.
Note: the above two code sections only work for player 1 (Player[0]) just stick it in a loop to fix that.
There is also the function:
TethysGame::GetRand(int Range)//returns rand int between 0 and Range - 1
To get a random number from op2.