summaryrefslogtreecommitdiff
path: root/src/bridge.h
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2008-02-12 03:05:27 +0000
committerbelugas <belugas@openttd.org>2008-02-12 03:05:27 +0000
commitf4334301e89b0dfcaace437de6202764e5f9b537 (patch)
tree1f3b08c93867a3ece67fea36d353dcbdb2385576 /src/bridge.h
parentb0b929ce4258e70fd0482a4bf9b1fac8330edcfe (diff)
downloadopenttd-f4334301e89b0dfcaace437de6202764e5f9b537.tar.xz
(svn r12118) -Codechange: Put the two descriptions of bridges in an array instead of two single variables, following the transport type it represents
Diffstat (limited to 'src/bridge.h')
-rw-r--r--src/bridge.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/bridge.h b/src/bridge.h
index fde98f57e..af41be59f 100644
--- a/src/bridge.h
+++ b/src/bridge.h
@@ -18,18 +18,17 @@ typedef uint BridgeType;
/** Struct containing information about a single bridge type
*/
struct BridgeSpec {
- Year avail_year; ///< the year where it becomes available
- byte min_length; ///< the minimum length (not counting start and end tile)
- byte max_length; ///< the maximum length (not counting start and end tile)
- uint16 price; ///< the price multiplier
- uint16 speed; ///< maximum travel speed
- SpriteID sprite; ///< the sprite which is used in the GUI
- SpriteID pal; ///< the palette which is used in the GUI
- StringID material; ///< the string that contains the bridge description
- StringID name_rail; ///< description of the bridge, when built for road
- StringID name_road; ///< description of the bridge, when built for road
- PalSpriteID **sprite_table; ///< table of sprites for drawing the bridge
- byte flags; ///< bit 0 set: disable drawing of far pillars.
+ Year avail_year; ///< the year where it becomes available
+ byte min_length; ///< the minimum length (not counting start and end tile)
+ byte max_length; ///< the maximum length (not counting start and end tile)
+ uint16 price; ///< the price multiplier
+ uint16 speed; ///< maximum travel speed
+ SpriteID sprite; ///< the sprite which is used in the GUI
+ SpriteID pal; ///< the palette which is used in the GUI
+ StringID material; ///< the string that contains the bridge description
+ StringID transport_name[2]; ///< description of the bridge, when built for road or rail
+ PalSpriteID **sprite_table; ///< table of sprites for drawing the bridge
+ byte flags; ///< bit 0 set: disable drawing of far pillars.
};
extern BridgeSpec _bridge[MAX_BRIDGES];