[patch] New statistics cl**** August 12, 2009, 04:27:51 pm This patch introduces statistic_t, which is a small cl**** containing the important parts for statistics. All statistics are now a statistic_t object. In addition, the statistics for world, cities and players are unlimited, i.e. they will save the _complete_ history (The charts show only the last 24 entries).What is missing:- a GUI + routines to save the history to a csv file.tu-chemnitz.de/~gerw/patches/new_statistics.patchPlease tell me, if the patch applies fine with Tortoise - then I will publish my little 'git-svn-diff' script. Quote Selected
Re: [patch] New statistics cl**** Reply #1 – August 18, 2009, 08:00:51 pm What an amount of work But why did you rename all the variables (ie from karte_t::get_finance_history_year() to karte_t::get_world_history_year) ? Imho the old name is much more descriptive than the new one, which contains even redundant information (ie world, convoi etc). Quote Selected
Re: [patch] New statistics cl**** Reply #2 – August 18, 2009, 08:09:47 pm Quote from: Dwachs – on August 18, 2009, 08:00:51 pmBut why did you rename all the variables (ie from karte_t::get_finance_history_year() to karte_t::get_world_history_year) ? Imho the old name is much more descriptive than the new one, which contains even redundant information (ie world, convoi etc).With the renaming, you would know, what a history you get (since all histories has different entries). The old name get_finance_history_* wasn't better, imho. Renaming it to get_history_{month,year} shouldn't be much effort...Maybe I got 'inspired' by something likeCode: [Select]bev += (*i)->get_finance_history_month( 0, HIST_CITICENS ); Quote Selected