From 80c259f64fd38cdb84f2bcb8a146e7ec4a448070 Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 18 Apr 2007 22:10:36 +0000 Subject: (svn r9672) -Cleanup: lots of coding style fixes around operands. --- src/station_cmd.cpp | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'src/station_cmd.cpp') diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 9c6fe88e6..ac5ceadff 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -199,7 +199,7 @@ static bool GenerateStationName(Station *st, TileIndex tile, int flag) Station *s; FOR_ALL_STATIONS(s) { - if (s != st && s->town==t) { + if (s != st && s->town == t) { uint str = M(s->string_id); if (str <= 0x20) { if (str == M(STR_SV_STNAME_FOREST)) @@ -230,7 +230,7 @@ static bool GenerateStationName(Station *st, TileIndex tile, int flag) } /* check close enough to town to get central as name? */ - if (DistanceMax(tile,t->xy) < 8) { + if (DistanceMax(tile, t->xy) < 8) { found = M(STR_SV_STNAME); if (HASBIT(free_names, M(STR_SV_STNAME))) goto done; @@ -272,10 +272,10 @@ static bool GenerateStationName(Station *st, TileIndex tile, int flag) /* check direction compared to town */ { static const int8 _direction_and_table[] = { - ~( (1<xy)) * 2]; } - tmp = free_names & ((1<<1)|(1<<2)|(1<<3)|(1<<4)|(1<<6)|(1<<7)|(1<<12)|(1<<26)|(1<<27)|(1<<28)|(1<<29)|(1<<30)); + tmp = free_names & ((1 << 1) | (1 << 2) | (1 << 3) | (1 << 4) | (1 << 6) | (1 << 7) | (1 << 12) | (1 << 26) | (1 << 27) | (1 << 28) | (1 << 29) | (1 << 30)); if (tmp == 0) { _error_message = STR_3007_TOO_MANY_STATIONS_LOADING; return false; @@ -368,7 +368,7 @@ static void ShowRejectOrAcceptNews(const Station *st, uint num_items, CargoID *c } SetDParam(0, st->index); - AddNewsItem(msg, NEWS_FLAGS(NM_SMALL, NF_VIEWPORT|NF_TILE, NT_ACCEPTANCE, 0), st->xy, 0); + AddNewsItem(msg, NEWS_FLAGS(NM_SMALL, NF_VIEWPORT | NF_TILE, NT_ACCEPTANCE, 0), st->xy, 0); } // Get a list of the cargo types being produced around the tile. @@ -646,10 +646,10 @@ int32 CheckFlatLandBelow(TileIndex tile, uint w, uint h, uint flags, uint invali int flat_z = z; if (tileh != SLOPE_FLAT) { // need to check so the entrance to the station is not pointing at a slope. - if ((invalid_dirs&1 && !(tileh & SLOPE_NE) && (uint)w_cur == w) || - (invalid_dirs&2 && !(tileh & SLOPE_SE) && h_cur == 1) || - (invalid_dirs&4 && !(tileh & SLOPE_SW) && w_cur == 1) || - (invalid_dirs&8 && !(tileh & SLOPE_NW) && (uint)h_cur == h)) { + if ((invalid_dirs & 1 && !(tileh & SLOPE_NE) && (uint)w_cur == w) || + (invalid_dirs & 2 && !(tileh & SLOPE_SE) && h_cur == 1) || + (invalid_dirs & 4 && !(tileh & SLOPE_SW) && w_cur == 1) || + (invalid_dirs & 8 && !(tileh & SLOPE_NW) && (uint)h_cur == h)) { return_cmd_error(STR_0007_FLAT_LAND_REQUIRED); } cost += _price.terraform; @@ -748,7 +748,7 @@ static inline byte *CreateSingle(byte *layout, int n) { int i = n; do *layout++ = 0; while (--i); - layout[((n-1) >> 1)-n] = 2; + layout[((n - 1) >> 1) - n] = 2; return layout; } @@ -757,8 +757,8 @@ static inline byte *CreateMulti(byte *layout, int n, byte b) int i = n; do *layout++ = b; while (--i); if (n > 4) { - layout[0-n] = 0; - layout[n-1-n] = 0; + layout[0 - n] = 0; + layout[n - 1 - n] = 0; } return layout; } @@ -1623,7 +1623,7 @@ static int32 RemoveAirport(Station *st, uint32 flags) DeleteAnimatedTile(tile_cur); DoClearSquare(tile_cur); } - } END_TILE_LOOP(tile_cur, w,h,tile) + } END_TILE_LOOP(tile_cur, w, h, tile) if (flags & DC_EXEC) { for (uint i = 0; i < afc->nof_depots; ++i) { -- cgit v1.2.3-54-g00ecf