From 0a88e202e5e20b0e5acc58f31de14a020beb88e0 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 3 Dec 2006 23:46:54 +0000 Subject: (svn r7345) -Codechange: enumification of NewGRF loading stage, and move enum definition to header for future use. --- newgrf.c | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) (limited to 'newgrf.c') diff --git a/newgrf.c b/newgrf.c index 70f816cf4..d4a6d78f1 100644 --- a/newgrf.c +++ b/newgrf.c @@ -49,7 +49,7 @@ static GRFFile *_cur_grffile; 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 @@ static byte *_preload_sprite = NULL; 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 @@ static void GRFError(byte *buf, int len) 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 @@ static void ParamSet(byte *buf, int len) 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 DecodeSpecialSprite(uint num, GrfLoadingStage stage) } -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 @@ static void LoadNewGRFFile(const char* filename, uint file_index, uint stage) * 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; -- cgit v1.2.3-70-g09d2