table/directions.h
author bjarni
Sun, 02 Jan 2005 17:23:04 +0000
changeset 842 ebfd36603ab9
parent 160 db200af4794a
permissions -rw-r--r--
(svn r1323) Adding autoreplace feature
This feature works much like autorenew, but it will get you a new engine type instead of a new one of the same type. Once
ordered, it will automatically replace the engines while they visits a depot. The GUI for setting this up have been added on the
vehicle overview windows
Note: autorenew is now autoreplace, but to the same engine type
Nice new features, that was added to make this possible
- windows can now have two independant vertical scrollbars
- CMD_SHOW_NO_ERROR have been added as a flag for DoCommandP. It will make it do the action instead of showing the red box with
estimated costs even if shift is pressed
- fixed problem where enginetypes where not initialized when loading a game. It's now done in InitializeGame()
160
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     1
static const byte _dir_to_straight_trackdir[4] = {
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     2
	0, 1, 8, 9,
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     3
};
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     4
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     5
static const byte _reverse_dir[4] = {
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     6
//	3, 0, 1, 2
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     7
	2, 3, 0, 1
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     8
};