| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /*
- -----------------------------------------------------------------------------
- Copyright (c) 27.10.2013 Tobias Peters <tobias.peters@kreativeffekt.at>
- This file is part of Q-Gears
- Q-Gears is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, version 2.0 (GPLv2) of the License.
- Q-Gears is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- -----------------------------------------------------------------------------
- */
- #ifndef __QGearsMapFileXMLSerializer_H__
- #define __QGearsMapFileXMLSerializer_H__
- #include "common/TypeDefine.h"
- #include "data/QGearsXMLSerializer.h"
- #include "QGearsMapFile.h"
- namespace QGears
- {
- class MapFileXMLSerializer : public XMLSerializer
- {
- public:
- MapFileXMLSerializer();
- virtual ~MapFileXMLSerializer();
-
- virtual void importMapFile( Ogre::DataStreamPtr &stream, MapFile *pDest );
-
- typedef MapFile::Point Point;
- typedef MapFile::PointList PointList;
- typedef MapFile::Trigger Trigger;
- typedef MapFile::TriggerList TriggerList;
- protected:
- virtual void readHeader( TiXmlNode *node );
- virtual void readScript( TiXmlNode &node, MapFile *pDest );
- virtual void readBackground2D( TiXmlNode &node, MapFile *pDest );
- virtual void readWalkmesh( TiXmlNode &node, MapFile *pDest );
- virtual void readForwardDirection( TiXmlNode &node, MapFile *pDest );
- virtual void readEntities( TiXmlNode &node, MapFile *pDest );
- virtual void readObject( TiXmlNode &node, Point &pDest );
- virtual void readObject( TiXmlNode &node, Trigger &pDest );
- template<typename ValueType> void
- readEntities( TiXmlNode &node, const String &tag, std::vector<ValueType> &pDest );
- private:
- };
- }
- #endif // __QGearsMapFileXMLSerializer_H__
|