khanat-opennel-code/code/ryzom/common/src/game_share/season.h
2010-05-06 02:08:41 +02:00

108 lines
2 KiB
C++

// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
// Copyright (C) 2010 Winch Gate Property Limited
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program 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 Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef SEASON_H
#define SEASON_H
#include <nel/misc/types_nl.h>
#include <nel/misc/debug.h>
#include <nel/misc/common.h>
#include <vector>
#include <map>
// User #includes
namespace EGSPD
{
//
// Forward declarations
//
//
// Typedefs & Enums
//
/** TSeason
* defined at game_share/pd_scripts/season.pds:6
*/
class CSeason
{
public:
/// \name Enum values
// @{
enum TSeason
{
Spring = 0,
Summer = 1,
Autumn = 2,
Winter = 3,
Invalid = 4,
___TSeason_useSize = 5,
Unknown = 5,
EndSeason = 5,
};
// @}
public:
/// \name Conversion methods
// @{
/**
* Use these methods to convert from enum value to string (and vice versa)
*/
static const std::string& toString(TSeason v);
static CSeason::TSeason fromString(const std::string& v);
// @}
private:
/// \name Enum initialisation
// @{
static void init();
static bool _Initialised;
static std::string _UnknownString;
static std::vector<std::string> _StrTable;
static std::map<std::string, TSeason> _ValueMap;
// @}
};
} // End of EGSPD
//
// Inline implementations
//
#include "season_inline.h"
#endif