Changeset - r7:220f9421806f
[Not reviewed]
master
0 2 0
dominik - 20 years ago 2004-08-10 16:12:40
dominik@openttd.org
(svn r8) Fix: Automatic oil refinery generation in editor
2 files changed with 12 insertions and 0 deletions:
0 comments (0 inline, 0 general)
industry_cmd.c
Show inline comments
 
@@ -1110,9 +1110,15 @@ static bool CheckNewIndustry_Forest(uint
 
	return true;
 
}
 

	
 
extern bool _ignore_restrictions;
 

	
 
static bool CheckNewIndustry_Oilwell(uint tile, int type)
 
{
 
	int x,y;
 
	
 
	if(_ignore_restrictions && _game_mode == GM_EDITOR)
 
		return true;
 

	
 
	if (type != IT_OIL_RIG && _game_mode == GM_EDITOR)
 
		return true;
 

	
main_gui.c
Show inline comments
 
@@ -1437,6 +1437,8 @@ static bool TryBuildIndustry(TileIndex t
 
{
 
	int n;
 

	
 
	if (CreateNewIndustry(tile, type)) return true;
 

	
 
	n = 100;
 
	do {
 
		if (CreateNewIndustry(AdjustTileCoordRandomly(tile, 1), type)) return true;
 
@@ -1463,6 +1465,8 @@ static const byte _industry_type_list[4]
 
	{26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36},
 
};
 

	
 
bool _ignore_restrictions;
 

	
 
static void ScenEditIndustryWndProc(Window *w, WindowEvent *e)
 
{
 
	int button;
 
@@ -1504,10 +1508,12 @@ static void ScenEditIndustryWndProc(Wind
 

	
 
		_current_player = OWNER_NONE;
 
		_generating_world = true;
 
		_ignore_restrictions = true;
 
		if (!TryBuildIndustry(e->place.tile,type)) {
 
			SET_DPARAM16(0, type + STR_4802_COAL_MINE);
 
			ShowErrorMessage(_error_message, STR_0285_CAN_T_BUILD_HERE,e->place.pt.x, e->place.pt.y);
 
		}
 
		_ignore_restrictions = false;
 
		_generating_world = false;
 
		break;
 
	}
0 comments (0 inline, 0 general)