/* ----------------------------------------------------------------------------- The MIT License (MIT) Copyright (c) 2013-08-10 Tobias Peters Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----------------------------------------------------------------------------- */ #ifndef __QGearsBackgroundFileSerializer_H__ #define __QGearsBackgroundFileSerializer_H__ #include "common/TypeDefine.h" #include "data/QGearsBackgroundFile.h" #include "data/QGearsSerializer.h" namespace QGears { class BackgroundFileSerializer : public Serializer { public: BackgroundFileSerializer(); virtual ~BackgroundFileSerializer(); virtual void importBackgroundFile( Ogre::DataStreamPtr &stream, BackgroundFile *pDest ); struct Header { uint16 unused; uint16 sort_sprites_by_palette; }; typedef BackgroundFile::Layer Layer; typedef BackgroundFile::SpriteData SpriteData; typedef BackgroundFile::SpriteList SpriteList; typedef BackgroundFile::Page Page; protected: virtual void readFileHeader( Ogre::DataStreamPtr &stream ); virtual void readSectionHeader( Ogre::DataStreamPtr &stream, const String §ion_name ); virtual void readPallete( Ogre::DataStreamPtr &stream, BackgroundFile *pDest ); virtual void readBackground( Ogre::DataStreamPtr &stream, BackgroundFile *pDest ); virtual void readTexture( Ogre::DataStreamPtr &stream, BackgroundFile *pDest ); virtual void readEnd( Ogre::DataStreamPtr &stream ); virtual void readLayer( Ogre::DataStreamPtr &stream, Layer *pDest, size_t layer_index ); virtual void readObject( Ogre::DataStreamPtr &stream, SpriteData &pDest ); virtual void readObject( Ogre::DataStreamPtr &stream, Page &pDest ); using Serializer::readObject; template void readVector( Ogre::DataStreamPtr &stream, std::vector &pDest, size_t count ) { pDest.clear(); pDest.reserve( count ); for( size_t i( count ); i--; ) { ValueType in_tmp; readObject( stream, in_tmp ); pDest.push_back( in_tmp ); } } static const String SECTION_NAME_PALETTE; static const String SECTION_NAME_BACK; static const String SECTION_NAME_TEXTURE; static const String TAG_FILE_END; static const Ogre::Real unknown_24_SCALE; private: Header m_header; }; } #endif // __QGearsBackgroundFileSerializer_H__