2005-08-06 15:18:26 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2005-08-06 14:59:54 +00:00
|
|
|
#ifndef CURRENCY_H
|
|
|
|
#define CURRENCY_H
|
|
|
|
|
|
|
|
enum {
|
|
|
|
CF_NOEURO = 0,
|
|
|
|
CF_ISEURO = 1,
|
2006-11-15 21:51:16 +00:00
|
|
|
NUM_CURRENCY = 28,
|
2006-08-25 12:58:52 +00:00
|
|
|
CUSTOM_CURRENCY_ID = NUM_CURRENCY - 1
|
2005-08-06 14:59:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint16 rate;
|
|
|
|
char separator;
|
2006-08-17 20:22:35 +00:00
|
|
|
Year to_euro;
|
2005-08-06 14:59:54 +00:00
|
|
|
char prefix[16];
|
|
|
|
char suffix[16];
|
2006-08-25 00:41:10 +00:00
|
|
|
/**
|
2006-09-15 02:52:17 +00:00
|
|
|
* The currency symbol is represented by two possible values, prefix and suffix
|
|
|
|
* Usage of one or the other is determined by symbol_pos.
|
|
|
|
* 0 = prefix
|
|
|
|
* 1 = suffix
|
|
|
|
* 2 = both : Special case only for custom currency.
|
|
|
|
* It is not a spec from Newgrf,
|
|
|
|
* rather a way to let users do what they want with custom curency
|
2006-08-25 00:41:10 +00:00
|
|
|
*/
|
|
|
|
byte symbol_pos;
|
|
|
|
StringID name;
|
2005-08-06 14:59:54 +00:00
|
|
|
} CurrencySpec;
|
|
|
|
|
2006-08-25 00:41:10 +00:00
|
|
|
|
|
|
|
extern CurrencySpec _currency_specs[NUM_CURRENCY];
|
2005-08-06 14:59:54 +00:00
|
|
|
|
2005-08-07 12:41:57 +00:00
|
|
|
// XXX small hack, but makes the rest of the code a bit nicer to read
|
2006-04-20 21:13:08 +00:00
|
|
|
#define _custom_currency (_currency_specs[CUSTOM_CURRENCY_ID])
|
2005-09-27 20:55:42 +00:00
|
|
|
#define _currency ((const CurrencySpec*)&_currency_specs[_opt_ptr->currency])
|
2005-08-07 12:41:57 +00:00
|
|
|
|
2005-08-06 14:59:54 +00:00
|
|
|
uint GetMaskOfAllowedCurrencies(void);
|
2005-08-07 12:41:57 +00:00
|
|
|
void CheckSwitchToEuro(void);
|
2006-08-25 00:41:10 +00:00
|
|
|
void ResetCurrencies(void);
|
|
|
|
StringID* BuildCurrencyDropdown(void);
|
2006-09-20 00:34:06 +00:00
|
|
|
byte GetNewgrfCurrencyIdConverted(byte grfcurr_id);
|
2005-08-06 14:59:54 +00:00
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
#endif /* CURRENCY_H */
|