76 lines
3.1 KiB
C++
76 lines
3.1 KiB
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuroraEnum.hpp
|
|
Date: 2021-10-28
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
/// Configuration
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if defined(AUE_OUT_OF_ECOSYSTEM)
|
|
|
|
#if !defined(AU_AuHashMap)
|
|
#define AU_AuHashMap
|
|
template<typename T, typename Z>
|
|
using AuHashMap = std::unordered_map<T, Z>;
|
|
#endif
|
|
|
|
#if !defined(AU_AuString)
|
|
#define AU_AuString
|
|
using AuString = std::string;
|
|
#endif
|
|
|
|
#if !defined(AU_UInt)
|
|
#define AU_UInt
|
|
using AuUInt = size_t;
|
|
#endif
|
|
|
|
#endif
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
/// Utilities
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// @hideinitializer
|
|
#define AUE_BRACKET_SCOPE(...) __VA_ARGS__
|
|
|
|
/// @hideinitializer
|
|
#define AUE_STRIP_BRACKETS_(X) X
|
|
|
|
/// @hideinitializer
|
|
#define AUE_STRIP_BRACKETS(X) AUE_STRIP_BRACKETS_(AUE_BRACKET_SCOPE X)
|
|
|
|
/// @hideinitializer
|
|
#define AUE_EMIT_ARRAY(val) val,
|
|
|
|
/// @hideinitializer
|
|
#define AUE_EMIT_A(val) #val
|
|
|
|
/// @hideinitializer
|
|
#define AUE_EMIT_B(val) , #val
|
|
|
|
/// @hideinitializer
|
|
#define AUE_EMIT_PAIRNAME(name, val) {#val, name::val},
|
|
|
|
/// @hideinitializer
|
|
#define AUE_EMIT_CALL(name, val) consumer(name::val);
|
|
|
|
/// @hideinitializer
|
|
#define AUE_EMIT_CHECK(name, val) if (codename == #val) {return name::val;}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
// API
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#define AUE_DEFINE(name, vals) enum class name { AU_FOR_EACH(AUE_EMIT_ARRAY, AUE_STRIP_BRACKETS(vals)) kEnumCount }; \
|
|
static inline const AuString k ## name ## ToString[static_cast<int>(name::kEnumCount)] = {AU_FOR_EACH_FIRST(AUE_EMIT_A, AUE_EMIT_B, AUE_STRIP_BRACKETS(vals)) }; \
|
|
inline const AuHashMap<AuString, name> k ## Name ## FromString = { AU_FOR_EACH_THAT(AUE_EMIT_PAIRNAME, name, AUE_STRIP_BRACKETS(vals)) {"kEnumCount", name::kEnumCount} }; \
|
|
static inline name name ## FromString (const AuString &codename) { AU_FOR_EACH_THAT(AUE_EMIT_CHECK, name, AUE_STRIP_BRACKETS(vals)) return name::kEnumCount; } \
|
|
static inline name name ## FromHashString(const AuString &codename) { auto itr = k ## Name ## FromString.find(codename); if (itr == k ## Name ## FromString.end()) return name::kEnumCount; return itr->second; } \
|
|
static inline const AuString & name ## ToString(name val) { static const AuString invalid = "kEnumCount"; if (static_cast<AuUInt>(val) >= static_cast<int>(name::kEnumCount)) return invalid; return k ## name ## ToString[static_cast<AuUInt>(val)]; } \
|
|
static inline void name ## ForEach(const AuConsumer<name> &consumer) { AU_FOR_EACH_THAT(AUE_EMIT_CALL, name, AUE_STRIP_BRACKETS(vals)) } |