- Added missing projects "VFS" & "export" to SVN

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@4447 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
Wanne
2011-05-26 11:25:04 +00:00
parent 6e2bdd557c
commit be95a2a7b1
203 changed files with 44525 additions and 0 deletions
+75
View File
@@ -0,0 +1,75 @@
#ifndef _XMLWRITER_H_
#define _XMLWRITER_H_
#include <vfs/Core/Interface/vfs_file_interface.h>
#include <vfs/Core/vfs_string.h>
#include <stack>
#include <string>
#include <sstream>
#include <vector>
class XMLWriter
{
public:
typedef std::pair<std::string, std::string> attribute_type;
public:
XMLWriter() : m_iIndentLevel(0)
{
m_ssBuffer << "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n" ;
};
~XMLWriter()
{};
template<typename ValueType>
void addAttributeToNextValue(vfs::String const& attribute, ValueType const& value)
{
std::stringstream temp_buffer;
temp_buffer << value;
m_stNextValAttributes.push_back( attribute_type(attribute.utf8(),temp_buffer.str()) );
}
template<typename ValueType>
void addValue(vfs::String const& key, ValueType const& value)
{
std::string utf8key = key.utf8();
m_ssBuffer << indent() << "<" << utf8key;
insertAttributesIntoBuffer();
m_ssBuffer << ">" << value << "</" << utf8key << ">\n";
}
template<>
void addValue<std::string>(vfs::String const& key, std::string const& value)
{
std::string utf8key = key.utf8();
m_ssBuffer << indent() << "<" << utf8key;
insertAttributesIntoBuffer();
m_ssBuffer << ">" << handleSpecialCharacters(value) << "</" << utf8key << ">\n";
}
void addValue(vfs::String const& key);
void addComment(vfs::String const& comment);
void addFlag(vfs::UInt32 const& flags, vfs::UInt32 const& flag, vfs::String strFlag);
void openNode(vfs::String const& key);
bool closeNode();
bool writeToFile(vfs::Path const& sFileName);
bool writeToFile(vfs::tWritableFile* pFile);
private:
std::string indent();
std::string handleSpecialCharacters(std::string const& str);
void insertAttributesIntoBuffer();
private:
std::stringstream m_ssBuffer;
std::stack<std::string> m_stOpenNodes;
std::vector<attribute_type> m_stNextValAttributes;
int m_iIndentLevel;
};
void testMXLWriter();
#endif // _XMLWRITER_H_