2005-07-24 14:12:37 +00:00
/* $Id$ */
2004-08-09 17:04:08 +00:00
# ifndef INDUSTRY_H
# define INDUSTRY_H
2005-02-02 17:30:29 +00:00
# include "pool.h"
2006-04-28 21:58:16 +00:00
typedef byte IndustryGfx ;
typedef uint8 IndustryType ;
2006-08-20 18:44:26 +00:00
enum {
INVALID_INDUSTRY = 0xFFFF ,
} ;
2004-08-09 17:04:08 +00:00
struct Industry {
TileIndex xy ;
byte width ; /* swapped order of w/h with town */
byte height ;
2005-11-13 13:43:55 +00:00
const Town * town ;
2006-03-26 22:23:32 +00:00
CargoID produced_cargo [ 2 ] ;
2004-08-09 17:04:08 +00:00
uint16 cargo_waiting [ 2 ] ;
byte production_rate [ 2 ] ;
2006-03-26 22:23:32 +00:00
CargoID accepts_cargo [ 3 ] ;
2004-08-09 17:04:08 +00:00
byte prod_level ;
uint16 last_mo_production [ 2 ] ;
uint16 last_mo_transported [ 2 ] ;
byte pct_transported [ 2 ] ;
uint16 total_production [ 2 ] ;
uint16 total_transported [ 2 ] ;
uint16 counter ;
byte type ;
2006-03-27 06:18:02 +00:00
byte owner ;
2004-08-09 17:04:08 +00:00
byte color_map ;
2006-08-20 18:40:57 +00:00
Year last_prod_year ;
2004-08-09 17:04:08 +00:00
byte was_cargo_delivered ;
2005-01-06 22:31:58 +00:00
2006-08-20 19:31:58 +00:00
IndustryID index ;
2004-08-09 17:04:08 +00:00
} ;
2006-04-28 21:58:16 +00:00
typedef struct IndustryTileTable {
TileIndexDiffC ti ;
IndustryGfx gfx ;
} IndustryTileTable ;
typedef struct IndustrySpec {
/** Tables with the 'layout' of different composition of GFXes */
const IndustryTileTable * const * table ;
/** Number of elements in the table */
byte num_table ;
/** Base cost multiplier*/
byte cost_multiplier ;
/** Industries this industry cannot be close to */
IndustryType conflicting [ 3 ] ;
/** index to a procedure to check for conflicting circumstances */
byte check_proc ;
CargoID produced_cargo [ 2 ] ;
byte production_rate [ 2 ] ;
/** The minimum amount of cargo transported to the stations; if the
* waiting cargo is less than this number , no cargo is moved to it */
byte minimal_cargo ;
CargoID accepts_cargo [ 3 ] ;
StringID closure_text ;
StringID production_up_text ;
StringID production_down_text ;
} IndustrySpec ;
const IndustrySpec * GetIndustrySpec ( IndustryType thistype ) ;
2005-02-02 17:30:29 +00:00
extern MemoryPool _industry_pool ;
2005-01-06 22:31:58 +00:00
2005-02-06 22:36:08 +00:00
/**
* Check if an Industry really exists .
*/
2006-08-22 15:33:35 +00:00
static inline bool IsValidIndustry ( const Industry * industry )
2005-02-06 22:36:08 +00:00
{
2006-08-22 15:33:35 +00:00
return industry - > xy ! = 0 ;
2005-02-06 22:36:08 +00:00
}
2005-02-02 17:30:29 +00:00
/**
* Get the pointer to the industry with index ' index '
*/
2005-01-06 22:31:58 +00:00
static inline Industry * GetIndustry ( uint index )
{
2005-02-02 17:30:29 +00:00
return ( Industry * ) GetItemFromPool ( & _industry_pool , index ) ;
}
/**
* Get the current size of the IndustryPool
*/
static inline uint16 GetIndustryPoolSize ( void )
{
return _industry_pool . total_items ;
2005-01-06 22:31:58 +00:00
}
2006-08-22 20:41:26 +00:00
VARDEF int _total_industries ;
static inline IndustryID GetIndustryArraySize ( void )
{
/* TODO - This isn't the real content of the function, but
* with the new pool - system this will be replaced with one that
* _really_ returns the highest index + 1. Now it just returns
* the next safe value we are sure about everything is below .
*/
2006-08-22 21:17:19 +00:00
return _total_industries ;
2006-08-22 20:41:26 +00:00
}
2006-08-22 21:14:45 +00:00
/**
* Return a random valid town .
*/
static inline Industry * GetRandomIndustry ( void )
{
uint num = RandomRange ( GetIndustryArraySize ( ) ) ;
uint index = 0 ;
if ( GetIndustryArraySize ( ) = = 0 ) return NULL ;
while ( num > 0 ) {
num - - ;
index + + ;
/* Make sure we have a valid industry */
while ( GetIndustry ( index ) = = NULL ) {
index + + ;
if ( index = = GetIndustryArraySize ( ) ) index = 0 ;
}
}
return GetIndustry ( index ) ;
}
2006-08-22 15:33:35 +00:00
# define FOR_ALL_INDUSTRIES_FROM(i, start) for (i = GetIndustry(start); i != NULL; i = (i->index + 1 < GetIndustryPoolSize()) ? GetIndustry(i->index + 1) : NULL) if (IsValidIndustry(i))
2005-02-02 17:30:29 +00:00
# define FOR_ALL_INDUSTRIES(i) FOR_ALL_INDUSTRIES_FROM(i, 0)
2006-08-15 07:07:17 +00:00
VARDEF const Industry * * _industry_sort ;
2004-08-09 17:04:08 +00:00
VARDEF bool _industry_sort_dirty ;
2005-02-02 17:30:29 +00:00
2006-04-10 16:20:47 +00:00
2004-08-09 17:04:08 +00:00
void DeleteIndustry ( Industry * is ) ;
2006-08-20 18:44:26 +00:00
void PlantRandomFarmField ( const Industry * i ) ;
2004-08-09 17:04:08 +00:00
enum {
2006-08-22 14:38:37 +00:00
IT_COAL_MINE = 0 ,
IT_POWER_STATION = 1 ,
IT_SAWMILL = 2 ,
IT_FOREST = 3 ,
IT_OIL_REFINERY = 4 ,
IT_OIL_RIG = 5 ,
IT_FACTORY = 6 ,
IT_PRINTING_WORKS = 7 ,
IT_STEEL_MILL = 8 ,
IT_FARM = 9 ,
IT_COPPER_MINE = 10 ,
IT_OIL_WELL = 11 ,
IT_BANK_TEMP = 12 ,
IT_FOOD_PROCESS = 13 ,
IT_PAPER_MILL = 14 ,
IT_GOLD_MINE = 15 ,
IT_BANK_TROPIC_ARCTIC = 16 ,
IT_DIAMOND_MINE = 17 ,
IT_IRON_MINE = 18 ,
IT_FRUIT_PLANTATION = 19 ,
IT_RUBBER_PLANTATION = 20 ,
IT_WATER_SUPPLY = 21 ,
IT_WATER_TOWER = 22 ,
IT_FACTORY_2 = 23 ,
IT_FARM_2 = 24 ,
IT_LUMBER_MILL = 25 ,
IT_COTTON_CANDY = 26 ,
IT_CANDY_FACTORY = 27 ,
IT_BATTERY_FARM = 28 ,
IT_COLA_WELLS = 29 ,
IT_TOY_SHOP = 30 ,
IT_TOY_FACTORY = 31 ,
IT_PLASTIC_FOUNTAINS = 32 ,
IT_FIZZY_DRINK_FACTORY = 33 ,
IT_BUBBLE_GENERATOR = 34 ,
IT_TOFFEE_QUARRY = 35 ,
IT_SUGAR_MINE = 36 ,
2006-04-10 21:00:56 +00:00
IT_END ,
2006-08-22 14:38:37 +00:00
IT_INVALID = 255 ,
2004-08-09 17:04:08 +00:00
} ;
2006-04-10 16:20:47 +00:00
typedef enum IndustryLifeTypes {
INDUSTRYLIFE_NOT_CLOSABLE , ///< Industry can never close
INDUSTRYLIFE_PRODUCTION , ///< Industry can close and change of production
INDUSTRYLIFE_CLOSABLE , ///< Industry can only close (no production change)
} IndustryLifeType ;
2005-09-18 20:56:44 +00:00
# endif /* INDUSTRY_H */