OpenTTD Source  12.0-beta2
subsidy.cpp File Reference
#include "stdafx.h"
#include "company_func.h"
#include "industry.h"
#include "town.h"
#include "news_func.h"
#include "ai/ai.hpp"
#include "station_base.h"
#include "strings_func.h"
#include "window_func.h"
#include "subsidy_base.h"
#include "subsidy_func.h"
#include "core/pool_func.hpp"
#include "core/random_func.hpp"
#include "game/game.hpp"
#include "command_func.h"
#include "string_func.h"
#include "tile_cmd.h"
#include "table/strings.h"
#include "safeguards.h"

Go to the source code of this file.

Functions

std::pair< NewsReferenceType, NewsReferenceTypeSetupSubsidyDecodeParam (const Subsidy *s, SubsidyDecodeParamType mode, uint parameter_offset)
 Setup the string parameters for printing the subsidy at the screen, and compute the news reference for the subsidy. More...
 
static void SetPartOfSubsidyFlag (SourceType type, SourceID index, PartOfSubsidy flag)
 Sets a flag indicating that given town/industry is part of subsidised route. More...
 
void RebuildSubsidisedSourceAndDestinationCache ()
 Perform a full rebuild of the subsidies cache.
 
void DeleteSubsidyWith (SourceType type, SourceID index)
 Delete the subsidies associated with a given cargo source type and id. More...
 
static bool CheckSubsidyDuplicate (CargoID cargo, SourceType src_type, SourceID src, SourceType dst_type, SourceID dst)
 Check whether a specific subsidy already exists. More...
 
static bool CheckSubsidyDistance (SourceType src_type, SourceID src, SourceType dst_type, SourceID dst)
 Checks if the source and destination of a subsidy are inside the distance limit. More...
 
void CreateSubsidy (CargoID cid, SourceType src_type, SourceID src, SourceType dst_type, SourceID dst)
 Creates a subsidy with the given parameters. More...
 
CommandCost CmdCreateSubsidy (TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const std::string &text)
 Create a new subsidy. More...
 
bool FindSubsidyPassengerRoute ()
 Tries to create a passenger subsidy between two towns. More...
 
bool FindSubsidyCargoDestination (CargoID cid, SourceType src_type, SourceID src)
 Tries to find a suitable destination for the given source and cargo. More...
 
bool FindSubsidyTownCargoRoute ()
 Tries to create a cargo subsidy with a town as source. More...
 
bool FindSubsidyIndustryCargoRoute ()
 Tries to create a cargo subsidy with an industry as source. More...
 
void SubsidyMonthlyLoop ()
 Perform the monthly update of open subsidies, and try to create a new one.
 
bool CheckSubsidised (CargoID cargo_type, CompanyID company, SourceType src_type, SourceID src, const Station *st)
 Tests whether given delivery is subsidised and possibly awards the subsidy to delivering company. More...
 

Variables

SubsidyPool _subsidy_pool ("Subsidy")
 Pool for the subsidies.
 

Detailed Description

Handling of subsidies.

Definition in file subsidy.cpp.

Function Documentation

◆ CheckSubsidised()

◆ CheckSubsidyDistance()

static bool CheckSubsidyDistance ( SourceType  src_type,
SourceID  src,
SourceType  dst_type,
SourceID  dst 
)
static

Checks if the source and destination of a subsidy are inside the distance limit.

Parameters
src_typeType of src.
srcIndex of source.
dst_typeType of dst.
dstIndex of destination.
Returns
True if they are inside the distance limit.

Definition at line 198 of file subsidy.cpp.

References DistanceManhattan(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_town_pool >::Get(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_industry_pool >::Get(), ST_TOWN, and SUBSIDY_MAX_DISTANCE.

◆ CheckSubsidyDuplicate()

static bool CheckSubsidyDuplicate ( CargoID  cargo,
SourceType  src_type,
SourceID  src,
SourceType  dst_type,
SourceID  dst 
)
static

Check whether a specific subsidy already exists.

Parameters
cargoCargo type.
src_typeType of source of the cargo, affects interpretation of src.
srcId of the source.
dst_typeType of the destination of the cargo, affects interpretation of dst.
dstId of the destination.
Returns
true if the subsidy already exists, false if not.

Definition at line 178 of file subsidy.cpp.

References Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_subsidy_pool >::Iterate().

◆ CmdCreateSubsidy()

CommandCost CmdCreateSubsidy ( TileIndex  tile,
DoCommandFlag  flags,
uint32  p1,
uint32  p2,
const std::string &  text 
)

Create a new subsidy.

Parameters
tileunused.
flagstype of operation
p1various bitstuffed elements
  • p1 = (bit 0 - 7) - SourceType of source.
  • p1 = (bit 8 - 23) - SourceID of source.
  • p1 = (bit 24 - 31) - CargoID of subsidy.
p2various bitstuffed elements
  • p2 = (bit 0 - 7) - SourceType of destination.
  • p2 = (bit 8 - 23) - SourceID of destination.
textunused.
Returns
the cost of this operation or an error

Definition at line 249 of file subsidy.cpp.

References _current_company, Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_subsidy_pool >::CanAllocateItem(), CMD_ERROR, CreateSubsidy(), DC_EXEC, GB(), CargoSpec::Get(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_town_pool >::IsValidID(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_industry_pool >::IsValidID(), NUM_CARGO, OWNER_DEITY, ST_INDUSTRY, and ST_TOWN.

◆ CreateSubsidy()

void CreateSubsidy ( CargoID  cid,
SourceType  src_type,
SourceID  src,
SourceType  dst_type,
SourceID  dst 
)

◆ DeleteSubsidyWith()

void DeleteSubsidyWith ( SourceType  type,
SourceID  index 
)

Delete the subsidies associated with a given cargo source type and id.

Parameters
typeCargo source type of the id.
indexId to remove.

Definition at line 152 of file subsidy.cpp.

References InvalidateWindowData(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_subsidy_pool >::Iterate(), RebuildSubsidisedSourceAndDestinationCache(), and WC_SUBSIDIES_LIST.

Referenced by Town::~Town().

◆ FindSubsidyCargoDestination()

bool FindSubsidyCargoDestination ( CargoID  cid,
SourceType  src_type,
SourceID  src 
)

Tries to find a suitable destination for the given source and cargo.

Parameters
cidSubsidized cargo.
src_typeType of src.
srcIndex of source.
Returns
True iff the subsidy was created.

Definition at line 435 of file subsidy.cpp.

References Chance16(), OrthogonalTileArea::Expand(), Town::GetRandom(), IsTileType(), MP_HOUSE, ST_INDUSTRY, ST_TOWN, SUBSIDY_TOWN_CARGO_RADIUS, and Town::xy.

Referenced by FindSubsidyIndustryCargoRoute().

◆ FindSubsidyIndustryCargoRoute()

◆ FindSubsidyPassengerRoute()

bool FindSubsidyPassengerRoute ( )

Tries to create a passenger subsidy between two towns.

Returns
True iff the subsidy was created.

Definition at line 295 of file subsidy.cpp.

References Town::cache, Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_subsidy_pool >::CanAllocateItem(), Town::GetRandom(), TownCache::population, and SUBSIDY_PAX_MIN_POPULATION.

Referenced by SubsidyMonthlyLoop().

◆ FindSubsidyTownCargoRoute()

bool FindSubsidyTownCargoRoute ( )

◆ SetPartOfSubsidyFlag()

static void SetPartOfSubsidyFlag ( SourceType  type,
SourceID  index,
PartOfSubsidy  flag 
)
inlinestatic

Sets a flag indicating that given town/industry is part of subsidised route.

Parameters
typeis it a town or an industry?
indexindex of town/industry
flagflag to set

Definition at line 125 of file subsidy.cpp.

References Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_industry_pool >::Get(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_town_pool >::Get(), ST_INDUSTRY, and ST_TOWN.

Referenced by CreateSubsidy(), and RebuildSubsidisedSourceAndDestinationCache().

◆ SetupSubsidyDecodeParam()

std::pair<NewsReferenceType, NewsReferenceType> SetupSubsidyDecodeParam ( const Subsidy s,
SubsidyDecodeParamType  mode,
uint  parameter_offset 
)

Setup the string parameters for printing the subsidy at the screen, and compute the news reference for the subsidy.

Parameters
sSubsidy being printed.
modeType of subsidy news message to decide on parameter format.
parameter_offsetThe location/index in the String DParams to start decoding the subsidy's parameters. Defaults to 0.
Returns
Reference of the subsidy in the news system.

Definition at line 72 of file subsidy.cpp.

References Subsidy::cargo_type, CargoSpec::Get(), Gui, CargoSpec::name, CargoSpec::name_single, NewsWithdrawn, NR_INDUSTRY, NR_NONE, NR_TOWN, SetDParam(), Subsidy::src_type, ST_INDUSTRY, and ST_TOWN.

Referenced by CreateSubsidy(), and SubsidyMonthlyLoop().