2005-08-06 15:18:26 +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/>.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2010-05-13 09:44:44 +00:00
|
|
|
static const int CF_NOEURO = 0;
|
|
|
|
static const int CF_ISEURO = 1;
|
|
|
|
static const uint NUM_CURRENCY = 29;
|
|
|
|
static const int 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])
|
2011-01-02 00:34:21 +00:00
|
|
|
#define _currency ((const CurrencySpec*)&_currency_specs[GetGameSettings().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 */
|