Files
@ r20192:47bf5d6b50d2
Branch filter:
Location: cpp/openttd-patchpack/source/src/subsidy_base.h - annotation
r20192:47bf5d6b50d2
2.9 KiB
text/x-c
(svn r25189) -Update from WebTranslator v3.0:
gaelic - 113 changes by GunChleoc
gaelic - 113 changes by GunChleoc
r12287:e460d5b47431 r12287:e460d5b47431 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r18845:66bf168f1100 r12287:e460d5b47431 r12287:e460d5b47431 r12287:e460d5b47431 r12287:e460d5b47431 r12287:e460d5b47431 r12287:e460d5b47431 r12648:24c912bd53f6 r12659:f65aabcdc037 r12659:f65aabcdc037 r18841:a4d1d6459b42 r12659:f65aabcdc037 r12297:feee3c26c3b6 r12287:e460d5b47431 r12659:f65aabcdc037 r12642:9f166415b666 r12648:24c912bd53f6 r12648:24c912bd53f6 r12648:24c912bd53f6 r12648:24c912bd53f6 r12648:24c912bd53f6 r12648:24c912bd53f6 r12287:e460d5b47431 r12287:e460d5b47431 r12659:f65aabcdc037 r12659:f65aabcdc037 r18782:6453522c2154 r12659:f65aabcdc037 r12659:f65aabcdc037 r12662:b759c2e1431c r12662:b759c2e1431c r18782:6453522c2154 r12662:b759c2e1431c r12662:b759c2e1431c r12433:78c0a45f0d40 r12433:78c0a45f0d40 r12433:78c0a45f0d40 r18782:6453522c2154 r12433:78c0a45f0d40 r12648:24c912bd53f6 r12433:78c0a45f0d40 r12433:78c0a45f0d40 r12648:24c912bd53f6 r12287:e460d5b47431 r12287:e460d5b47431 r12654:21eb6d3202f9 r15173:a59afd6301a6 r15173:a59afd6301a6 r15173:a59afd6301a6 r15173:a59afd6301a6 r15173:a59afd6301a6 r15173:a59afd6301a6 r12654:21eb6d3202f9 r12659:f65aabcdc037 r12287:e460d5b47431 r12287:e460d5b47431 r12287:e460d5b47431 | /* $Id$ */
/*
* This file is part of OpenTTD.
* 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.
* 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.
* 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/>.
*/
/** @file subsidy_base.h %Subsidy base class. */
#ifndef SUBSIDY_BASE_H
#define SUBSIDY_BASE_H
#include "cargo_type.h"
#include "company_type.h"
#include "subsidy_type.h"
#include "core/pool_type.hpp"
typedef Pool<Subsidy, SubsidyID, 1, 256> SubsidyPool;
extern SubsidyPool _subsidy_pool;
/** Struct about subsidies, offered and awarded */
struct Subsidy : SubsidyPool::PoolItem<&_subsidy_pool> {
CargoID cargo_type; ///< Cargo type involved in this subsidy, CT_INVALID for invalid subsidy
byte remaining; ///< Remaining months when this subsidy is valid
CompanyByte awarded; ///< Subsidy is awarded to this company; INVALID_COMPANY if it's not awarded to anyone
SourceTypeByte src_type; ///< Source of subsidised path (ST_INDUSTRY or ST_TOWN)
SourceTypeByte dst_type; ///< Destination of subsidised path (ST_INDUSTRY or ST_TOWN)
SourceID src; ///< Index of source. Either TownID or IndustryID
SourceID dst; ///< Index of destination. Either TownID or IndustryID
/**
* We need an (empty) constructor so struct isn't zeroed (as C++ standard states)
*/
inline Subsidy() { }
/**
* (Empty) destructor has to be defined else operator delete might be called with NULL parameter
*/
inline ~Subsidy() { }
/**
* Tests whether this subsidy has been awarded to someone
* @return is this subsidy awarded?
*/
inline bool IsAwarded() const
{
return this->awarded != INVALID_COMPANY;
}
void AwardTo(CompanyID company);
};
/** Constants related to subsidies */
static const uint SUBSIDY_OFFER_MONTHS = 12; ///< Duration of subsidy offer
static const uint SUBSIDY_CONTRACT_MONTHS = 12; ///< Duration of subsidy after awarding
static const uint SUBSIDY_PAX_MIN_POPULATION = 400; ///< Min. population of towns for subsidised pax route
static const uint SUBSIDY_CARGO_MIN_POPULATION = 900; ///< Min. population of destination town for cargo route
static const uint SUBSIDY_MAX_PCT_TRANSPORTED = 42; ///< Subsidy will be created only for towns/industries with less % transported
static const uint SUBSIDY_MAX_DISTANCE = 70; ///< Max. length of subsidised route (DistanceManhattan)
#define FOR_ALL_SUBSIDIES_FROM(var, start) FOR_ALL_ITEMS_FROM(Subsidy, subsidy_index, var, start)
#define FOR_ALL_SUBSIDIES(var) FOR_ALL_SUBSIDIES_FROM(var, 0)
#endif /* SUBSIDY_BASE_H */
|