OpenTTD
subsidy_func.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef SUBSIDY_FUNC_H
11 #define SUBSIDY_FUNC_H
12 
13 #include "core/geometry_type.hpp"
14 #include "station_type.h"
15 #include "company_type.h"
16 #include "cargo_type.h"
17 
18 Pair SetupSubsidyDecodeParam(const struct Subsidy *s, bool mode);
19 void DeleteSubsidyWith(SourceType type, SourceID index);
20 bool CheckSubsidised(CargoID cargo_type, CompanyID company, SourceType src_type, SourceID src, const Station *st);
22 void DeleteSubsidy(struct Subsidy *s);
23 
24 #endif /* SUBSIDY_FUNC_H */
SourceType
Types of cargo source and destination.
Definition: cargo_type.h:146
Owner
Enum for all companies/owners.
Definition: company_type.h:18
Pair SetupSubsidyDecodeParam(const Subsidy *s, bool mode)
Setup the string parameters for printing the subsidy at the screen, and compute the news reference fo...
Definition: subsidy.cpp:74
void RebuildSubsidisedSourceAndDestinationCache()
Perform a full rebuild of the subsidies cache.
Definition: subsidy.cpp:131
Types related to cargoes...
Types related to stations.
void DeleteSubsidyWith(SourceType type, SourceID index)
Delete the subsidies associated with a given cargo source type and id.
Definition: subsidy.cpp:148
Struct about subsidies, offered and awarded.
Definition: subsidy_base.h:22
uint16 SourceID
Contains either industry ID, town ID or company ID (or INVALID_SOURCE)
Definition: cargo_type.h:152
All geometry types in OpenTTD.
Types related to companies.
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...
Definition: subsidy.cpp:544
byte CargoID
Cargo slots to indicate a cargo type within a game.
Definition: cargo_type.h:20
Station data structure.
Definition: station_base.h:450
A pair of two integers.