summaryrefslogtreecommitdiff
path: root/src/table/industry_land.h
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-04-13 17:15:06 +0000
committerbelugas <belugas@openttd.org>2007-04-13 17:15:06 +0000
commit39735f7b549d256e32b64ab837d15aaba6a82885 (patch)
treed46d4f70d2b046eb8ee297b96045d99c52b9f98b /src/table/industry_land.h
parentb5b7b489ce9f81dc97e52ef27b2b43cc36ad14a9 (diff)
downloadopenttd-39735f7b549d256e32b64ab837d15aaba6a82885.tar.xz
(svn r9619) -Documentation: Comments on drawing arrays of houses and industries
Diffstat (limited to 'src/table/industry_land.h')
-rw-r--r--src/table/industry_land.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/table/industry_land.h b/src/table/industry_land.h
index 9ef40c2e4..91d2e02cf 100644
--- a/src/table/industry_land.h
+++ b/src/table/industry_land.h
@@ -15,8 +15,23 @@ struct DrawIndustrySpec4Struct {
byte image_3;
};
+
+/**
+ * Macro to ease the declaration of the array
+ * @param s1 sprite ID of ground sprite
+ * @param p1 palette ID of ground sprite
+ * @param s2 sprite ID of building sprite
+ * @param p2 palette ID of building sprite
+ * @param sx coordinate x of the sprite
+ * @param sy coordinate y of the sprite
+ * @param w width of the sprite
+ * @param h height of the sprite
+ * @param dz virtual height of the sprite
+ * @param p this allows to specify a special drawing procedure.
+ * @see DrawBuildingsTileStruct */
#define M(s1, p1, s2, p2, sx, sy, w, h, dz, p) { { s1, p1 }, { s2, p2 }, sx, sy, w - 1, h - 1, dz, p }
+/** Structure for industry tiles drawing */
static const DrawBuildingsTileStruct _industry_draw_tile_data[NUM_INDUSTRY_GFXES * 4] = {
M( 0xf54, PAL_NONE, 0x7db, PAL_NONE, 7, 0, 9, 9, 10, 0),
M( 0xf54, PAL_NONE, 0x7dc, PAL_NONE, 7, 0, 9, 9, 30, 0),