From 959831f4ef5a3e797f576c3de08cd65032c997ad Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sun, 13 Jan 2013 18:54:10 +1000 Subject: Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard. --- .../source/Irrlicht/CSMFMeshFileLoader.h | 134 ++++++++++----------- 1 file changed, 67 insertions(+), 67 deletions(-) (limited to 'libraries/irrlicht-1.8/source/Irrlicht/CSMFMeshFileLoader.h') diff --git a/libraries/irrlicht-1.8/source/Irrlicht/CSMFMeshFileLoader.h b/libraries/irrlicht-1.8/source/Irrlicht/CSMFMeshFileLoader.h index 2e87aca..63de66f 100644 --- a/libraries/irrlicht-1.8/source/Irrlicht/CSMFMeshFileLoader.h +++ b/libraries/irrlicht-1.8/source/Irrlicht/CSMFMeshFileLoader.h @@ -1,67 +1,67 @@ -// Copyright (C) 2010-2012 Gaz Davidson -// This file is part of the "Irrlicht Engine". -// For conditions of distribution and use, see copyright notice in irrlicht.h - -#ifndef __C_SMF_MESH_LOADER_H_INCLUDED__ -#define __C_SMF_MESH_LOADER_H_INCLUDED__ - -#include "IMeshLoader.h" -#include "SMesh.h" - -namespace irr -{ - -namespace video -{ - class IVideoDriver; -} - -namespace scene -{ - -//! Class which can load -class CSMFMeshFileLoader : public virtual IMeshLoader -{ -public: - - CSMFMeshFileLoader(video::IVideoDriver* driver); - - //! Returns true if the file might be loaded by this class. - virtual bool isALoadableFileExtension(const io::path& filename) const; - - //! Creates/loads an animated mesh from the file. - virtual IAnimatedMesh* createMesh(io::IReadFile* file); -private: - - void loadLimb(io::IReadFile* file, scene::SMesh* mesh, const core::matrix4 &parentTransformation); - - video::IVideoDriver* Driver; -}; - -} // end namespace scene - -namespace io -{ - class BinaryFile - { - public: - //! reads most types from the given file, moving the file pointer along - template - static void read(io::IReadFile* file, T &out, bool bigEndian=false); - - //! reads a 3d vector from the file, moving the file pointer along - static void read(io::IReadFile* file, core::vector3df &outVector2d, bool bigEndian=false); - - //! reads a 2d vector from the file, moving the file pointer along - static void read(io::IReadFile* file, core::vector2df &outVector2d, bool bigEndian=false); - - //! reads a null terminated string from the file, moving the file pointer along - static void read(io::IReadFile* file, core::stringc &outString, bool bigEndian=false); - - }; -} - -} // end namespace irr - -#endif // __C_SMF_MESH_LOADER_H_INCLUDED__ - +// Copyright (C) 2010-2012 Gaz Davidson +// This file is part of the "Irrlicht Engine". +// For conditions of distribution and use, see copyright notice in irrlicht.h + +#ifndef __C_SMF_MESH_LOADER_H_INCLUDED__ +#define __C_SMF_MESH_LOADER_H_INCLUDED__ + +#include "IMeshLoader.h" +#include "SMesh.h" + +namespace irr +{ + +namespace video +{ + class IVideoDriver; +} + +namespace scene +{ + +//! Class which can load +class CSMFMeshFileLoader : public virtual IMeshLoader +{ +public: + + CSMFMeshFileLoader(video::IVideoDriver* driver); + + //! Returns true if the file might be loaded by this class. + virtual bool isALoadableFileExtension(const io::path& filename) const; + + //! Creates/loads an animated mesh from the file. + virtual IAnimatedMesh* createMesh(io::IReadFile* file); +private: + + void loadLimb(io::IReadFile* file, scene::SMesh* mesh, const core::matrix4 &parentTransformation); + + video::IVideoDriver* Driver; +}; + +} // end namespace scene + +namespace io +{ + class BinaryFile + { + public: + //! reads most types from the given file, moving the file pointer along + template + static void read(io::IReadFile* file, T &out, bool bigEndian=false); + + //! reads a 3d vector from the file, moving the file pointer along + static void read(io::IReadFile* file, core::vector3df &outVector2d, bool bigEndian=false); + + //! reads a 2d vector from the file, moving the file pointer along + static void read(io::IReadFile* file, core::vector2df &outVector2d, bool bigEndian=false); + + //! reads a null terminated string from the file, moving the file pointer along + static void read(io::IReadFile* file, core::stringc &outString, bool bigEndian=false); + + }; +} + +} // end namespace irr + +#endif // __C_SMF_MESH_LOADER_H_INCLUDED__ + -- cgit v1.1