2007-05-20 11:03:49 -07:00
|
|
|
// Copyright (C) 2002-2007 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
|
|
|
#ifndef __I_MESH_LOADER_H_INCLUDED__
|
|
|
|
#define __I_MESH_LOADER_H_INCLUDED__
|
|
|
|
|
2007-09-06 23:11:47 -07:00
|
|
|
#include "IReferenceCounted.h"
|
2007-05-20 11:03:49 -07:00
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace io
|
|
|
|
{
|
|
|
|
class IReadFile;
|
|
|
|
} // end namespace io
|
|
|
|
namespace scene
|
|
|
|
{
|
|
|
|
class IAnimatedMesh;
|
|
|
|
|
|
|
|
//! Class which is able to load an animated mesh from a file.
|
|
|
|
/** If you want the Irrlicht Engine be able to load meshes of
|
|
|
|
currently unsupported file formats (e.g .cob), then implement
|
|
|
|
this and add your new Surface loader with
|
|
|
|
ISceneManager::addExternalMeshLoader() to the engine. */
|
2007-09-06 23:11:47 -07:00
|
|
|
class IMeshLoader : public virtual IReferenceCounted
|
2007-05-20 11:03:49 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//! destructor
|
2007-09-16 16:41:55 -07:00
|
|
|
virtual ~IMeshLoader() {}
|
2007-05-20 11:03:49 -07:00
|
|
|
|
|
|
|
//! Returns true if the file maybe is able to be loaded by this class.
|
|
|
|
/** This decision should be based only on the file extension (e.g. ".cob") */
|
2007-09-16 16:41:55 -07:00
|
|
|
virtual bool isALoadableFileExtension(const c8* fileName) const = 0;
|
2007-05-20 11:03:49 -07:00
|
|
|
|
|
|
|
//! Creates/loads an animated mesh from the file.
|
|
|
|
/** \return Pointer to the created mesh. Returns 0 if loading failed.
|
|
|
|
If you no longer need the mesh, you should call IAnimatedMesh::drop().
|
2007-09-06 23:11:47 -07:00
|
|
|
See IReferenceCounted::drop() for more information. */
|
2007-09-19 07:08:28 -07:00
|
|
|
virtual IAnimatedMesh* createMesh(io::IReadFile* file) = 0;
|
2007-05-20 11:03:49 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // end namespace scene
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|