(svn r5887) -Cleanup: move date related functions, defines and variables to date.[ch]
authorrubidium
Mon, 14 Aug 2006 14:21:15 +0000
changeset 4261 2ec8f5a9747b
parent 4260 8a9824f6e501
child 4262 4657d940a84c
(svn r5887) -Cleanup: move date related functions, defines and variables to date.[ch]
-Cleanup: fix whitespace related coding style issues in date.[ch]
-Cleanup: make original comments doxygen compatible and remove/change outdated comments
Makefile
ai/default/default.c
ai/trolly/trolly.c
aircraft_cmd.c
aircraft_gui.c
airport.c
console_cmds.c
currency.c
date.c
date.h
disaster_cmd.c
economy.c
engine.c
functions.h
graph_gui.c
industry_cmd.c
main_gui.c
misc.c
misc_gui.c
network.c
network_client.c
network_gui.c
network_server.c
network_udp.c
newgrf_engine.c
newgrf_spritegroup.c
newgrf_station.c
news_gui.c
oldloader.c
openttd.c
openttd.h
openttd.vcproj
openttd_vs80.vcproj
player_gui.c
players.c
roadveh_cmd.c
roadveh_gui.c
screenshot.c
settings.c
settings_gui.c
ship_cmd.c
ship_gui.c
station_cmd.c
station_gui.c
strings.c
subsidy_gui.c
texteff.c
town_cmd.c
train_cmd.c
train_gui.c
tunnelbridge_cmd.c
variables.h
vehicle.c
vehicle_gui.c
waypoint.c
yapf/yapf.hpp
--- a/Makefile	Mon Aug 14 11:44:19 2006 +0000
+++ b/Makefile	Mon Aug 14 14:21:15 2006 +0000
@@ -647,6 +647,7 @@
 SRCS += console.c
 SRCS += console_cmds.c
 SRCS += currency.c
+SRCS += date.c
 SRCS += debug.c
 SRCS += dedicated.c
 SRCS += depot.c
--- a/ai/default/default.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/ai/default/default.c	Mon Aug 14 14:21:15 2006 +0000
@@ -25,6 +25,7 @@
 #include "../../depot.h"
 #include "../../variables.h"
 #include "../../bridge.h"
+#include "../../date.h"
 #include "default.h"
 
 // remove some day perhaps?
--- a/ai/trolly/trolly.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/ai/trolly/trolly.c	Mon Aug 14 14:21:15 2006 +0000
@@ -35,6 +35,7 @@
 #include "../../gui.h"
 #include "../../depot.h"
 #include "../../vehicle.h"
+#include "../../date.h"
 #include "../ai.h"
 
 // This function is called after StartUp. It is the init of an AI
--- a/aircraft_cmd.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/aircraft_cmd.c	Mon Aug 14 14:21:15 2006 +0000
@@ -23,6 +23,7 @@
 #include "newgrf_engine.h"
 #include "newgrf_callbacks.h"
 #include "newgrf_text.h"
+#include "date.h"
 
 static bool AirportMove(Vehicle *v, const AirportFTAClass *Airport);
 static bool AirportSetBlocks(Vehicle *v, AirportFTA *current_pos, const AirportFTAClass *Airport);
--- a/aircraft_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/aircraft_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -23,6 +23,7 @@
 #include "airport.h"
 #include "vehicle_gui.h"
 #include "newgrf_engine.h"
+#include "date.h"
 
 /**
  * Draw the purchase info details of an aircraft at a given location.
--- a/airport.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/airport.c	Mon Aug 14 14:21:15 2006 +0000
@@ -8,6 +8,7 @@
 #include "macros.h"
 #include "variables.h"
 #include "airport_movement.h"
+#include "date.h"
 
 static AirportFTAClass *CountryAirport;
 static AirportFTAClass *CityAirport;
--- a/console_cmds.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/console_cmds.c	Mon Aug 14 14:21:15 2006 +0000
@@ -20,6 +20,7 @@
 #include "station.h"
 #include "strings.h"
 #include "screenshot.h"
+#include "date.h"
 
 #ifdef ENABLE_NETWORK
 	#include "table/strings.h"
--- a/currency.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/currency.c	Mon Aug 14 14:21:15 2006 +0000
@@ -6,6 +6,7 @@
 #include "news.h"
 #include "variables.h"
 #include "table/strings.h"
+#include "date.h"
 
 // exchange rate    prefix
 // |  separator        |     postfix
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/date.c	Mon Aug 14 14:21:15 2006 +0000
@@ -0,0 +1,303 @@
+/* $Id$ */
+
+#include "stdafx.h"
+#include "openttd.h"
+#include "date.h"
+#include "variables.h"
+#include "macros.h"
+#include "vehicle.h"
+#include "network.h"
+#include "network_data.h"
+#include "network_server.h"
+#include "functions.h"
+#include "currency.h"
+
+Year      _cur_year;
+Month     _cur_month;
+Date      _date;
+DateFract _date_fract;
+
+
+void SetDate(Date date)
+{
+	YearMonthDay ymd;
+
+	_date = date;
+	ConvertDayToYMD(&ymd, date);
+	_cur_year = ymd.year;
+	_cur_month = ymd.month;
+#ifdef ENABLE_NETWORK
+	_network_last_advertise_frame = 0;
+	_network_need_advertise = true;
+#endif /* ENABLE_NETWORK */
+}
+
+#define M(a, b) ((a << 5) | b)
+static const uint16 _month_date_from_year_day[] = {
+M(0,1),M(0,2),M(0,3),M(0,4),M(0,5),M(0,6),M(0,7),M(0,8),M(0,9),M(0,10),M(0,11),M(0,12),M(0,13),M(0,14),M(0,15),M(0,16),M(0,17),M(0,18),M(0,19),M(0,20),M(0,21),M(0,22),M(0,23),M(0,24),M(0,25),M(0,26),M(0,27),M(0,28),M(0,29),M(0,30),M(0,31),
+M(1,1),M(1,2),M(1,3),M(1,4),M(1,5),M(1,6),M(1,7),M(1,8),M(1,9),M(1,10),M(1,11),M(1,12),M(1,13),M(1,14),M(1,15),M(1,16),M(1,17),M(1,18),M(1,19),M(1,20),M(1,21),M(1,22),M(1,23),M(1,24),M(1,25),M(1,26),M(1,27),M(1,28),M(1,29),
+M(2,1),M(2,2),M(2,3),M(2,4),M(2,5),M(2,6),M(2,7),M(2,8),M(2,9),M(2,10),M(2,11),M(2,12),M(2,13),M(2,14),M(2,15),M(2,16),M(2,17),M(2,18),M(2,19),M(2,20),M(2,21),M(2,22),M(2,23),M(2,24),M(2,25),M(2,26),M(2,27),M(2,28),M(2,29),M(2,30),M(2,31),
+M(3,1),M(3,2),M(3,3),M(3,4),M(3,5),M(3,6),M(3,7),M(3,8),M(3,9),M(3,10),M(3,11),M(3,12),M(3,13),M(3,14),M(3,15),M(3,16),M(3,17),M(3,18),M(3,19),M(3,20),M(3,21),M(3,22),M(3,23),M(3,24),M(3,25),M(3,26),M(3,27),M(3,28),M(3,29),M(3,30),
+M(4,1),M(4,2),M(4,3),M(4,4),M(4,5),M(4,6),M(4,7),M(4,8),M(4,9),M(4,10),M(4,11),M(4,12),M(4,13),M(4,14),M(4,15),M(4,16),M(4,17),M(4,18),M(4,19),M(4,20),M(4,21),M(4,22),M(4,23),M(4,24),M(4,25),M(4,26),M(4,27),M(4,28),M(4,29),M(4,30),M(4,31),
+M(5,1),M(5,2),M(5,3),M(5,4),M(5,5),M(5,6),M(5,7),M(5,8),M(5,9),M(5,10),M(5,11),M(5,12),M(5,13),M(5,14),M(5,15),M(5,16),M(5,17),M(5,18),M(5,19),M(5,20),M(5,21),M(5,22),M(5,23),M(5,24),M(5,25),M(5,26),M(5,27),M(5,28),M(5,29),M(5,30),
+M(6,1),M(6,2),M(6,3),M(6,4),M(6,5),M(6,6),M(6,7),M(6,8),M(6,9),M(6,10),M(6,11),M(6,12),M(6,13),M(6,14),M(6,15),M(6,16),M(6,17),M(6,18),M(6,19),M(6,20),M(6,21),M(6,22),M(6,23),M(6,24),M(6,25),M(6,26),M(6,27),M(6,28),M(6,29),M(6,30),M(6,31),
+M(7,1),M(7,2),M(7,3),M(7,4),M(7,5),M(7,6),M(7,7),M(7,8),M(7,9),M(7,10),M(7,11),M(7,12),M(7,13),M(7,14),M(7,15),M(7,16),M(7,17),M(7,18),M(7,19),M(7,20),M(7,21),M(7,22),M(7,23),M(7,24),M(7,25),M(7,26),M(7,27),M(7,28),M(7,29),M(7,30),M(7,31),
+M(8,1),M(8,2),M(8,3),M(8,4),M(8,5),M(8,6),M(8,7),M(8,8),M(8,9),M(8,10),M(8,11),M(8,12),M(8,13),M(8,14),M(8,15),M(8,16),M(8,17),M(8,18),M(8,19),M(8,20),M(8,21),M(8,22),M(8,23),M(8,24),M(8,25),M(8,26),M(8,27),M(8,28),M(8,29),M(8,30),
+M(9,1),M(9,2),M(9,3),M(9,4),M(9,5),M(9,6),M(9,7),M(9,8),M(9,9),M(9,10),M(9,11),M(9,12),M(9,13),M(9,14),M(9,15),M(9,16),M(9,17),M(9,18),M(9,19),M(9,20),M(9,21),M(9,22),M(9,23),M(9,24),M(9,25),M(9,26),M(9,27),M(9,28),M(9,29),M(9,30),M(9,31),
+M(10,1),M(10,2),M(10,3),M(10,4),M(10,5),M(10,6),M(10,7),M(10,8),M(10,9),M(10,10),M(10,11),M(10,12),M(10,13),M(10,14),M(10,15),M(10,16),M(10,17),M(10,18),M(10,19),M(10,20),M(10,21),M(10,22),M(10,23),M(10,24),M(10,25),M(10,26),M(10,27),M(10,28),M(10,29),M(10,30),
+M(11,1),M(11,2),M(11,3),M(11,4),M(11,5),M(11,6),M(11,7),M(11,8),M(11,9),M(11,10),M(11,11),M(11,12),M(11,13),M(11,14),M(11,15),M(11,16),M(11,17),M(11,18),M(11,19),M(11,20),M(11,21),M(11,22),M(11,23),M(11,24),M(11,25),M(11,26),M(11,27),M(11,28),M(11,29),M(11,30),M(11,31),
+};
+#undef M
+
+enum {
+	ACCUM_JAN = 0,
+	ACCUM_FEB = ACCUM_JAN + 31,
+	ACCUM_MAR = ACCUM_FEB + 29,
+	ACCUM_APR = ACCUM_MAR + 31,
+	ACCUM_MAY = ACCUM_APR + 30,
+	ACCUM_JUN = ACCUM_MAY + 31,
+	ACCUM_JUL = ACCUM_JUN + 30,
+	ACCUM_AUG = ACCUM_JUL + 31,
+	ACCUM_SEP = ACCUM_AUG + 31,
+	ACCUM_OCT = ACCUM_SEP + 30,
+	ACCUM_NOV = ACCUM_OCT + 31,
+	ACCUM_DEC = ACCUM_NOV + 30,
+};
+
+static const uint16 _accum_days_for_month[] = {
+	ACCUM_JAN, ACCUM_FEB, ACCUM_MAR, ACCUM_APR,
+	ACCUM_MAY, ACCUM_JUN, ACCUM_JUL, ACCUM_AUG,
+	ACCUM_SEP, ACCUM_OCT, ACCUM_NOV, ACCUM_DEC,
+};
+
+
+void ConvertDayToYMD(YearMonthDay *ymd, Date date)
+{
+	uint yr  = date / (365 + 365 + 365 + 366);
+	uint rem = date % (365 + 365 + 365 + 366);
+	uint x;
+
+	yr *= 4;
+
+	if (rem >= 366) {
+		rem--;
+		do {
+			rem -= 365;
+			yr++;
+		} while (rem >= 365);
+		if (rem >= 31 + 28) rem++;
+	}
+
+	ymd->year = yr;
+
+	x = _month_date_from_year_day[rem];
+	ymd->month = x >> 5;
+	ymd->day = x & 0x1F;
+}
+
+/**
+ * Converts a tupe of Year, Month and Day to a Date.
+ * @param year  is a number between 0..?
+ * @param month is a number between 0..11
+ * @param day   is a number between 1..31
+ */
+uint ConvertYMDToDay(Year year, Month month, Day day)
+{
+	uint rem;
+
+	/* day in the year */
+	rem = _accum_days_for_month[month] + day - 1;
+
+	/* remove feb 29 from year 1,2,3 */
+	if (year & 3) rem += (year & 3) * 365 + (rem < 31 + 29);
+
+	/* base date. */
+	return (year >> 2) * (365 + 365 + 365 + 366) + rem;
+}
+
+/**
+ * Convert a date on the form:
+ * 1920 - 2090 (MAX_YEAR_END_REAL)
+ * 192001 - 209012
+ * 19200101 - 20901231
+ * or if > 2090 and below 65536, treat it as a daycount.
+ * @return -1 if no conversion was possible
+ */
+Date ConvertIntDate(uint date)
+{
+	Year  year;
+	Month month = 0;
+	Day   day   = 1;
+
+	if (IS_INT_INSIDE(date, 1920, MAX_YEAR_END_REAL + 1)) {
+		year = date - 1920;
+	} else if (IS_INT_INSIDE(date, 192001, 209012 + 1)) {
+		month = date % 100 - 1;
+		year = date / 100 - 1920;
+	} else if (IS_INT_INSIDE(date, 19200101, 20901231 + 1)) {
+		day = date % 100; date /= 100;
+		month = date % 100 - 1;
+		year = date / 100 - 1920;
+	} else if (IS_INT_INSIDE(date, 2091, 65536)) {
+		return date;
+	} else {
+		return (Date)-1;
+	}
+
+	/* invalid ranges? */
+	if (month >= 12 || !IS_INT_INSIDE(day, 1, 31 + 1)) return (Date)-1;
+
+	return ConvertYMDToDay(year, month, day);
+}
+
+
+/** Functions used by the IncreaseDate function */
+
+extern void OnNewDay_Train(Vehicle *v);
+extern void OnNewDay_RoadVeh(Vehicle *v);
+extern void OnNewDay_Aircraft(Vehicle *v);
+extern void OnNewDay_Ship(Vehicle *v);
+static void OnNewDay_EffectVehicle(Vehicle *v) { /* empty */ }
+extern void OnNewDay_DisasterVehicle(Vehicle *v);
+
+typedef void OnNewVehicleDayProc(Vehicle *v);
+
+static OnNewVehicleDayProc * _on_new_vehicle_day_proc[] = {
+	OnNewDay_Train,
+	OnNewDay_RoadVeh,
+	OnNewDay_Ship,
+	OnNewDay_Aircraft,
+	OnNewDay_EffectVehicle,
+	OnNewDay_DisasterVehicle,
+};
+
+extern void WaypointsDailyLoop(void);
+extern void TextMessageDailyLoop(void);
+extern void EnginesDailyLoop(void);
+extern void DisasterDailyLoop(void);
+
+extern void PlayersMonthlyLoop(void);
+extern void EnginesMonthlyLoop(void);
+extern void TownsMonthlyLoop(void);
+extern void IndustryMonthlyLoop(void);
+extern void StationMonthlyLoop(void);
+
+extern void PlayersYearlyLoop(void);
+extern void TrainsYearlyLoop(void);
+extern void RoadVehiclesYearlyLoop(void);
+extern void AircraftYearlyLoop(void);
+extern void ShipsYearlyLoop(void);
+
+extern void ShowEndGameChart(void);
+
+
+static const Month _autosave_months[] = {
+	 0, // never
+	 1, // every month
+	 3, // every 3 months
+	 6, // every 6 months
+	12, // every 12 months
+};
+
+/**
+ * Runs the day_proc for every DAY_TICKS vehicle starting at daytick.
+ */
+static void RunVehicleDayProc(uint daytick)
+{
+	uint total = _vehicle_pool.total_items;
+	uint i;
+
+	for (i = daytick; i < total; i += DAY_TICKS) {
+		Vehicle *v = GetVehicle(i);
+
+		if (v->type != 0) _on_new_vehicle_day_proc[v->type - 0x10](v);
+	}
+}
+
+void IncreaseDate(void)
+{
+	YearMonthDay ymd;
+
+	if (_game_mode == GM_MENU) {
+		_tick_counter++;
+		return;
+	}
+
+	RunVehicleDayProc(_date_fract);
+
+	/* increase day, and check if a new day is there? */
+	_tick_counter++;
+
+	_date_fract++;
+	if (_date_fract < DAY_TICKS) return;
+	_date_fract = 0;
+
+	/* yeah, increase day counter and call various daily loops */
+	_date++;
+
+	TextMessageDailyLoop();
+
+	DisasterDailyLoop();
+	WaypointsDailyLoop();
+
+	if (_game_mode != GM_MENU) {
+		InvalidateWindowWidget(WC_STATUS_BAR, 0, 0);
+		EnginesDailyLoop();
+	}
+
+	/* check if we entered a new month? */
+	ConvertDayToYMD(&ymd, _date);
+	if (ymd.month == _cur_month) return;
+	_cur_month = ymd.month;
+
+	/* yes, call various monthly loops */
+	if (_game_mode != GM_MENU) {
+		if (_opt.autosave != 0 && (_cur_month % _autosave_months[_opt.autosave]) == 0) {
+			_do_autosave = true;
+			RedrawAutosave();
+		}
+
+		PlayersMonthlyLoop();
+		EnginesMonthlyLoop();
+		TownsMonthlyLoop();
+		IndustryMonthlyLoop();
+		StationMonthlyLoop();
+#ifdef ENABLE_NETWORK
+		if (_network_server) NetworkServerMonthlyLoop();
+#endif /* ENABLE_NETWORK */
+	}
+
+	/* check if we entered a new year? */
+	if (ymd.year == _cur_year) return;
+	_cur_year = ymd.year;
+
+	/* yes, call various yearly loops */
+	PlayersYearlyLoop();
+	TrainsYearlyLoop();
+	RoadVehiclesYearlyLoop();
+	AircraftYearlyLoop();
+	ShipsYearlyLoop();
+#ifdef ENABLE_NETWORK
+	if (_network_server) NetworkServerYearlyLoop();
+#endif /* ENABLE_NETWORK */
+
+	/* check if we reached end of the game */
+	if (_cur_year == _patches.ending_date - MAX_YEAR_BEGIN_REAL) {
+			ShowEndGameChart();
+	/* check if we reached the maximum year, decrement dates by a year */
+	} else if (_cur_year == (MAX_YEAR_END + 1)) {
+		Vehicle *v;
+
+		_cur_year = MAX_YEAR_END;
+		_date -= 365;
+		FOR_ALL_VEHICLES(v) {
+			v->date_of_last_service -= 365;
+		}
+
+		/* Because the _date wraps here, and text-messages expire by game-days, we have to clean out
+		 *  all of them if the date is set back, else those messages will hang for ever */
+		InitTextMessage();
+	}
+
+	if (_patches.auto_euro) CheckSwitchToEuro();
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/date.h	Mon Aug 14 14:21:15 2006 +0000
@@ -0,0 +1,35 @@
+/* $Id$ */
+
+/**
+ * 1 day is 74 ticks; _date_fract used to be uint16 and incremented by 885. On
+ *                    an overflow the new day begun and 65535 / 885 = 74.
+ * 1 tick is approximately 30 ms.
+ * 1 day is thus about 2 seconds (74 * 30 = 2220) on a machine that can run OpenTTD normally
+ */
+#define DAY_TICKS 74
+
+#define MAX_YEAR_BEGIN_REAL 1920
+#define MAX_YEAR_END_REAL 2090
+#define MAX_YEAR_END 170
+
+/* Year and Date are defined elsewhere */
+typedef uint8  Month;
+typedef uint8  Day;
+typedef uint16 DateFract;
+
+typedef struct YearMonthDay {
+	Year  year;
+	Month month;
+	Day   day;
+} YearMonthDay;
+
+extern Year      _cur_year;
+extern Month     _cur_month;
+extern Date      _date;
+extern DateFract _date_fract;
+
+
+void SetDate(Date date);
+void ConvertDayToYMD(YearMonthDay *ymd, Date date);
+uint ConvertYMDToDay(Year year, Month month, Day day);
+Date ConvertIntDate(uint date);
--- a/disaster_cmd.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/disaster_cmd.c	Mon Aug 14 14:21:15 2006 +0000
@@ -20,6 +20,7 @@
 #include "sound.h"
 #include "variables.h"
 #include "table/sprites.h"
+#include "date.h"
 
 static void DisasterClearSquare(TileIndex tile)
 {
--- a/economy.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/economy.c	Mon Aug 14 14:21:15 2006 +0000
@@ -29,6 +29,7 @@
 #include "train.h"
 #include "newgrf_engine.h"
 #include "unmovable.h"
+#include "date.h"
 
 // Score info
 const ScoreInfo _score_info[] = {
--- a/engine.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/engine.c	Mon Aug 14 14:21:15 2006 +0000
@@ -16,6 +16,7 @@
 #include "variables.h"
 #include "train.h"
 #include "newgrf_cargo.h"
+#include "date.h"
 
 EngineInfo _engine_info[TOTAL_NUM_ENGINES];
 RailVehicleInfo _rail_vehicle_info[NUM_TRAIN_ENGINES];
--- a/functions.h	Mon Aug 14 11:44:19 2006 +0000
+++ b/functions.h	Mon Aug 14 14:21:15 2006 +0000
@@ -108,7 +108,6 @@
 uint32 InteractiveRandom(void); /* Used for random sequences that are not the same on the other end of the multiplayer link */
 uint InteractiveRandomRange(uint max);
 
-void SetDate(uint date);
 /* facedraw.c */
 void DrawPlayerFace(uint32 face, int color, int x, int y);
 
@@ -122,7 +121,6 @@
 void DrawTextMessage(void);
 void CDECL AddTextMessage(uint16 color, uint8 duration, const char *message, ...);
 void UndrawTextMessage(void);
-void TextMessageDailyLoop(void);
 
 bool AddAnimatedTile(TileIndex tile);
 void DeleteAnimatedTile(TileIndex tile);
@@ -163,9 +161,6 @@
 #define AllocateNameUnique(name, skip) RealAllocateName(name, skip, true)
 #define AllocateName(name, skip) RealAllocateName(name, skip, false)
 StringID RealAllocateName(const char *name, byte skip, bool check_double);
-void ConvertDayToYMD(YearMonthDay *ymd, uint16 date);
-uint ConvertYMDToDay(uint year, uint month, uint day);
-uint ConvertIntDate(uint date);
 
 /* misc functions */
 void MarkTileDirty(int x, int y);
@@ -205,7 +200,6 @@
 void ShowNetworkNeedCompanyPassword(void);
 int FindFirstBit(uint32 x);
 void ShowHighscoreTable(int difficulty, int8 rank);
-void ShowEndGameChart(void);
 TileIndex AdjustTileCoordRandomly(TileIndex a, byte rng);
 
 void AfterLoadTown(void);
--- a/graph_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/graph_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -14,6 +14,7 @@
 #include "strings.h"
 #include "debug.h"
 #include "variables.h"
+#include "date.h"
 
 static uint _legend_excludebits;
 static uint _legend_cargobits;
--- a/industry_cmd.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/industry_cmd.c	Mon Aug 14 14:21:15 2006 +0000
@@ -22,6 +22,7 @@
 #include "variables.h"
 #include "table/industry_land.h"
 #include "table/build_industry.h"
+#include "date.h"
 
 enum {
 	/* Max industries: 64000 (8 * 8000) */
--- a/main_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/main_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -29,14 +29,15 @@
 #include "train.h"
 #include "unmovable_map.h"
 #include "screenshot.h"
+#include "date.h"
 
 #include "network_data.h"
 #include "network_client.h"
 #include "network_server.h"
 
 /* Min/Max date for scenario editor */
-static const uint MinDate = 0;     // 1920-01-01 (MAX_YEAR_BEGIN_REAL)
-static const uint MaxDate = 29220; // 2000-01-01
+static const Date MinDate = 0;     // 1920-01-01 (MAX_YEAR_BEGIN_REAL)
+static const Date MaxDate = 29220; // 2000-01-01
 
 static int _rename_id;
 static int _rename_what;
--- a/misc.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/misc.c	Mon Aug 14 14:21:15 2006 +0000
@@ -12,14 +12,12 @@
 #include "map.h"
 #include "vehicle.h"
 #include "saveload.h"
-#include "network.h"
-#include "network_data.h"
-#include "network_server.h"
 #include "engine.h"
 #include "vehicle_gui.h"
 #include "variables.h"
 #include "ai/ai.h"
 #include "table/landscape_const.h"
+#include "date.h"
 
 extern void StartupEconomy(void);
 
@@ -76,20 +74,6 @@
 	return GB(InteractiveRandom(), 0, 16) * max >> 16;
 }
 
-void SetDate(uint date)
-{
-	YearMonthDay ymd;
-
-	_date = date;
-	ConvertDayToYMD(&ymd, date);
-	_cur_year = ymd.year;
-	_cur_month = ymd.month;
-#ifdef ENABLE_NETWORK
-	_network_last_advertise_frame = 0;
-	_network_need_advertise = true;
-#endif /* ENABLE_NETWORK */
-}
-
 void InitializeVehicles(void);
 void InitializeWaypoints(void);
 void InitializeDepot(void);
@@ -277,119 +261,6 @@
 	}
 }
 
-
-#define M(a,b) ((a<<5)|b)
-static const uint16 _month_date_from_year_day[] = {
-M(0,1),M(0,2),M(0,3),M(0,4),M(0,5),M(0,6),M(0,7),M(0,8),M(0,9),M(0,10),M(0,11),M(0,12),M(0,13),M(0,14),M(0,15),M(0,16),M(0,17),M(0,18),M(0,19),M(0,20),M(0,21),M(0,22),M(0,23),M(0,24),M(0,25),M(0,26),M(0,27),M(0,28),M(0,29),M(0,30),M(0,31),
-M(1,1),M(1,2),M(1,3),M(1,4),M(1,5),M(1,6),M(1,7),M(1,8),M(1,9),M(1,10),M(1,11),M(1,12),M(1,13),M(1,14),M(1,15),M(1,16),M(1,17),M(1,18),M(1,19),M(1,20),M(1,21),M(1,22),M(1,23),M(1,24),M(1,25),M(1,26),M(1,27),M(1,28),M(1,29),
-M(2,1),M(2,2),M(2,3),M(2,4),M(2,5),M(2,6),M(2,7),M(2,8),M(2,9),M(2,10),M(2,11),M(2,12),M(2,13),M(2,14),M(2,15),M(2,16),M(2,17),M(2,18),M(2,19),M(2,20),M(2,21),M(2,22),M(2,23),M(2,24),M(2,25),M(2,26),M(2,27),M(2,28),M(2,29),M(2,30),M(2,31),
-M(3,1),M(3,2),M(3,3),M(3,4),M(3,5),M(3,6),M(3,7),M(3,8),M(3,9),M(3,10),M(3,11),M(3,12),M(3,13),M(3,14),M(3,15),M(3,16),M(3,17),M(3,18),M(3,19),M(3,20),M(3,21),M(3,22),M(3,23),M(3,24),M(3,25),M(3,26),M(3,27),M(3,28),M(3,29),M(3,30),
-M(4,1),M(4,2),M(4,3),M(4,4),M(4,5),M(4,6),M(4,7),M(4,8),M(4,9),M(4,10),M(4,11),M(4,12),M(4,13),M(4,14),M(4,15),M(4,16),M(4,17),M(4,18),M(4,19),M(4,20),M(4,21),M(4,22),M(4,23),M(4,24),M(4,25),M(4,26),M(4,27),M(4,28),M(4,29),M(4,30),M(4,31),
-M(5,1),M(5,2),M(5,3),M(5,4),M(5,5),M(5,6),M(5,7),M(5,8),M(5,9),M(5,10),M(5,11),M(5,12),M(5,13),M(5,14),M(5,15),M(5,16),M(5,17),M(5,18),M(5,19),M(5,20),M(5,21),M(5,22),M(5,23),M(5,24),M(5,25),M(5,26),M(5,27),M(5,28),M(5,29),M(5,30),
-M(6,1),M(6,2),M(6,3),M(6,4),M(6,5),M(6,6),M(6,7),M(6,8),M(6,9),M(6,10),M(6,11),M(6,12),M(6,13),M(6,14),M(6,15),M(6,16),M(6,17),M(6,18),M(6,19),M(6,20),M(6,21),M(6,22),M(6,23),M(6,24),M(6,25),M(6,26),M(6,27),M(6,28),M(6,29),M(6,30),M(6,31),
-M(7,1),M(7,2),M(7,3),M(7,4),M(7,5),M(7,6),M(7,7),M(7,8),M(7,9),M(7,10),M(7,11),M(7,12),M(7,13),M(7,14),M(7,15),M(7,16),M(7,17),M(7,18),M(7,19),M(7,20),M(7,21),M(7,22),M(7,23),M(7,24),M(7,25),M(7,26),M(7,27),M(7,28),M(7,29),M(7,30),M(7,31),
-M(8,1),M(8,2),M(8,3),M(8,4),M(8,5),M(8,6),M(8,7),M(8,8),M(8,9),M(8,10),M(8,11),M(8,12),M(8,13),M(8,14),M(8,15),M(8,16),M(8,17),M(8,18),M(8,19),M(8,20),M(8,21),M(8,22),M(8,23),M(8,24),M(8,25),M(8,26),M(8,27),M(8,28),M(8,29),M(8,30),
-M(9,1),M(9,2),M(9,3),M(9,4),M(9,5),M(9,6),M(9,7),M(9,8),M(9,9),M(9,10),M(9,11),M(9,12),M(9,13),M(9,14),M(9,15),M(9,16),M(9,17),M(9,18),M(9,19),M(9,20),M(9,21),M(9,22),M(9,23),M(9,24),M(9,25),M(9,26),M(9,27),M(9,28),M(9,29),M(9,30),M(9,31),
-M(10,1),M(10,2),M(10,3),M(10,4),M(10,5),M(10,6),M(10,7),M(10,8),M(10,9),M(10,10),M(10,11),M(10,12),M(10,13),M(10,14),M(10,15),M(10,16),M(10,17),M(10,18),M(10,19),M(10,20),M(10,21),M(10,22),M(10,23),M(10,24),M(10,25),M(10,26),M(10,27),M(10,28),M(10,29),M(10,30),
-M(11,1),M(11,2),M(11,3),M(11,4),M(11,5),M(11,6),M(11,7),M(11,8),M(11,9),M(11,10),M(11,11),M(11,12),M(11,13),M(11,14),M(11,15),M(11,16),M(11,17),M(11,18),M(11,19),M(11,20),M(11,21),M(11,22),M(11,23),M(11,24),M(11,25),M(11,26),M(11,27),M(11,28),M(11,29),M(11,30),M(11,31),
-};
-#undef M
-
-enum {
-	ACCUM_JAN = 0,
-	ACCUM_FEB = ACCUM_JAN + 31,
-	ACCUM_MAR = ACCUM_FEB + 29,
-	ACCUM_APR = ACCUM_MAR + 31,
-	ACCUM_MAY = ACCUM_APR + 30,
-	ACCUM_JUN = ACCUM_MAY + 31,
-	ACCUM_JUL = ACCUM_JUN + 30,
-	ACCUM_AUG = ACCUM_JUL + 31,
-	ACCUM_SEP = ACCUM_AUG + 31,
-	ACCUM_OCT = ACCUM_SEP + 30,
-	ACCUM_NOV = ACCUM_OCT + 31,
-	ACCUM_DEC = ACCUM_NOV + 30,
-};
-
-static const uint16 _accum_days_for_month[] = {
-	ACCUM_JAN,ACCUM_FEB,ACCUM_MAR,ACCUM_APR,
-	ACCUM_MAY,ACCUM_JUN,ACCUM_JUL,ACCUM_AUG,
-	ACCUM_SEP,ACCUM_OCT,ACCUM_NOV,ACCUM_DEC,
-};
-
-
-void ConvertDayToYMD(YearMonthDay *ymd, uint16 date)
-{
-	uint yr = date / (365+365+365+366);
-	uint rem = date % (365+365+365+366);
-	uint x;
-
-	yr *= 4;
-
-	if (rem >= 366) {
-		rem--;
-		do {
-			rem -= 365;
-			yr++;
-		} while (rem >= 365);
-		if (rem >= 31+28) rem++;
-	}
-
-	ymd->year = yr;
-
-	x = _month_date_from_year_day[rem];
-	ymd->month = x >> 5;
-	ymd->day = x & 0x1F;
-}
-
-// year is a number between 0..?
-// month is a number between 0..11
-// day is a number between 1..31
-uint ConvertYMDToDay(uint year, uint month, uint day)
-{
-	uint rem;
-
-	// day in the year
-	rem = _accum_days_for_month[month] + day - 1;
-
-	// remove feb 29 from year 1,2,3
-	if (year & 3) rem += (year & 3) * 365 + (rem < 31+29);
-
-	// base date.
-	return (year >> 2) * (365+365+365+366) + rem;
-}
-
-// convert a date on the form
-// 1920 - 2090 (MAX_YEAR_END_REAL)
-// 192001 - 209012
-// 19200101 - 20901231
-// or if > 2090 and below 65536, treat it as a daycount
-// returns -1 if no conversion was possible
-uint ConvertIntDate(uint date)
-{
-	uint year, month = 0, day = 1;
-
-	if (IS_INT_INSIDE(date, 1920, MAX_YEAR_END_REAL + 1)) {
-		year = date - 1920;
-	} else if (IS_INT_INSIDE(date, 192001, 209012+1)) {
-		month = date % 100 - 1;
-		year = date / 100 - 1920;
-	} else if (IS_INT_INSIDE(date, 19200101, 20901231+1)) {
-		day = date % 100; date /= 100;
-		month = date % 100 - 1;
-		year = date / 100 - 1920;
-	} else if (IS_INT_INSIDE(date, 2091, 65536)) {
-		return date;
-	} else {
-		return (uint)-1;
-	}
-
-	// invalid ranges?
-	if (month >= 12 || !IS_INT_INSIDE(day, 1, 31+1)) return (uint)-1;
-
-	return ConvertYMDToDay(year, month, day);
-}
-
-
 // Calculate constants that depend on the landscape type.
 void InitializeLandscapeVariables(bool only_constants)
 {
@@ -422,156 +293,6 @@
 }
 
 
-void OnNewDay_Train(Vehicle *v);
-void OnNewDay_RoadVeh(Vehicle *v);
-void OnNewDay_Aircraft(Vehicle *v);
-void OnNewDay_Ship(Vehicle *v);
-static void OnNewDay_EffectVehicle(Vehicle *v) { /* empty */ }
-void OnNewDay_DisasterVehicle(Vehicle *v);
-
-typedef void OnNewVehicleDayProc(Vehicle *v);
-
-static OnNewVehicleDayProc * _on_new_vehicle_day_proc[] = {
-	OnNewDay_Train,
-	OnNewDay_RoadVeh,
-	OnNewDay_Ship,
-	OnNewDay_Aircraft,
-	OnNewDay_EffectVehicle,
-	OnNewDay_DisasterVehicle,
-};
-
-void EnginesDailyLoop(void);
-void DisasterDailyLoop(void);
-void PlayersMonthlyLoop(void);
-void EnginesMonthlyLoop(void);
-void TownsMonthlyLoop(void);
-void IndustryMonthlyLoop(void);
-void StationMonthlyLoop(void);
-
-void PlayersYearlyLoop(void);
-void TrainsYearlyLoop(void);
-void RoadVehiclesYearlyLoop(void);
-void AircraftYearlyLoop(void);
-void ShipsYearlyLoop(void);
-
-void WaypointsDailyLoop(void);
-
-
-static const uint16 _autosave_months[] = {
-	0, // never
-	0xFFF, // every month
-	0x249, // every 3 months
-	0x041, // every 6 months
-	0x001, // every 12 months
-};
-
-/**
- * Runs the day_proc for every DAY_TICKS vehicle starting at daytick.
- */
-static void RunVehicleDayProc(uint daytick)
-{
-	uint total = _vehicle_pool.total_items;
-	uint i;
-
-	for (i = daytick; i < total; i += DAY_TICKS) {
-		Vehicle* v = GetVehicle(i);
-
-		if (v->type != 0) _on_new_vehicle_day_proc[v->type - 0x10](v);
-	}
-}
-
-void IncreaseDate(void)
-{
-	YearMonthDay ymd;
-
-	if (_game_mode == GM_MENU) {
-		_tick_counter++;
-		return;
-	}
-
-	RunVehicleDayProc(_date_fract);
-
-	/* increase day, and check if a new day is there? */
-	_tick_counter++;
-
-	_date_fract++;
-	if (_date_fract < DAY_TICKS) return;
-	_date_fract = 0;
-
-	/* yeah, increse day counter and call various daily loops */
-	_date++;
-
-	TextMessageDailyLoop();
-
-	DisasterDailyLoop();
-	WaypointsDailyLoop();
-
-	if (_game_mode != GM_MENU) {
-		InvalidateWindowWidget(WC_STATUS_BAR, 0, 0);
-		EnginesDailyLoop();
-	}
-
-	/* check if we entered a new month? */
-	ConvertDayToYMD(&ymd, _date);
-	if ((byte)ymd.month == _cur_month)
-		return;
-	_cur_month = ymd.month;
-
-	/* yes, call various monthly loops */
-	if (_game_mode != GM_MENU) {
-		if (HASBIT(_autosave_months[_opt.autosave], _cur_month)) {
-			_do_autosave = true;
-			RedrawAutosave();
-		}
-
-		PlayersMonthlyLoop();
-		EnginesMonthlyLoop();
-		TownsMonthlyLoop();
-		IndustryMonthlyLoop();
-		StationMonthlyLoop();
-#ifdef ENABLE_NETWORK
-		if (_network_server) NetworkServerMonthlyLoop();
-#endif /* ENABLE_NETWORK */
-	}
-
-	/* check if we entered a new year? */
-	if ((byte)ymd.year == _cur_year)
-		return;
-	_cur_year = ymd.year;
-
-	/* yes, call various yearly loops */
-
-	PlayersYearlyLoop();
-	TrainsYearlyLoop();
-	RoadVehiclesYearlyLoop();
-	AircraftYearlyLoop();
-	ShipsYearlyLoop();
-#ifdef ENABLE_NETWORK
-	if (_network_server) NetworkServerYearlyLoop();
-#endif /* ENABLE_NETWORK */
-
-	/* check if we reached end of the game (31 dec 2050) */
-	if (_cur_year == _patches.ending_date - MAX_YEAR_BEGIN_REAL) {
-			ShowEndGameChart();
-	/* check if we reached 2090 (MAX_YEAR_END_REAL), that's the maximum year. */
-	} else if (_cur_year == (MAX_YEAR_END + 1)) {
-		Vehicle* v;
-
-		_cur_year = MAX_YEAR_END;
-		_date = 62093;
-		FOR_ALL_VEHICLES(v) {
-			v->date_of_last_service -= 365; // 1 year is 365 days long
-		}
-
-		/* Because the _date wraps here, and text-messages expire by game-days, we have to clean out
-		 *  all of them if the date is set back, else those messages will hang for ever */
-		InitTextMessage();
-	}
-
-	if (_patches.auto_euro) CheckSwitchToEuro();
-
-	/* XXX: check if year 2050 was reached */
-}
 
 int FindFirstBit(uint32 value)
 {
--- a/misc_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/misc_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -26,6 +26,7 @@
 #include "variables.h"
 #include "vehicle.h"
 #include "train.h"
+#include "date.h"
 
 #include "fios.h"
 /* Variables to display file lists */
--- a/network.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/network.c	Mon Aug 14 14:21:15 2006 +0000
@@ -10,6 +10,7 @@
 #include "network_data.h"
 #include "command.h"
 #include "variables.h"
+#include "date.h"
 
 #if defined(WITH_REV)
 	extern const char _openttd_revision[];
--- a/network_client.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/network_client.c	Mon Aug 14 14:21:15 2006 +0000
@@ -5,6 +5,7 @@
 #include "string.h"
 #include "strings.h"
 #include "network_data.h"
+#include "date.h"
 
 #ifdef ENABLE_NETWORK
 
--- a/network_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/network_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -6,6 +6,7 @@
 #include "strings.h"
 #include "table/sprites.h"
 #include "network.h"
+#include "date.h"
 
 #include "fios.h"
 
--- a/network_server.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/network_server.c	Mon Aug 14 14:21:15 2006 +0000
@@ -6,6 +6,7 @@
 #include "strings.h"
 #include "network_data.h"
 #include "train.h"
+#include "date.h"
 
 #ifdef ENABLE_NETWORK
 
--- a/network_udp.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/network_udp.c	Mon Aug 14 14:21:15 2006 +0000
@@ -4,6 +4,7 @@
 #include "debug.h"
 #include "string.h"
 #include "network_data.h"
+#include "date.h"
 
 #ifdef ENABLE_NETWORK
 
--- a/newgrf_engine.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/newgrf_engine.c	Mon Aug 14 14:21:15 2006 +0000
@@ -16,6 +16,7 @@
 #include "newgrf_station.h"
 #include "newgrf_spritegroup.h"
 #include "newgrf_cargo.h"
+#include "date.h"
 
 
 
--- a/newgrf_spritegroup.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/newgrf_spritegroup.c	Mon Aug 14 14:21:15 2006 +0000
@@ -6,6 +6,7 @@
 #include "macros.h"
 #include "pool.h"
 #include "newgrf_spritegroup.h"
+#include "date.h"
 
 enum {
 	SPRITEGROUP_POOL_BLOCK_SIZE_BITS = 4, /* (1 << 4) == 16 items */
--- a/newgrf_station.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/newgrf_station.c	Mon Aug 14 14:21:15 2006 +0000
@@ -15,6 +15,7 @@
 #include "newgrf_callbacks.h"
 #include "newgrf_station.h"
 #include "newgrf_spritegroup.h"
+#include "date.h"
 
 static StationClass station_classes[STAT_CLASS_MAX];
 
--- a/news_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/news_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -14,6 +14,7 @@
 #include "vehicle.h"
 #include "sound.h"
 #include "variables.h"
+#include "date.h"
 
 /* News system
 News system is realized as a FIFO queue (in an array)
--- a/oldloader.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/oldloader.c	Mon Aug 14 14:21:15 2006 +0000
@@ -18,6 +18,7 @@
 #include "depot.h"
 #include "network.h"
 #include "ai/ai.h"
+#include "date.h"
 
 enum {
 	HEADER_SIZE = 49,
--- a/openttd.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/openttd.c	Mon Aug 14 14:21:15 2006 +0000
@@ -48,6 +48,7 @@
 #include "train.h"
 #include "yapf/yapf.h"
 #include "settings.h"
+#include "date.h"
 
 #include <stdarg.h>
 
--- a/openttd.h	Mon Aug 14 11:44:19 2006 +0000
+++ b/openttd.h	Mon Aug 14 14:21:15 2006 +0000
@@ -30,23 +30,6 @@
 	byte		owner;
 } SortStruct;
 
-typedef struct YearMonthDay {
-	int year, month, day;
-} YearMonthDay;
-
-/* --- 1 Day is 74 ticks ---
-* The game's internal structure is dictated by ticks. The date counter (date_fract) is an integer of
-* uint16 type, so it can have a max value of 65536. Every tick this variable (date_fract) is
-* increased by 885. When it overflows, the new day loop is called.
-* * this that means 1 day is : 65536 / 885 = 74 ticks
-* * 1 tick is approximately 27ms.
-* * 1 day is thus about 2 seconds (74*27 = 1998) on a machine that can run OpenTTD normally
-*/
-#define DAY_TICKS 74
-#define MAX_YEAR_BEGIN_REAL 1920
-#define MAX_YEAR_END_REAL 2090
-#define MAX_YEAR_END 170
-
 #include "map.h"
 #include "slope.h"
 
@@ -78,6 +61,9 @@
 typedef uint32 WindowNumber;
 typedef byte WindowClass;
 
+typedef uint8  Year;
+typedef uint32 Date;
+
 
 enum GameModes {
 	GM_MENU,
--- a/openttd.vcproj	Mon Aug 14 11:44:19 2006 +0000
+++ b/openttd.vcproj	Mon Aug 14 14:21:15 2006 +0000
@@ -184,6 +184,9 @@
 				RelativePath=".\currency.c">
 			</File>
 			<File
+				RelativePath=".\date.c">
+			</File>
+			<File
 				RelativePath=".\debug.c">
 			</File>
 			<File
@@ -431,6 +434,9 @@
 				RelativePath=".\currency.h">
 			</File>
 			<File
+				RelativePath=".\date.h">
+			</File>
+			<File
 				RelativePath=".\debug.h">
 			</File>
 			<File
--- a/openttd_vs80.vcproj	Mon Aug 14 11:44:19 2006 +0000
+++ b/openttd_vs80.vcproj	Mon Aug 14 14:21:15 2006 +0000
@@ -477,6 +477,10 @@
 				>
 			</File>
 			<File
+				RelativePath=".\date.c"
+				>
+			</File>
+			<File
 				RelativePath=".\debug.c"
 				>
 			</File>
@@ -864,6 +868,10 @@
 				>
 			</File>
 			<File
+				RelativePath=".\date.h"
+				>
+			</File>
+			<File
 				RelativePath=".\debug.h"
 				>
 			</File>
--- a/player_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/player_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -16,6 +16,7 @@
 #include "network.h"
 #include "variables.h"
 #include "train.h"
+#include "date.h"
 
 #ifdef ENABLE_NETWORK
 #include "network_data.h"
--- a/players.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/players.c	Mon Aug 14 14:21:15 2006 +0000
@@ -25,6 +25,7 @@
 #include "variables.h"
 #include "engine.h"
 #include "ai/ai.h"
+#include "date.h"
 
 static const SpriteID cheeks_table[4] = {
 	0x325, 0x326,
--- a/roadveh_cmd.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/roadveh_cmd.c	Mon Aug 14 14:21:15 2006 +0000
@@ -27,6 +27,7 @@
 #include "newgrf_engine.h"
 #include "newgrf_text.h"
 #include "yapf/yapf.h"
+#include "date.h"
 
 static const uint16 _roadveh_images[63] = {
 	0xCD4, 0xCDC, 0xCE4, 0xCEC, 0xCF4, 0xCFC, 0xD0C, 0xD14,
--- a/roadveh_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/roadveh_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -20,6 +20,7 @@
 #include "depot.h"
 #include "vehicle_gui.h"
 #include "newgrf_engine.h"
+#include "date.h"
 
 /**
  * Draw the purchase info details of road vehicle at a given location.
--- a/screenshot.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/screenshot.c	Mon Aug 14 14:21:15 2006 +0000
@@ -12,6 +12,7 @@
 #include "player.h"
 #include "screenshot.h"
 #include "variables.h"
+#include "date.h"
 
 char _screenshot_format_name[8];
 uint _num_screenshot_formats;
--- a/settings.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/settings.c	Mon Aug 14 14:21:15 2006 +0000
@@ -36,6 +36,7 @@
 #include "npf.h"
 #include "yapf/yapf.h"
 #include "newgrf.h"
+#include "date.h"
 
 /** The patch values that are used for new games and/or modified in config file */
 Patches _patches_newgame;
--- a/settings_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/settings_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -20,6 +20,7 @@
 #include "variables.h"
 #include "settings.h"
 #include "vehicle.h"
+#include "date.h"
 
 static uint32 _difficulty_click_a;
 static uint32 _difficulty_click_b;
--- a/ship_cmd.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/ship_cmd.c	Mon Aug 14 14:21:15 2006 +0000
@@ -25,6 +25,7 @@
 #include "debug.h"
 #include "newgrf_callbacks.h"
 #include "newgrf_text.h"
+#include "date.h"
 
 static const uint16 _ship_sprites[] = {0x0E5D, 0x0E55, 0x0E65, 0x0E6D};
 static const byte _ship_sometracks[4] = {0x19, 0x16, 0x25, 0x2A};
--- a/ship_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/ship_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -20,6 +20,7 @@
 #include "depot.h"
 #include "vehicle_gui.h"
 #include "newgrf_engine.h"
+#include "date.h"
 
 /**
  * Draw the purchase info details of a ship at a given location.
--- a/station_cmd.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/station_cmd.c	Mon Aug 14 14:21:15 2006 +0000
@@ -32,6 +32,7 @@
 #include "newgrf_callbacks.h"
 #include "newgrf_station.h"
 #include "yapf/yapf.h"
+#include "date.h"
 
 enum {
 	/* Max stations: 64000 (64 * 1000) */
--- a/station_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/station_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -16,6 +16,7 @@
 #include "command.h"
 #include "variables.h"
 #include "vehicle_gui.h"
+#include "date.h"
 
 typedef int CDECL StationSortListingTypeFunction(const void*, const void*);
 
--- a/strings.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/strings.c	Mon Aug 14 14:21:15 2006 +0000
@@ -19,6 +19,7 @@
 #include "newgrf_text.h"
 #include "table/landscape_const.h"
 #include "music.h"
+#include "date.h"
 
 #ifdef WIN32
 /* for opendir/readdir/closedir */
--- a/subsidy_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/subsidy_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -12,6 +12,7 @@
 #include "gfx.h"
 #include "economy.h"
 #include "variables.h"
+#include "date.h"
 
 static void HandleSubsidyClick(int y)
 {
--- a/texteff.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/texteff.c	Mon Aug 14 14:21:15 2006 +0000
@@ -13,6 +13,7 @@
 #include "variables.h"
 #include "table/sprites.h"
 #include <stdarg.h> /* va_list */
+#include "date.h"
 
 typedef struct TextEffect {
 	StringID string_id;
--- a/town_cmd.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/town_cmd.c	Mon Aug 14 14:21:15 2006 +0000
@@ -26,6 +26,7 @@
 #include "water_map.h"
 #include "variables.h"
 #include "bridge.h"
+#include "date.h"
 #include "table/town_land.h"
 
 enum {
--- a/train_cmd.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/train_cmd.c	Mon Aug 14 14:21:15 2006 +0000
@@ -30,6 +30,7 @@
 #include "newgrf_text.h"
 #include "direction.h"
 #include "yapf/yapf.h"
+#include "date.h"
 
 static bool TrainCheckIfLineEnds(Vehicle *v);
 static void TrainController(Vehicle *v);
--- a/train_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/train_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -21,6 +21,7 @@
 #include "depot.h"
 #include "train.h"
 #include "newgrf_engine.h"
+#include "date.h"
 
 /**
  * Draw the purchase info details of train engine at a given location.
--- a/tunnelbridge_cmd.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/tunnelbridge_cmd.c	Mon Aug 14 14:21:15 2006 +0000
@@ -27,6 +27,7 @@
 #include "train.h"
 #include "water_map.h"
 #include "yapf/yapf.h"
+#include "date.h"
 
 #include "table/bridge_land.h"
 
--- a/variables.h	Mon Aug 14 11:44:19 2006 +0000
+++ b/variables.h	Mon Aug 14 14:21:15 2006 +0000
@@ -39,10 +39,6 @@
 // Pointer to one of the two _opt OR _opt_newgame structs
 VARDEF GameOptions *_opt_ptr;
 
-// Current date
-VARDEF uint16 _date;
-VARDEF uint16 _date_fract;
-
 // Amount of game ticks
 VARDEF uint16 _tick_counter;
 
@@ -257,10 +253,6 @@
 VARDEF int _timer_counter;
 
 
-// NOSAVE: can be determined from _date
-VARDEF byte _cur_year;
-VARDEF byte _cur_month;
-
 VARDEF uint32 _frame_counter;
 
 VARDEF bool _is_old_ai_player; // current player is an oldAI player? (enables a lot of cheats..)
--- a/vehicle.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/vehicle.c	Mon Aug 14 14:21:15 2006 +0000
@@ -31,6 +31,7 @@
 #include "water_map.h"
 #include "network.h"
 #include "yapf/yapf.h"
+#include "date.h"
 
 #define INVALID_COORD (-0x8000)
 #define GEN_HASH(x, y) ((GB((y), 6, 6) << 6) + GB((x), 7, 6))
--- a/vehicle_gui.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/vehicle_gui.c	Mon Aug 14 14:21:15 2006 +0000
@@ -22,6 +22,7 @@
 #include "newgrf_callbacks.h"
 #include "newgrf_engine.h"
 #include "newgrf_text.h"
+#include "date.h"
 
 Sorting _sorting;
 
--- a/waypoint.c	Mon Aug 14 11:44:19 2006 +0000
+++ b/waypoint.c	Mon Aug 14 14:21:15 2006 +0000
@@ -18,6 +18,7 @@
 #include "table/strings.h"
 #include "vehicle.h"
 #include "yapf/yapf.h"
+#include "date.h"
 
 enum {
 	/* Max waypoints: 64000 (8 * 8000) */
--- a/yapf/yapf.hpp	Mon Aug 14 11:44:19 2006 +0000
+++ b/yapf/yapf.hpp	Mon Aug 14 14:21:15 2006 +0000
@@ -16,7 +16,7 @@
 #include "../station.h"
 #include "../station_map.h"
 #include "../vehicle.h"
-#include "../variables.h"
+#include "../date.h"
 #include "../functions.h"
 #include "yapf.h"
 #include "../pathfind.h"