diff options
author | David Walter Seikel | 2016-03-28 22:28:34 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-03-28 22:28:34 +1000 |
commit | 7028cbe09c688437910a25623098762bf0fa592d (patch) | |
tree | 10b5af58277d9880380c2251f109325542c4e6eb /src/others/irrlicht-1.8.1/source/Irrlicht/CIrrMeshWriter.h | |
parent | Move lemon to the src/others directory. (diff) | |
download | SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.zip SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.gz SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.bz2 SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.xz |
Move Irrlicht to src/others.
Diffstat (limited to 'src/others/irrlicht-1.8.1/source/Irrlicht/CIrrMeshWriter.h')
-rw-r--r-- | src/others/irrlicht-1.8.1/source/Irrlicht/CIrrMeshWriter.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/src/others/irrlicht-1.8.1/source/Irrlicht/CIrrMeshWriter.h b/src/others/irrlicht-1.8.1/source/Irrlicht/CIrrMeshWriter.h new file mode 100644 index 0000000..4b62633 --- /dev/null +++ b/src/others/irrlicht-1.8.1/source/Irrlicht/CIrrMeshWriter.h | |||
@@ -0,0 +1,63 @@ | |||
1 | // Copyright (C) 2002-2012 Nikolaus Gebhardt | ||
2 | // This file is part of the "Irrlicht Engine". | ||
3 | // For conditions of distribution and use, see copyright notice in irrlicht.h | ||
4 | |||
5 | #ifndef __IRR_IRR_MESH_WRITER_H_INCLUDED__ | ||
6 | #define __IRR_IRR_MESH_WRITER_H_INCLUDED__ | ||
7 | |||
8 | #include "IMeshWriter.h" | ||
9 | #include "S3DVertex.h" | ||
10 | #include "IVideoDriver.h" | ||
11 | #include "IFileSystem.h" | ||
12 | |||
13 | namespace irr | ||
14 | { | ||
15 | namespace io | ||
16 | { | ||
17 | class IXMLWriter; | ||
18 | } | ||
19 | namespace scene | ||
20 | { | ||
21 | class IMeshBuffer; | ||
22 | |||
23 | |||
24 | //! class to write meshes, implementing a IrrMesh (.irrmesh, .xml) writer | ||
25 | /** This writer implementation has been originally developed for irrEdit and then | ||
26 | merged out to the Irrlicht Engine */ | ||
27 | class CIrrMeshWriter : public IMeshWriter | ||
28 | { | ||
29 | public: | ||
30 | |||
31 | CIrrMeshWriter(video::IVideoDriver* driver, io::IFileSystem* fs); | ||
32 | virtual ~CIrrMeshWriter(); | ||
33 | |||
34 | //! Returns the type of the mesh writer | ||
35 | virtual EMESH_WRITER_TYPE getType() const; | ||
36 | |||
37 | //! writes a mesh | ||
38 | virtual bool writeMesh(io::IWriteFile* file, scene::IMesh* mesh, s32 flags=EMWF_NONE); | ||
39 | |||
40 | protected: | ||
41 | |||
42 | void writeBoundingBox(const core::aabbox3df& box); | ||
43 | |||
44 | void writeMeshBuffer(const scene::IMeshBuffer* buffer); | ||
45 | |||
46 | void writeMaterial(const video::SMaterial& material); | ||
47 | |||
48 | core::stringw getVectorAsStringLine(const core::vector3df& v) const; | ||
49 | |||
50 | core::stringw getVectorAsStringLine(const core::vector2df& v) const; | ||
51 | |||
52 | // member variables: | ||
53 | |||
54 | io::IFileSystem* FileSystem; | ||
55 | video::IVideoDriver* VideoDriver; | ||
56 | io::IXMLWriter* Writer; | ||
57 | }; | ||
58 | |||
59 | } // end namespace | ||
60 | } // end namespace | ||
61 | |||
62 | #endif | ||
63 | |||