diff options
author | belugas <belugas@openttd.org> | 2006-04-24 21:10:56 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2006-04-24 21:10:56 +0000 |
commit | ebf6797678b58aa558ab933fd3f5931fcf0406b9 (patch) | |
tree | d080bac8a9cda725440a23acb119e6257fe7731c /industry_cmd.c | |
parent | 7aed9a62f2150f35b31b2ea52a4de07c1aa50ce2 (diff) | |
download | openttd-ebf6797678b58aa558ab933fd3f5931fcf0406b9.tar.xz |
(svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
Diffstat (limited to 'industry_cmd.c')
-rw-r--r-- | industry_cmd.c | 56 |
1 files changed, 6 insertions, 50 deletions
diff --git a/industry_cmd.c b/industry_cmd.c index ff66bfd98..9da3044cd 100644 --- a/industry_cmd.c +++ b/industry_cmd.c @@ -20,6 +20,8 @@ #include "economy.h" #include "sound.h" #include "variables.h" +#include "table/industry_land.h" +#include "table/build_industry.h" enum { /* Max industries: 64000 (8 * 8000) */ @@ -47,52 +49,6 @@ void ShowIndustryViewWindow(int industry); void BuildOilRig(TileIndex tile); void DeleteOilRig(TileIndex tile); -typedef struct DrawIndustryTileStruct { - uint32 sprite_1; - uint32 sprite_2; - - byte subtile_x:4; - byte subtile_y:4; - byte width:4; - byte height:4; - byte dz; - byte proc; -} DrawIndustryTileStruct; - - -typedef struct DrawIndustrySpec1Struct { - byte x; - byte image_1; - byte image_2; - byte image_3; -} DrawIndustrySpec1Struct; - -typedef struct DrawIndustrySpec4Struct { - byte image_1; - byte image_2; - byte image_3; -} DrawIndustrySpec4Struct; - -typedef struct IndustryTileTable { - TileIndexDiffC ti; - IndustryGfx gfx; -} IndustryTileTable; - -typedef struct IndustrySpec { - const IndustryTileTable *const *table; - byte num_table; - byte a,b,c; - CargoID produced_cargo[2]; - byte production_rate[2]; - CargoID accepts_cargo[3]; - byte check_proc; -} IndustrySpec; - -#include "table/industry_land.h" -#include "table/build_industry.h" - - - static const IndustryType _industry_close_mode[IT_END] = { /* COAL_MINE */ INDUSTRYLIFE_PRODUCTION, /* POWER_STATION */ INDUSTRYLIFE_NOT_CLOSABLE, @@ -367,7 +323,7 @@ static IndustryDrawTileProc * const _industry_draw_tile_procs[5] = { static void DrawTile_Industry(TileInfo *ti) { const Industry* ind; - const DrawIndustryTileStruct *dits; + const DrawBuildingsTileStruct *dits; byte z; uint32 image, ormod; @@ -378,7 +334,7 @@ static void DrawTile_Industry(TileInfo *ti) /* Retrieve pointer to the draw industry tile struct */ dits = &_industry_draw_tile_data[GetIndustryGfx(ti->tile) << 2 | GetIndustryConstructionStage(ti->tile)]; - image = dits->sprite_1; + image = dits->ground; if (image & PALETTE_MODIFIER_COLOR && (image & PALETTE_SPRITE_MASK) == 0) image |= ormod; @@ -394,7 +350,7 @@ static void DrawTile_Industry(TileInfo *ti) } /* Add industry on top of the ground? */ - image = dits->sprite_2; + image = dits->building; if (image != 0) { if (image & PALETTE_MODIFIER_COLOR && (image & PALETTE_SPRITE_MASK) == 0) image |= ormod; @@ -413,7 +369,7 @@ static void DrawTile_Industry(TileInfo *ti) } { - int proc = dits->proc - 1; + int proc = dits->draw_proc - 1; if (proc >= 0) _industry_draw_tile_procs[proc](ti); } } |