| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /*
- -----------------------------------------------------------------------------
- Copyright (c) 06.10.2013 Tobias Peters <tobias.peters@kreativeffekt.at>
- This file is part of V-Gears
- V-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.
- V-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.
- -----------------------------------------------------------------------------
- */
- #include <fstream>
- #include <boost/test/unit_test.hpp>
- #include <Ogre.h>
- #include "map/VGearsWalkmeshFileXMLSerializer.h"
- BOOST_AUTO_TEST_CASE( read_file )
- {
- class TestFile : public VGears::WalkmeshFile
- {
- public:
- TestFile() : VGears::WalkmeshFile( NULL, "", 0, "" ) {}
- size_t getCalculatedSize() const { return VGears::WalkmeshFile::calculateSize(); }
- virtual void unload( void ) {}
- };
- const char* file_name( "misc/walkmesh.xml" );
- std::ifstream ifs( file_name, std::ifstream::binary );
- BOOST_REQUIRE( ifs.is_open() );
- Ogre::DataStreamPtr stream( OGRE_NEW Ogre::FileStreamDataStream( &ifs, false ) );
- BOOST_REQUIRE( stream->isReadable() );
- Ogre::LogManager logMgr;
- VGears::WalkmeshFileXMLSerializer ser;
- TestFile f;
- logMgr.createLog( "Default Log", true, true, true );
- ser.importWalkmeshFile( stream, &f );
- VGears::WalkmeshFile::TriangleList &triangles( f.getTriangles() );
- BOOST_CHECK_EQUAL( 2, triangles.size() );
- VGears::WalkmeshFile::Triangle &t1( triangles.front() );
- BOOST_CHECK_EQUAL( Ogre::Vector3( 1, 2, 4 ), t1.a );
- BOOST_CHECK_EQUAL( Ogre::Vector3( 8, 16, 32 ), t1.b );
- BOOST_CHECK_EQUAL( Ogre::Vector3( 64, 128, 256 ), t1.c );
- BOOST_CHECK_EQUAL( 1, t1.access_side[0] );
- BOOST_CHECK_EQUAL( -1, t1.access_side[1] );
- BOOST_CHECK_EQUAL( -1, t1.access_side[2] );
- VGears::WalkmeshFile::Triangle &t2( triangles.back() );
- BOOST_CHECK_EQUAL( Ogre::Vector3( 4, 2, 1 ), t2.a );
- BOOST_CHECK_EQUAL( Ogre::Vector3( 32, 16, 8 ), t2.b );
- BOOST_CHECK_EQUAL( Ogre::Vector3( 256, 128, 64 ), t2.c );
- BOOST_CHECK_EQUAL( -1, t2.access_side[0] );
- BOOST_CHECK_EQUAL( 0, t2.access_side[1] );
- BOOST_CHECK_EQUAL( -1, t2.access_side[2] );
- logMgr.destroyLog( "Default Log" );
- ifs.close();
- }
|