2009-01-14 04:37:51 -08:00
|
|
|
// Copyright (C) 2002-2009 Nikolaus Gebhardt
|
2007-05-20 11:03:49 -07:00
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
|
|
|
#ifndef __C_XML_WRITER_H_INCLUDED__
|
|
|
|
#define __C_XML_WRITER_H_INCLUDED__
|
|
|
|
|
|
|
|
#include <wchar.h>
|
|
|
|
#include "IXMLWriter.h"
|
|
|
|
#include "IWriteFile.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace io
|
|
|
|
{
|
|
|
|
|
|
|
|
//! Interface providing methods for making it easier to write XML files.
|
|
|
|
class CXMLWriter : public IXMLWriter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//! Constructor
|
|
|
|
CXMLWriter(IWriteFile* file);
|
|
|
|
|
|
|
|
//! Destructor
|
|
|
|
virtual ~CXMLWriter();
|
|
|
|
|
|
|
|
//! Writes a xml 1.0 header like <?xml version="1.0"?>
|
|
|
|
virtual void writeXMLHeader();
|
|
|
|
|
|
|
|
//! Writes an xml element with maximal 5 attributes
|
|
|
|
virtual void writeElement(const wchar_t* name, bool empty=false,
|
|
|
|
const wchar_t* attr1Name = 0, const wchar_t* attr1Value = 0,
|
|
|
|
const wchar_t* attr2Name = 0, const wchar_t* attr2Value = 0,
|
|
|
|
const wchar_t* attr3Name = 0, const wchar_t* attr3Value = 0,
|
|
|
|
const wchar_t* attr4Name = 0, const wchar_t* attr4Value = 0,
|
|
|
|
const wchar_t* attr5Name = 0, const wchar_t* attr5Value = 0);
|
|
|
|
|
|
|
|
//! Writes an xml element with any number of attributes
|
|
|
|
virtual void writeElement(const wchar_t* name, bool empty,
|
|
|
|
core::array<core::stringw> &names, core::array<core::stringw> &values);
|
|
|
|
|
|
|
|
//! Writes a comment into the xml file
|
|
|
|
virtual void writeComment(const wchar_t* comment);
|
|
|
|
|
|
|
|
//! Writes the closing tag for an element. Like </foo>
|
|
|
|
virtual void writeClosingTag(const wchar_t* name);
|
|
|
|
|
|
|
|
//! Writes a text into the file. All occurrences of special characters like
|
|
|
|
//! & (&), < (<), > (>), and " (") are automaticly replaced.
|
|
|
|
virtual void writeText(const wchar_t* text);
|
|
|
|
|
|
|
|
//! Writes a line break
|
|
|
|
virtual void writeLineBreak();
|
|
|
|
|
|
|
|
struct XMLSpecialCharacters
|
|
|
|
{
|
|
|
|
wchar_t Character;
|
|
|
|
const wchar_t* Symbol;
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void writeAttribute(const wchar_t* att, const wchar_t* name);
|
|
|
|
|
|
|
|
IWriteFile* File;
|
|
|
|
s32 Tabs;
|
|
|
|
|
|
|
|
bool TextWrittenLast;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace irr
|
|
|
|
} // end namespace io
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|