OpenTTD GameScript API 20250402-master-g33a8c1c6fc
|
Class that handles all cargo movement monitoring related functions. More...
#include <script_cargomonitor.hpp>
Static Public Member Functions | |
static int | GetTownDeliveryAmount (GSCompany::CompanyID company, CargoType cargo, TownID town_id, bool keep_monitoring) |
Get the amount of cargo delivered to a town by a company since the last query, and update the monitoring state. | |
static int | GetIndustryDeliveryAmount (GSCompany::CompanyID company, CargoType cargo, IndustryID industry_id, bool keep_monitoring) |
Get the amount of cargo delivered to an industry by a company since the last query, and update the monitoring state. | |
static int | GetTownPickupAmount (GSCompany::CompanyID company, CargoType cargo, TownID town_id, bool keep_monitoring) |
Get the amount of cargo picked up (and delivered) from a town by a company since the last query, and update the monitoring state. | |
static int | GetIndustryPickupAmount (GSCompany::CompanyID company, CargoType cargo, IndustryID industry_id, bool keep_monitoring) |
Get the amount of cargo picked up (and delivered) from an industry by a company since the last query, and update the monitoring state. | |
static void | StopAllMonitoring () |
Stop monitoring everything. | |
Class that handles all cargo movement monitoring related functions.
To get an understanding of what users are transporting, this class provides cargo pick-up and delivery monitoring functions. It works as follows:
true
. The return value is not important, but from this moment the program accumulates all deliveries by the given company to the given industry of the given cargo type.false
. The collecting process that happens between calls is stopped.In the same way you can monitor town deliveries, and you can monitor pick-up from towns and industries. The latter get added at the moment the cargo is delivered. This prevents users from getting credit for picking up cargo without delivering it.
The active monitors are saved and loaded. Upon bankruptcy or company takeover, the cargo monitors are automatically stopped for that company. You can reset to the empty state with StopAllMonitoring.
|
static |
Get the amount of cargo delivered to an industry by a company since the last query, and update the monitoring state.
company | Company to query. |
cargo | Cargo type to query. |
industry_id | Industry to query. |
keep_monitoring | If true , the given combination continues to be monitored for the next call. If false , monitoring ends. |
-1
if a parameter is out-of-bound.
|
static |
Get the amount of cargo picked up (and delivered) from an industry by a company since the last query, and update the monitoring state.
company | Company to query. |
cargo | Cargo type to query. |
industry_id | Industry to query. |
keep_monitoring | If true , the given combination continues to be monitored for the next call. If false , monitoring ends. |
-1
if a parameter is out-of-bound.
|
static |
Get the amount of cargo delivered to a town by a company since the last query, and update the monitoring state.
company | Company to query. |
cargo | Cargo type to query. |
town_id | Town to query. |
keep_monitoring | If true , the given combination continues to be monitored for the next call. If false , monitoring ends. |
-1
if a parameter is out-of-bound.
|
static |
Get the amount of cargo picked up (and delivered) from a town by a company since the last query, and update the monitoring state.
company | Company to query. |
cargo | Cargo type to query. |
town_id | Town to query. |
keep_monitoring | If true , the given combination continues to be monitored for the next call. If false , monitoring ends. |
-1
if a parameter is out-of-bound.