summaryrefslogtreecommitdiff
path: root/smallmap_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-02-01 15:31:21 +0000
committertron <tron@openttd.org>2006-02-01 15:31:21 +0000
commitac4f4e30d59aa3661128d51e2a34b7d0a4958de8 (patch)
tree4e04e1c3dec5248c24a59e01843c70d577ff6f1a /smallmap_gui.c
parent2b9850969279c76e1739c432854121b0e6d4070f (diff)
downloadopenttd-ac4f4e30d59aa3661128d51e2a34b7d0a4958de8.tar.xz
(svn r3514) -Codechange: Replace direct fiddling of bits for the ground type and density of clear tiles with symbolic names and accessors.
See clear.h for details
Diffstat (limited to 'smallmap_gui.c')
-rw-r--r--smallmap_gui.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/smallmap_gui.c b/smallmap_gui.c
index 60a19d5cc..69bd6ab8d 100644
--- a/smallmap_gui.c
+++ b/smallmap_gui.c
@@ -2,6 +2,7 @@
#include "stdafx.h"
#include "openttd.h"
+#include "clear.h"
#include "functions.h"
#include "spritecache.h"
#include "table/strings.h"
@@ -458,12 +459,8 @@ static inline uint32 GetSmallMapRoutesPixels(TileIndex tile)
}
-static const uint32 _vegetation_clear_bits[4 + 7] = {
- MKCOLOR(0x37373737), ///< bare land
- MKCOLOR(0x37373737), ///< 1/3 grass
- MKCOLOR(0x37373737), ///< 2/3 grass
+static const uint32 _vegetation_clear_bits[] = {
MKCOLOR(0x54545454), ///< full grass
-
MKCOLOR(0x52525252), ///< rough land
MKCOLOR(0x0A0A0A0A), ///< rocks
MKCOLOR(0x25252525), ///< fields
@@ -476,14 +473,15 @@ static const uint32 _vegetation_clear_bits[4 + 7] = {
static inline uint32 GetSmallMapVegetationPixels(TileIndex tile)
{
TileType t = GetEffectiveTileType(tile);
- int i;
uint32 bits;
switch (t) {
case MP_CLEAR:
- i = (_m[tile].m5 & 0x1F) - 4;
- if (i >= 0) i >>= 2;
- bits = _vegetation_clear_bits[i + 4];
+ if (IsClearGround(tile, CL_GRASS) && GetClearDensity(tile) < 3) {
+ bits = MKCOLOR(0x37373737);
+ } else {
+ bits = _vegetation_clear_bits[GetClearGround(tile)];
+ }
break;
case MP_INDUSTRY: