Changeset - r4130:f81353ba65a4
[Not reviewed]
master
0 1 0
KUDr - 18 years ago 2006-07-11 19:04:50
kudr@openttd.org
(svn r5483) -Fix: [YAPF] desync - for MP games invalidate YAPF cache on every tick to keep it exactly the same on server and clients (it doesn't fix the real source of the problem, but should solve it). Thanks TrueLight for hunting this bug.
1 file changed with 10 insertions and 0 deletions:
0 comments (0 inline, 0 general)
vehicle.c
Show inline comments
 
@@ -26,12 +26,14 @@
 
#include "station.h"
 
#include "rail.h"
 
#include "train.h"
 
#include "industry_map.h"
 
#include "station_map.h"
 
#include "water_map.h"
 
#include "network.h"
 
#include "yapf/yapf.h"
 

	
 
#define INVALID_COORD (-0x8000)
 
#define GEN_HASH(x,y) (((x & 0x1F80)>>7) + ((y & 0xFC0)))
 

	
 
/*
 
 *	These command macros are used to call vehicle type specific commands with non type specific commands
 
@@ -608,12 +610,20 @@ static VehicleTickProc* _vehicle_tick_pr
 
};
 

	
 
void CallVehicleTicks(void)
 
{
 
	Vehicle *v;
 

	
 
#ifdef ENABLE_NETWORK
 
	// hotfix for desync problem:
 
	//  for MP games invalidate the YAPF cache every tick to keep it exactly the same on the server and all clients
 
	if (_networking) {
 
		YapfNotifyTrackLayoutChange(0, 0);
 
	}
 
#endif //ENABLE_NETWORK
 

	
 
	_first_veh_in_depot_list = NULL;	// now we are sure it's initialized at the start of each tick
 

	
 
	FOR_ALL_VEHICLES(v) {
 
		if (v->type != 0) {
 
			_vehicle_tick_procs[v->type - 0x10](v);
 
		}
0 comments (0 inline, 0 general)