(svn r7345) -Codechange: enumification of NewGRF loading stage, and move enum definition to header for future use.
authorpeter1138
Sun, 03 Dec 2006 23:46:54 +0000
changeset 5225 52ddcedcc6f7
parent 5224 ddab137de945
child 5226 fce4834d4201
(svn r7345) -Codechange: enumification of NewGRF loading stage, and move enum definition to header for future use.
newgrf.c
newgrf.h
--- a/newgrf.c	Sun Dec 03 20:03:40 2006 +0000
+++ b/newgrf.c	Sun Dec 03 23:46:54 2006 +0000
@@ -49,7 +49,7 @@
 GRFFile *_first_grffile;
 GRFConfig *_first_grfconfig;
 static SpriteID _cur_spriteid;
-static int _cur_stage;
+static GrfLoadingStage _cur_stage;
 static uint32 _nfo_line;
 
 /* Miscellaneous GRF features, set by Action 0x0D, parameter 0x9E */
@@ -65,14 +65,6 @@
 bool _have_2cc = false;
 
 
-typedef enum GrfLoadingStage {
-	GLS_LABELSCAN,
-	GLS_INIT,
-	GLS_ACTIVATION,
-	GLS_END,
-} GrfLoadingStage;
-
-
 typedef enum GrfDataType {
 	GDT_SOUND,
 } GrfDataType;
@@ -2554,7 +2546,7 @@
 	msgid = buf[3];
 
 	// Undocumented TTDPatch feature.
-	if ((severity & 0x80) == 0 && _cur_stage < 2) {
+	if ((severity & 0x80) == 0 && _cur_stage < GLS_ACTIVATION) {
 		DEBUG(grf, 7) ("Skipping non-fatal GRFError in stage 1");
 		return;
 	}
@@ -2645,7 +2637,7 @@
 				return;
 			} else {
 				/* GRF Resource Management */
-				if (_cur_stage != 2) {
+				if (_cur_stage != GLS_ACTIVATION) {
 					/* Ignore GRM during initialization */
 					src1 = 0;
 				} else {
@@ -3528,7 +3520,7 @@
 }
 
 
-static void LoadNewGRFFile(const char* filename, uint file_index, uint stage)
+static void LoadNewGRFFile(const char *filename, uint file_index, GrfLoadingStage stage)
 {
 	uint16 num;
 
@@ -3541,7 +3533,7 @@
 	 * During activation, only actions 0, 1, 2, 3, 4, 5, 7, 8, 9, 0A and 0B are
 	 * carried out.  All others are ignored, because they only need to be
 	 * processed once at initialization.  */
-	if (stage != 0) {
+	if (stage != GLS_LABELSCAN) {
 		_cur_grffile = GetFileByFilename(filename);
 		if (_cur_grffile == NULL) error("File ``%s'' lost in cache.\n", filename);
 		if (stage > 1 && !(_cur_grffile->flags & 0x0001)) return;
--- a/newgrf.h	Sun Dec 03 20:03:40 2006 +0000
+++ b/newgrf.h	Sun Dec 03 23:46:54 2006 +0000
@@ -5,6 +5,13 @@
 
 #include "station.h"
 
+typedef enum GrfLoadingStage {
+	GLS_LABELSCAN,
+	GLS_INIT,
+	GLS_ACTIVATION,
+	GLS_END,
+} GrfLoadingStage;
+
 typedef struct GRFLabel {
 	byte label;
 	uint32 nfo_line;