bin/ai/regression/regression.nut
branchnoai
changeset 9771 769496a7b02e
parent 9769 015b6674c8ad
child 9773 d2c20cd38f18
equal deleted inserted replaced
9770:ad3c5f807d7c 9771:769496a7b02e
   756 
   756 
   757 	local list = AITileList_IndustryProducing(1, 3);
   757 	local list = AITileList_IndustryProducing(1, 3);
   758 	print("");
   758 	print("");
   759 	print("--TileList_IndustryProducing--");
   759 	print("--TileList_IndustryProducing--");
   760 	print("  Count():             " + list.Count());
   760 	print("  Count():             " + list.Count());
   761 	list.Valuate(AITileList_vBuildable());
   761 	list.Valuate(AITileList_vCargoProduction(7, 1, 1, 3));
   762 	print("  Location ListDump:");
   762 	print("  Location ListDump:");
   763 	for (local i = list.Begin(); list.HasNext(); i = list.Next()) {
   763 	for (local i = list.Begin(); list.HasNext(); i = list.Next()) {
   764 		print("    " + i + " => " + list.GetValue(i));
   764 		print("    " + i + " => " + list.GetValue(i));
   765 	}
   765 	}
   766 }
   766 }