From efaeb275f78e18d594d9ee8ff04eccd2dc59512c Mon Sep 17 00:00:00 2001 From: truelight Date: Mon, 9 Aug 2004 17:04:08 +0000 Subject: (svn r1) Import of revision 975 of old (crashed) SVN --- economy.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 economy.h (limited to 'economy.h') diff --git a/economy.h b/economy.h new file mode 100644 index 000000000..5ed2e9c70 --- /dev/null +++ b/economy.h @@ -0,0 +1,34 @@ +#ifndef ECONOMY_H +#define ECONOMY_H + +typedef struct { + // Maximum possible loan + int32 max_loan; + int32 max_loan_unround; + // Economy fluctuation status + int fluct; + // Interest + byte interest_rate; + byte infl_amount; + byte infl_amount_pr; +} Economy; + +VARDEF Economy _economy; + +typedef struct Subsidy { + byte cargo_type; + byte age; + byte from; + byte to; +} Subsidy; + + +VARDEF Subsidy _subsidies[MAX_PLAYERS]; +Pair SetupSubsidyDecodeParam(Subsidy *s, bool mode); +void DeleteSubsidyWithIndustry(byte index); +void DeleteSubsidyWithStation(byte index); + +int32 GetTransportedGoodsIncome(uint num_pieces, uint dist, byte transit_days, byte cargo_type); +uint MoveGoodsToStation(uint tile, int w, int h, int type, uint amount); + +#endif /* ECONOMY_H */ -- cgit v1.2.3-54-g00ecf