2009-01-14 04:37:51 -08:00
|
|
|
// Copyright (C) 2002-2009 Nikolaus Gebhardt
|
2008-05-22 04:51:37 -07:00
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
2007-09-07 23:10:52 -07:00
|
|
|
#ifndef __IRR_IRR_MESH_WRITER_H_INCLUDED__
|
|
|
|
#define __IRR_IRR_MESH_WRITER_H_INCLUDED__
|
|
|
|
|
|
|
|
#include "IMeshWriter.h"
|
|
|
|
#include "S3DVertex.h"
|
|
|
|
#include "IVideoDriver.h"
|
|
|
|
#include "IFileSystem.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace io
|
|
|
|
{
|
|
|
|
class IXMLWriter;
|
|
|
|
}
|
|
|
|
namespace scene
|
|
|
|
{
|
2007-09-08 08:26:47 -07:00
|
|
|
class IMeshBuffer;
|
2007-09-07 23:10:52 -07:00
|
|
|
|
|
|
|
|
2007-09-08 08:26:47 -07:00
|
|
|
//! class to write meshes, implementing a IrrMesh (.irrmesh, .xml) writer
|
|
|
|
/** This writer implementation has been originally developed for irrEdit and then
|
|
|
|
merged out to the Irrlicht Engine */
|
|
|
|
class CIrrMeshWriter : public IMeshWriter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2007-09-19 07:08:28 -07:00
|
|
|
CIrrMeshWriter(video::IVideoDriver* driver, io::IFileSystem* fs);
|
2007-09-08 08:26:47 -07:00
|
|
|
virtual ~CIrrMeshWriter();
|
|
|
|
|
|
|
|
//! Returns the type of the mesh writer
|
|
|
|
virtual EMESH_WRITER_TYPE getType() const;
|
|
|
|
|
|
|
|
//! writes a mesh
|
|
|
|
virtual bool writeMesh(io::IWriteFile* file, scene::IMesh* mesh, s32 flags=EMWF_NONE);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
void writeBoundingBox(const core::aabbox3df& box);
|
|
|
|
|
|
|
|
void writeMeshBuffer(const scene::IMeshBuffer* buffer);
|
2007-09-07 23:10:52 -07:00
|
|
|
|
2007-09-08 08:26:47 -07:00
|
|
|
void writeMaterial(const video::SMaterial& material);
|
2007-09-07 23:10:52 -07:00
|
|
|
|
2007-09-10 02:27:37 -07:00
|
|
|
core::stringw getVectorAsStringLine(const core::vector3df& v) const;
|
2007-09-07 23:10:52 -07:00
|
|
|
|
2007-09-10 02:27:37 -07:00
|
|
|
core::stringw getVectorAsStringLine(const core::vector2df& v) const;
|
2007-09-07 23:10:52 -07:00
|
|
|
|
2007-09-08 08:26:47 -07:00
|
|
|
// member variables:
|
2007-09-07 23:10:52 -07:00
|
|
|
|
2007-09-08 08:26:47 -07:00
|
|
|
io::IFileSystem* FileSystem;
|
|
|
|
video::IVideoDriver* VideoDriver;
|
|
|
|
io::IXMLWriter* Writer;
|
|
|
|
};
|
2007-09-07 23:10:52 -07:00
|
|
|
|
|
|
|
} // end namespace
|
2007-09-08 03:51:27 -07:00
|
|
|
} // end namespace
|
|
|
|
|
|
|
|
#endif
|
2007-09-07 23:10:52 -07:00
|
|
|
|