 |
Blamite Game Engine - Guerilla (Library)
00386.06.16.23.0646.blamite
The tag editor for the Blamite Game Engine.
|
Go to the documentation of this file.
8 #ifdef GUERILLA_LIB_EXPORTS
9 #define GUERILLA_LIB_API __declspec(dllexport)
11 #define GUERILLA_LIB_API __declspec(dllimport)
29 bool ParseXMLData(rapidxml::xml_node<>* field_node)
override;
44 void* data_address =
nullptr;
46 std::string referenced_tag_path =
"";
47 std::string referenced_tag_class =
"";
54 std::vector<char> GetReferencedTagPathAsBytes();
Class representing a tag field.
Definition: fields.h:202
virtual BlamTagField * GenerateTagField(BlamTag *tag)
Generates a new tag field from this plugin field.
Definition: BlamPluginField.cpp:40
int data_size
Definition: tagref.h:43
Class representing an tagref plugin field.
Definition: tagref.h:20
std::vector< char > GetValueAsBytes()
Retrieves the field value as a list of bytes.
Definition: BlamTagField_Tagref.cpp:15
BlamPluginField_Tagref(BlamPluginField *base_field)
Definition: BlamPluginField_Tagref.cpp:6
BlamTagField * GenerateTagField(BlamTag *tag, void *address) override
Generates a new tag field from this plugin field.
Definition: BlamPluginField_Tagref.cpp:60
std::string field_id
The ID of this field.
Definition: fields.h:213
BlamTagFieldType
Enumerator containing all possible tag field types.
Definition: fields.h:24
std::string GenerateCppStructString(std::string line_prefix="") override
Generates a string containing C++ code representing this plugin field.
Definition: BlamPluginField_Tagref.cpp:11
std::string referenced_tag_class
Definition: tagref.h:47
void * data_address
Definition: tagref.h:44
virtual std::string GenerateXMLString()
Generates a string with the field ID and value, ready to be written to an XML file.
Definition: BlamTagField.cpp:9
Class representing an tagref tag field.
Definition: tagref.h:40
std::string display_name
The display name of the field.
Definition: fields.h:70
Class representing a plugin field.
Definition: fields.h:60
Class representing a Tag.
Definition: tags.h:232
@ Tagref
Indicates that the field is a tag reference.
virtual std::string GenerateCppStructString(std::string line_prefix="")
Generates a string containing C++ code representing this plugin field.
Definition: BlamPluginField.cpp:74
virtual bool ParseXMLData(rapidxml::xml_node<> *field_node)
Populates data within the plugin field from an XML node.
Definition: BlamPluginField.cpp:84
std::vector< char > GetReferencedTagPathAsBytes()
Definition: BlamTagField_Tagref.cpp:35
std::string field_id
The ID of the field.
Definition: fields.h:72
std::string GenerateXMLString()
Generates a string with the field ID and value, ready to be written to an XML file.
Definition: BlamTagField_Tagref.cpp:10
BlamPluginField * plugin_field
The plugin data associated with this field, if any.
Definition: fields.h:212
std::vector< std::string > allowed_classes
Definition: tagref.h:23
std::string description
An optional description of the field.
Definition: fields.h:71
#define GUERILLA_LIB_API
Definition: tagref.h:11
std::string GenerateCppClassString(std::string line_prefix="") override
Generates a string containing C++ code representing this plugin field.
Definition: BlamPluginField_Tagref.cpp:16
virtual std::string GenerateCppClassString(std::string line_prefix="")
Generates a string containing C++ code representing this plugin field.
Definition: BlamPluginField.cpp:79
virtual std::vector< char > GetValueAsBytes()
Retrieves the field value as a list of bytes.
Definition: BlamTagField.cpp:14
std::string referenced_tag_path
Definition: tagref.h:46
BlamTagField_Tagref(BlamTag *_tag)
Definition: BlamTagField_Tagref.cpp:5
bool ParseXMLData(rapidxml::xml_node<> *field_node) override
Populates data within the plugin field from an XML node.
Definition: BlamPluginField_Tagref.cpp:30