Changeset - r2638:b196eca705d7
[Not reviewed]
master
0 2 0
tron - 19 years ago 2005-11-14 15:22:12
tron@openttd.org
(svn r3180) Replace some magic numbers by symbolic names
2 files changed with 12 insertions and 7 deletions:
0 comments (0 inline, 0 general)
industry_cmd.c
Show inline comments
 
@@ -1571,11 +1571,16 @@ int32 CmdBuildIndustry(int x, int y, uin
 
	}
 

	
 
	spec = &_industry_spec[p1];
 
	/* If the patch for non-raw-material industries is not on, you cannot build raw-material industries.
 
	/* If the patch for raw-material industries is not on, you cannot build raw-material industries.
 
	 * Raw material industries are industries that do not accept cargo (at least for now)
 
	 * Exclude industry 25, which is the lumber mill (only "raw" industry that can be built)*/
 
	if (!_patches.build_rawmaterial_ind && spec->accepts_cargo[0] == 255 &&
 
		  spec->accepts_cargo[1] == 255 && spec->accepts_cargo[2] == 255 && p1 != 25) return CMD_ERROR;
 
	 * Exclude the lumber mill (only "raw" industry that can be built) */
 
	if (!_patches.build_rawmaterial_ind &&
 
			spec->accepts_cargo[0] == CT_INVALID &&
 
			spec->accepts_cargo[1] == CT_INVALID &&
 
			spec->accepts_cargo[2] == CT_INVALID &&
 
			p1 != IT_LUMBER_MILL) {
 
		return CMD_ERROR;
 
	}
 

	
 
	if (!_check_new_industry_procs[spec->check_proc](tile, p1)) return CMD_ERROR;
 

	
 
@@ -1631,7 +1636,7 @@ Industry *CreateNewIndustry(TileIndex ti
 
	if ( (i = AllocateIndustry()) == NULL)
 
		return NULL;
 

	
 
	DoCreateNewIndustry(i, tile, type, it, t, 0x10);
 
	DoCreateNewIndustry(i, tile, type, it, t, OWNER_NONE);
 

	
 
	return i;
 
}
 
@@ -1697,7 +1702,7 @@ static void ExtChangeIndustryProduction(
 
			break;
 

	
 
		default: /* INDUSTRY_PRODUCTION */
 
			for (j = 0; j < 2 && i->produced_cargo[j] != 255; j++){
 
			for (j = 0; j < 2 && i->produced_cargo[j] != CT_INVALID; j++){
 
				uint32 r = Random();
 
				int old, new, percent;
 
				int mag;
station_gui.c
Show inline comments
 
@@ -392,7 +392,7 @@ static void DrawStationViewWindow(Window
 
				y += 10;
 
			}
 
		}
 
	} while (pos > -5 && ++i != 12);
 
	} while (pos > -5 && ++i != NUM_CARGO);
 

	
 
	if (IsWindowOfPrototype(w, _station_view_widgets)) {
 
		char *b = _userstring;
0 comments (0 inline, 0 general)