Files
@ r13191:af1540e675da
Branch filter:
Location: cpp/openttd-patchpack/source/src/economy_func.h - annotation
r13191:af1540e675da
1.7 KiB
text/x-c
(svn r17708) -Feature [FS#2053]: [OSX] Implement clipboard support for OS X.
r8116:df67d3c5e4fd r8116:df67d3c5e4fd r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r8116:df67d3c5e4fd r8116:df67d3c5e4fd r8116:df67d3c5e4fd r8116:df67d3c5e4fd r8116:df67d3c5e4fd r8121:d05602c69734 r8116:df67d3c5e4fd r8119:8fdb3a371896 r8119:8fdb3a371896 r8138:f851b4cbdad1 r8213:466402e95092 r8213:466402e95092 r10208:ef8fcc3dc4ca r8769:6c1f27d01bf5 r8116:df67d3c5e4fd r8116:df67d3c5e4fd r8116:df67d3c5e4fd r8116:df67d3c5e4fd r8116:df67d3c5e4fd r10207:a1fc2f2a33db r8116:df67d3c5e4fd r8116:df67d3c5e4fd r8116:df67d3c5e4fd r8116:df67d3c5e4fd r10207:a1fc2f2a33db r10571:99cb9a95b4cf r8116:df67d3c5e4fd r8116:df67d3c5e4fd r12648:24c912bd53f6 r8116:df67d3c5e4fd r12269:f94731e7dc53 r8116:df67d3c5e4fd r8116:df67d3c5e4fd r8626:f6fe0bba0fc2 r8626:f6fe0bba0fc2 r12930:ae0ddab1903d r12930:ae0ddab1903d r12930:ae0ddab1903d r12930:ae0ddab1903d r8116:df67d3c5e4fd | /* $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 economy_func.h Functions related to the economy. */
#ifndef ECONOMY_FUNC_H
#define ECONOMY_FUNC_H
#include "core/geometry_type.hpp"
#include "economy_type.h"
#include "cargo_type.h"
#include "vehicle_type.h"
#include "tile_type.h"
#include "town_type.h"
#include "industry_type.h"
#include "company_type.h"
#include "station_type.h"
void ResetPriceBaseMultipliers();
void SetPriceBaseMultiplier(uint price, byte factor);
extern const ScoreInfo _score_info[];
extern int _score_part[MAX_COMPANIES][SCORE_END];
extern Economy _economy;
/* Prices and also the fractional part. */
extern Prices _price;
int UpdateCompanyRatingAndValue(Company *c, bool update);
void StartupIndustryDailyChanges(bool init_counter);
Money GetTransportedGoodsIncome(uint num_pieces, uint dist, byte transit_days, CargoID cargo_type);
uint MoveGoodsToStation(TileIndex tile, int w, int h, CargoID type, uint amount, SourceType source_type, SourceID source_id);
void PrepareUnload(Vehicle *front_v);
void LoadUnloadStation(Station *st);
Money GetPriceByIndex(uint8 index);
void InitializeEconomy();
void RecomputePrices();
void AddInflation(bool check_year = true);
#endif /* ECONOMY_FUNC_H */
|