2005-08-06 15:18:26 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file currency.h Functions to handle different currencies. */
|
2007-02-23 11:50:43 +00:00
|
|
|
|
2005-08-06 14:59:54 +00:00
|
|
|
#ifndef CURRENCY_H
|
|
|
|
#define CURRENCY_H
|
|
|
|
|
2007-12-26 13:50:40 +00:00
|
|
|
#include "date_type.h"
|
2008-01-13 01:21:35 +00:00
|
|
|
#include "strings_type.h"
|
2007-12-26 13:50:40 +00:00
|
|
|
|
2005-08-06 14:59:54 +00:00
|
|
|
enum {
|
|
|
|
CF_NOEURO = 0,
|
|
|
|
CF_ISEURO = 1,
|
2008-11-19 16:17:42 +00:00
|
|
|
NUM_CURRENCY = 29,
|
2006-08-25 12:58:52 +00:00
|
|
|
CUSTOM_CURRENCY_ID = NUM_CURRENCY - 1
|
2005-08-06 14:59:54 +00:00
|
|
|
};
|
|
|
|
|
2007-03-07 12:11:48 +00:00
|
|
|
struct CurrencySpec {
|
2005-08-06 14:59:54 +00:00
|
|
|
uint16 rate;
|
2009-04-25 20:16:56 +00:00
|
|
|
char separator[8];
|
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;
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2005-08-06 14:59:54 +00:00
|
|
|
|
2006-08-25 00:41:10 +00:00
|
|
|
|
|
|
|
extern CurrencySpec _currency_specs[NUM_CURRENCY];
|
2005-08-06 14:59:54 +00:00
|
|
|
|
2009-03-15 00:32:18 +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])
|
2008-06-05 11:26:38 +00:00
|
|
|
#define _currency ((const CurrencySpec*)&_currency_specs[_game_mode == GM_MENU ? _settings_newgame.locale.currency : _settings_game.locale.currency])
|
2005-08-07 12:41:57 +00:00
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
uint GetMaskOfAllowedCurrencies();
|
|
|
|
void CheckSwitchToEuro();
|
2007-03-25 23:42:55 +00:00
|
|
|
void ResetCurrencies(bool preserve_custom = true);
|
2009-01-10 00:31:47 +00:00
|
|
|
StringID *BuildCurrencyDropdown();
|
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 */
|