bin/ai/regression/regression.nut
branchnoai
changeset 9647 c17046b1b8a2
parent 9645 25126afa0c25
child 9648 760b7b504e37
equal deleted inserted replaced
9646:1e63b7128e05 9647:c17046b1b8a2
   235 	list.Valuate(AIStationListCargoWaiting(1));
   235 	list.Valuate(AIStationListCargoWaiting(1));
   236 	print("  CargoWaiting(1) ListDump:");
   236 	print("  CargoWaiting(1) ListDump:");
   237 	for (local i = list.Begin(); list.HasNext(); i = list.Next()) {
   237 	for (local i = list.Begin(); list.HasNext(); i = list.Next()) {
   238 		print("    " + i + " => " + list.GetValue(i));
   238 		print("    " + i + " => " + list.GetValue(i));
   239 	}
   239 	}
       
   240 
       
   241 	list = AIStationVehicleList(0);
       
   242 
       
   243 	print("");
       
   244 	print("--StationVehicleList--");
       
   245 	print("  Count():             " + list.Count());
       
   246 	list.Valuate(AIVehicleListLocation());
       
   247 	print("  Location ListDump:");
       
   248 	for (local i = list.Begin(); list.HasNext(); i = list.Next()) {
       
   249 		print("    " + i + " => " + list.GetValue(i));
       
   250 	}
   240 }
   251 }
   241 
   252 
   242 function Regression::Road()
   253 function Regression::Road()
   243 {
   254 {
   244 	local road = AIRoad();
   255 	local road = AIRoad();