The City Statistics help text is extremely outdated, the only stats mentioned are citizens, city growth, traveled and p****engers; and of course the brand new option to control whether city growth is allowed or not is not mentioned. I am trying to update the help text; but find this to be extremely difficult, since I quite simply do not know exactly what is shown by each separate graph. The notes in simcity.h says:
enum city_cost {
HIST_CITICENS=0,// total people
HIST_GROWTH, // growth (just for convenience)
HIST_BUILDING, // number of buildings
HIST_CITYCARS, // number of citycars generated
HIST_PAS_TRANSPORTED, // number of p****engers who could start their journey
HIST_PAS_GENERATED, // total number generated
HIST_MAIL_TRANSPORTED, // letters that could be sended
HIST_MAIL_GENERATED, // all letters generated
HIST_GOODS_RECIEVED, // times all storages were not empty
HIST_GOODS_NEEDED, // times sotrages checked
HIST_POWER_RECIEVED, // power consumption (not used at the moment!)
MAX_CITY_HISTORY // Total number of items in array
};
which should correspond to:const char *hist_type[MAX_CITY_HISTORY] =
{
"citicens", "Growth", "Buildings", "Verkehrsteilnehmer",
"Transported", "P****agiere", "sended", "Post",
"Arrived", "Goods", "Electricity"
};
These are my guesses, please correct any faulty ****umption, so that I can produce a helpful, instead of an unhelpful, help text *smile*
Citizens: the number of people that live in the urban area no change from current help text content, only re-wording
City growth: changes in population (dependent on city size and transport service provided for p****engers and mail).
No. of buildings: how many city buildings there are in the urban area. newly added
City cars: how many city cars have been created this is a guess, it might be how many is driving the streets during the time period in question, or something else
Traveled: p****engers that have entered the transport network (shown as a <a href="station.txt">happy face[/url] in Stop Information) removed and mail
P****engers: Total number of p****engers generated in the urban area. removed and mail
sent: Mail that has entered the transport network newly added, guess based on the simcity.h notes, button text should be changed to Sent mail or some such.
mail: Total number of mail generated in the urban area. newly added, guess...
Arrived: I am quite at a loss here..., the simcity.h note seems to imply that it is a question of factories within city limits that have raw materials in storage. But I do not know the unit of quantity, nor do I know if it is only when all requirements for production are fulfilled that counts - and if such "requirements" include the consumer actually buying the product..(i.e, when the factory actually is producing something) I guess this is somehow connected to when the factory itself shows green instead of red... Anyway, a better button text is also needed to show this has to do with goods, not p****engers nor mail (if that is so....)
Goods: Again I am at a loss, I presume possibly related to when a factory shows red... but I dare not even guess...