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
|
|
|
|
2012-01-01 17:22:32 +00:00
|
|
|
static const int CF_NOEURO = 0; ///< Currency never switches to the Euro (as far as known).
|
|
|
|
static const int CF_ISEURO = 1; ///< Currency _is_ the Euro.
|
2013-03-09 16:16:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This enum gives the currencies a unique id in order to refer
|
|
|
|
* quickly to them, especially the custom one. And to ensure
|
|
|
|
*/
|
|
|
|
enum Currencies {
|
|
|
|
CURRENCY_GBP, ///< British Pound
|
|
|
|
CURRENCY_USD, ///< US Dollar
|
|
|
|
CURRENCY_EUR, ///< Euro
|
|
|
|
CURRENCY_JPY, ///< Japanese Yen
|
|
|
|
CURRENCY_ATS, ///< Austrian Schilling
|
|
|
|
CURRENCY_BEF, ///< Belgian Franc
|
|
|
|
CURRENCY_CHF, ///< Swiss Franc
|
|
|
|
CURRENCY_CZK, ///< Czech Koruna
|
|
|
|
CURRENCY_DEM, ///< Deutsche Mark
|
|
|
|
CURRENCY_DKK, ///< Danish Krona
|
|
|
|
CURRENCY_ESP, ///< Spanish Peseta
|
|
|
|
CURRENCY_FIM, ///< Finish Markka
|
|
|
|
CURRENCY_FRF, ///< French Franc
|
|
|
|
CURRENCY_GRD, ///< Greek Drachma
|
|
|
|
CURRENCY_HUF, ///< Hungarian Forint
|
|
|
|
CURRENCY_ISK, ///< Icelandic Krona
|
|
|
|
CURRENCY_ITL, ///< Italian Lira
|
|
|
|
CURRENCY_NLG, ///< Dutch Gulden
|
|
|
|
CURRENCY_NOK, ///< Norwegian Krone
|
|
|
|
CURRENCY_PLN, ///< Polish Zloty
|
|
|
|
CURRENCY_RON, ///< Romenian Leu
|
|
|
|
CURRENCY_RUR, ///< Russian Rouble
|
|
|
|
CURRENCY_SIT, ///< Slovenian Tolar
|
|
|
|
CURRENCY_SEK, ///< Swedish Krona
|
|
|
|
CURRENCY_YTL, ///< Turkish Lira
|
|
|
|
CURRENCY_SKK, ///< Slovak Kornuna
|
|
|
|
CURRENCY_BRL, ///< Brazilian Real
|
|
|
|
CURRENCY_EEK, ///< Estonian Krooni
|
|
|
|
CURRENCY_LTL, ///< Lithuanian Litas
|
|
|
|
CURRENCY_KRW, ///< South Korean Won
|
|
|
|
CURRENCY_ZAR, ///< South African Rand
|
|
|
|
CURRENCY_CUSTOM, ///< Custom currency
|
|
|
|
CURRENCY_END, ///< always the last item
|
|
|
|
};
|
2005-08-06 14:59:54 +00:00
|
|
|
|
2012-01-01 17:22:32 +00:00
|
|
|
/** Specification of a currency. */
|
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];
|
2012-01-01 17:22:32 +00:00
|
|
|
Year to_euro; ///< %Year of switching to the Euro. May also be #CF_NOEURO or #CF_ISEURO.
|
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
|
2012-01-01 17:22:32 +00:00
|
|
|
* Usage of one or the other is determined by #symbol_pos.
|
2006-09-15 02:52:17 +00:00
|
|
|
* 0 = prefix
|
|
|
|
* 1 = suffix
|
|
|
|
* 2 = both : Special case only for custom currency.
|
|
|
|
* It is not a spec from Newgrf,
|
2012-01-01 17:22:32 +00:00
|
|
|
* rather a way to let users do what they want with custom currency
|
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
|
|
|
|
2013-03-09 16:16:17 +00:00
|
|
|
extern CurrencySpec _currency_specs[CURRENCY_END];
|
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 */
|
2013-03-09 16:16:17 +00:00
|
|
|
#define _custom_currency (_currency_specs[CURRENCY_CUSTOM])
|
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 */
|