summaryrefslogtreecommitdiff
path: root/src/industry.h
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-05-24 01:12:00 +0000
committerbelugas <belugas@openttd.org>2007-05-24 01:12:00 +0000
commitf3cf7f6b2df0a4582cc72e8279272a829714f2e2 (patch)
tree2157f45e0ddf099879b57f6db17368c862cfdbd2 /src/industry.h
parent39016328cc92a50fec27ccf692838c2c4c26088f (diff)
downloadopenttd-f3cf7f6b2df0a4582cc72e8279272a829714f2e2.tar.xz
(svn r9906) -Codechange: Add common properties for both industry and industry tiles specs
Diffstat (limited to 'src/industry.h')
-rw-r--r--src/industry.h22
1 files changed, 17 insertions, 5 deletions
diff --git a/src/industry.h b/src/industry.h
index 618be6285..653b1f345 100644
--- a/src/industry.h
+++ b/src/industry.h
@@ -14,7 +14,8 @@ typedef uint8 IndustryType;
enum {
INVALID_INDUSTRY = 0xFFFF,
NUM_INDUSTRYTYPES = 37,
- INDUTILE_NOANIM = 0xFF, ///< flag to mark industry tiles as having no animation
+ INDUTILE_NOANIM = 0xFF, ///< flag to mark industry tiles as having no animation
+ INVALID_INDUSTRYTYPE = NUM_INDUSTRYTYPES, ///< one above amount is considered invalid
};
enum IndustryLifeType {
@@ -91,6 +92,16 @@ struct IndustryTileTable {
IndustryGfx gfx;
};
+/** Data related to the handling of grf files. Common to both industry and industry tile */
+struct GRFFileProps {
+ uint8 subst_id;
+ uint16 local_id; ///< id defined by the grf file for this industry
+ struct SpriteGroup *spritegroup; ///< pointer to the different sprites of the industry
+ const struct GRFFile *grffile; ///< grf file that introduced this house
+ uint8 override; ///< id of the entity been replaced by
+ bool enabled; ///< entity still avaible (by default true).newgrf can disable it, though
+};
+
/**
* Defines the data structure for constructing industry.
*/
@@ -119,11 +130,9 @@ struct IndustrySpec {
byte appear_creation[NUM_LANDSCAPE]; ///< Probability of appearance during map creation
uint8 number_of_sounds; ///< Number of sounds available in the sounds array
const uint8 *random_sounds; ///< array of random sounds.
- /* Newgrf stuff coming in */
+ /* Newgrf data */
uint16 callback_flags; ///< Flags telling which grf callback is set
- byte subst_id;
- uint32 grfid;
- byte override;
+ struct GRFFileProps grf_prop; ///< properties related the the grf file
};
/**
@@ -136,6 +145,9 @@ struct IndustryTileSpec {
byte anim_next; ///< Next frame in an animation
bool anim_state; ///< When true, the tile has to be drawn using the animation
///< state instead of the construction state
+ /* Newgrf data */
+ uint8 callback_flags; ///< Flags telling which grf callback is set
+ struct GRFFileProps grf_prop;
};
/* industry_cmd.cpp*/