2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
/** @file company_base.h Definition of stuff that is very close to a company, like the company struct itself. */
|
2007-03-21 17:42:43 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
#ifndef COMPANY_BASE_H
|
|
|
|
#define COMPANY_BASE_H
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-09-30 20:51:04 +00:00
|
|
|
#include "company_type.h"
|
2009-05-22 15:39:22 +00:00
|
|
|
#include "core/pool_type.hpp"
|
2008-01-09 21:05:03 +00:00
|
|
|
#include "road_type.h"
|
|
|
|
#include "rail_type.h"
|
2007-12-26 13:50:40 +00:00
|
|
|
#include "date_type.h"
|
2008-03-31 00:17:39 +00:00
|
|
|
#include "engine_type.h"
|
2006-09-15 12:27:00 +00:00
|
|
|
#include "livery.h"
|
2008-01-07 09:19:53 +00:00
|
|
|
#include "autoreplace_type.h"
|
2008-01-09 21:27:39 +00:00
|
|
|
#include "economy_type.h"
|
|
|
|
#include "tile_type.h"
|
2009-05-15 23:55:06 +00:00
|
|
|
#include "settings_type.h"
|
2004-08-20 09:32:32 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
struct CompanyEconomyEntry {
|
2007-06-18 21:44:47 +00:00
|
|
|
Money income;
|
|
|
|
Money expenses;
|
2004-08-09 17:04:08 +00:00
|
|
|
int32 delivered_cargo;
|
2008-09-30 20:39:50 +00:00
|
|
|
int32 performance_history; ///< company score (scale 0-1000)
|
2007-06-18 22:49:55 +00:00
|
|
|
Money company_value;
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-05-22 15:13:50 +00:00
|
|
|
typedef Pool<Company, CompanyByte, 1, MAX_COMPANIES> CompanyPool;
|
|
|
|
extern CompanyPool _company_pool;
|
2008-07-18 16:40:29 +00:00
|
|
|
|
2009-05-22 15:13:50 +00:00
|
|
|
|
|
|
|
struct Company : CompanyPool::PoolItem<&_company_pool> {
|
2008-09-30 20:39:50 +00:00
|
|
|
Company(uint16 name_1 = 0, bool is_ai = false);
|
|
|
|
~Company();
|
2008-07-18 16:40:29 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
uint32 name_2;
|
|
|
|
uint16 name_1;
|
2008-01-12 19:58:06 +00:00
|
|
|
char *name;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
uint16 president_name_1;
|
|
|
|
uint32 president_name_2;
|
2008-01-12 19:58:06 +00:00
|
|
|
char *president_name;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
CompanyManagerFace face;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
Money money;
|
|
|
|
byte money_fraction;
|
2007-06-18 21:44:47 +00:00
|
|
|
Money current_loan;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
byte colour;
|
2006-09-15 12:27:00 +00:00
|
|
|
Livery livery[LS_END];
|
2008-01-09 21:05:03 +00:00
|
|
|
RailTypes avail_railtypes;
|
|
|
|
RoadTypes avail_roadtypes;
|
2004-08-09 17:04:08 +00:00
|
|
|
byte block_preview;
|
|
|
|
|
2008-04-21 09:27:47 +00:00
|
|
|
uint32 cargo_types; ///< which cargo types were transported the last year
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-01-03 17:11:52 +00:00
|
|
|
TileIndex location_of_HQ; ///< northern tile of HQ ; INVALID_TILE when there is none
|
2004-08-09 17:04:08 +00:00
|
|
|
TileIndex last_build_coordinate;
|
2004-08-31 16:12:52 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
OwnerByte share_owners[4];
|
2004-08-31 16:12:52 +00:00
|
|
|
|
2006-08-20 18:40:57 +00:00
|
|
|
Year inaugurated_year;
|
2004-08-09 17:04:08 +00:00
|
|
|
byte num_valid_stat_ent;
|
2004-08-31 16:12:52 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
byte quarters_of_bankrupcy;
|
2008-12-24 00:25:17 +00:00
|
|
|
CompanyMask bankrupt_asked; ///< which companies were asked about buying it?
|
2004-08-09 17:04:08 +00:00
|
|
|
int16 bankrupt_timeout;
|
2007-06-18 21:44:47 +00:00
|
|
|
Money bankrupt_value;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-26 22:25:29 +00:00
|
|
|
bool is_ai;
|
2009-01-12 17:11:45 +00:00
|
|
|
|
|
|
|
class AIInstance *ai_instance;
|
|
|
|
class AIInfo *ai_info;
|
2004-08-31 16:12:52 +00:00
|
|
|
|
2008-02-09 02:49:33 +00:00
|
|
|
Money yearly_expenses[3][EXPENSES_END];
|
2008-09-30 20:39:50 +00:00
|
|
|
CompanyEconomyEntry cur_economy;
|
|
|
|
CompanyEconomyEntry old_economy[24];
|
2007-03-21 17:42:43 +00:00
|
|
|
EngineRenewList engine_renew_list; ///< Defined later
|
2009-05-15 23:55:06 +00:00
|
|
|
CompanySettings settings; ///< settings specific for each company
|
2008-09-30 20:39:50 +00:00
|
|
|
uint16 *num_engines; ///< caches the number of engines of each type the company owns (no need to save this)
|
2009-06-10 22:05:01 +00:00
|
|
|
|
|
|
|
static FORCEINLINE bool IsValidAiID(size_t index)
|
|
|
|
{
|
2009-06-23 12:11:35 +00:00
|
|
|
const Company *c = Company::GetIfValid(index);
|
2009-06-10 22:05:01 +00:00
|
|
|
return c != NULL && c->is_ai;
|
|
|
|
}
|
|
|
|
|
|
|
|
static FORCEINLINE bool IsValidHumanID(size_t index)
|
|
|
|
{
|
2009-06-23 12:11:35 +00:00
|
|
|
const Company *c = Company::GetIfValid(index);
|
2009-06-10 22:05:01 +00:00
|
|
|
return c != NULL && !c->is_ai;
|
|
|
|
}
|
2009-06-23 12:11:35 +00:00
|
|
|
|
|
|
|
static FORCEINLINE bool IsHumanID(size_t index)
|
|
|
|
{
|
|
|
|
return !Company::Get(index)->is_ai;
|
|
|
|
}
|
2009-05-17 01:00:56 +00:00
|
|
|
};
|
2008-07-18 16:40:29 +00:00
|
|
|
|
2009-05-22 14:23:36 +00:00
|
|
|
#define FOR_ALL_COMPANIES_FROM(var, start) FOR_ALL_ITEMS_FROM(Company, company_index, var, start)
|
|
|
|
#define FOR_ALL_COMPANIES(var) FOR_ALL_COMPANIES_FROM(var, 0)
|
2008-07-18 16:40:29 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
Money CalculateCompanyValue(const Company *c);
|
2006-09-15 12:27:00 +00:00
|
|
|
|
2009-02-25 21:45:14 +00:00
|
|
|
extern uint _next_competitor_start;
|
|
|
|
extern uint _cur_company_tick_index;
|
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
#endif /* COMPANY_BASE_H */
|