2009-07-01 18:45:05 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2009-07-01 18:45:05 +00:00
|
|
|
/** @file subsidy_base.h Subsidy base class. */
|
|
|
|
|
|
|
|
#ifndef SUBSIDY_BASE_H
|
|
|
|
#define SUBSIDY_BASE_H
|
|
|
|
|
|
|
|
#include "cargo_type.h"
|
|
|
|
#include "company_type.h"
|
2009-08-08 16:42:55 +00:00
|
|
|
#include "subsidy_type.h"
|
2009-08-08 20:53:36 +00:00
|
|
|
#include "core/pool_type.hpp"
|
|
|
|
|
|
|
|
typedef Pool<Subsidy, SubsidyID, 1, MAX_COMPANIES> SubsidyPool;
|
|
|
|
extern SubsidyPool _subsidy_pool;
|
2009-07-02 12:47:52 +00:00
|
|
|
|
2009-07-01 18:45:05 +00:00
|
|
|
/** Struct about subsidies, offered and awarded */
|
2009-08-08 20:53:36 +00:00
|
|
|
struct Subsidy : SubsidyPool::PoolItem<&_subsidy_pool> {
|
2009-08-07 22:23:34 +00:00
|
|
|
CargoID cargo_type; ///< Cargo type involved in this subsidy, CT_INVALID for invalid subsidy
|
2009-08-08 16:42:55 +00:00
|
|
|
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
|
2009-07-01 18:45:05 +00:00
|
|
|
|
2009-08-08 20:53:36 +00:00
|
|
|
/**
|
|
|
|
* We need an (empty) constructor so struct isn't zeroed (as C++ standard states)
|
|
|
|
*/
|
|
|
|
FORCEINLINE Subsidy() { }
|
2009-08-08 22:42:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* (Empty) destructor has to be defined else operator delete might be called with NULL parameter
|
|
|
|
*/
|
|
|
|
FORCEINLINE ~Subsidy() { }
|
2009-08-08 20:53:36 +00:00
|
|
|
|
2009-07-18 19:54:35 +00:00
|
|
|
/**
|
|
|
|
* Tests whether this subsidy has been awarded to someone
|
|
|
|
* @return is this subsidy awarded?
|
|
|
|
*/
|
|
|
|
FORCEINLINE bool IsAwarded() const
|
|
|
|
{
|
2009-08-08 16:42:55 +00:00
|
|
|
return this->awarded != INVALID_COMPANY;
|
2009-07-18 19:54:35 +00:00
|
|
|
}
|
|
|
|
|
2009-08-08 16:42:55 +00:00
|
|
|
void AwardTo(CompanyID company);
|
2009-07-01 18:45:05 +00:00
|
|
|
};
|
|
|
|
|
2009-08-08 18:26:25 +00:00
|
|
|
/** Constants related to subsidies */
|
|
|
|
enum {
|
|
|
|
SUBSIDY_OFFER_MONTHS = 12, ///< Duration of subsidy offer
|
|
|
|
SUBSIDY_CONTRACT_MONTHS = 12, ///< Duration of subsidy after awarding
|
|
|
|
SUBSIDY_PAX_MIN_POPULATION = 400, ///< Min. population of towns for subsidised pax route
|
|
|
|
SUBSIDY_CARGO_MIN_POPULATION = 900, ///< Min. population of destination town for cargo route
|
|
|
|
SUBSIDY_MAX_PCT_TRANSPORTED = 42, ///< Subsidy will be created only for towns/industries with less % transported
|
|
|
|
SUBSIDY_MAX_DISTANCE = 70, ///< Max. length of subsidised route (DistanceManhattan)
|
|
|
|
};
|
|
|
|
|
2009-08-08 20:53:36 +00:00
|
|
|
#define FOR_ALL_SUBSIDIES_FROM(var, start) FOR_ALL_ITEMS_FROM(Subsidy, subsidy_index, var, start)
|
2009-07-01 18:45:05 +00:00
|
|
|
#define FOR_ALL_SUBSIDIES(var) FOR_ALL_SUBSIDIES_FROM(var, 0)
|
|
|
|
|
|
|
|
#endif /* SUBSIDY_BASE_H */
|