Added enum support to entity file format, see "Team" component for an example. Use ComponentInfo::Enum to convert enum string keys to its corresponding integer representation at runtime.
This commit is contained in:
@@ -9,7 +9,8 @@ struct ComponentInfo
|
||||
{
|
||||
std::string Annotation;
|
||||
unsigned int Allocation = 0;
|
||||
unsigned int Stride = 0;
|
||||
std::map<std::string, std::string> FieldAnnotations;
|
||||
std::map<std::string, std::map<std::string, int>> FieldEnumDefinitions;
|
||||
};
|
||||
|
||||
struct Field_t
|
||||
@@ -23,8 +24,9 @@ struct ComponentInfo
|
||||
std::string Name;
|
||||
std::unordered_map<std::string, Field_t> Fields;
|
||||
std::vector<std::string> FieldsInOrder;
|
||||
Meta_t Meta;
|
||||
unsigned int Stride = 0;
|
||||
std::shared_ptr<char> Defaults = nullptr;
|
||||
std::shared_ptr<Meta_t> Meta = nullptr;
|
||||
};
|
||||
|
||||
template<>
|
||||
|
||||
Reference in New Issue
Block a user