2008-05-09 17:24:28 +00:00
|
|
|
/*
|
2012-02-03 03:38:30 +00:00
|
|
|
Open Asset Import Library (assimp)
|
2008-05-09 17:24:28 +00:00
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
2012-02-03 03:38:30 +00:00
|
|
|
Copyright (c) 2006-2012, assimp team
|
2008-05-09 17:24:28 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the
|
|
|
|
following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
|
|
|
|
2012-02-03 03:38:30 +00:00
|
|
|
* Neither the name of the assimp team, nor the names of its
|
2008-05-09 17:24:28 +00:00
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
2012-02-03 03:38:30 +00:00
|
|
|
written permission of the assimp team.
|
2008-05-09 17:24:28 +00:00
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2008-05-16 17:57:48 +00:00
|
|
|
----------------------------------------------------------------------*/
|
2008-05-05 12:36:31 +00:00
|
|
|
#ifndef OBJFILEMTLIMPORTER_H_INC
|
|
|
|
#define OBJFILEMTLIMPORTER_H_INC
|
|
|
|
|
2008-05-16 17:57:48 +00:00
|
|
|
#include <vector>
|
2008-05-24 08:12:53 +00:00
|
|
|
#include <string>
|
2008-05-16 17:57:48 +00:00
|
|
|
|
|
|
|
struct aiColor3D;
|
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
namespace Assimp
|
|
|
|
{
|
|
|
|
|
2008-05-16 17:57:48 +00:00
|
|
|
namespace ObjFile
|
|
|
|
{
|
|
|
|
struct Model;
|
|
|
|
struct Material;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
/**
|
|
|
|
* @class ObjFileMtlImporter
|
|
|
|
* @brief Loads the material description from a mtl file.
|
|
|
|
*/
|
|
|
|
class ObjFileMtlImporter
|
|
|
|
{
|
2008-05-16 17:57:48 +00:00
|
|
|
public:
|
2010-10-26 18:48:55 +00:00
|
|
|
static const size_t BUFFERSIZE = 2048;
|
2008-05-16 17:57:48 +00:00
|
|
|
typedef std::vector<char> DataArray;
|
|
|
|
typedef std::vector<char>::iterator DataArrayIt;
|
|
|
|
typedef std::vector<char>::const_iterator ConstDataArrayIt;
|
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
public:
|
|
|
|
//! \brief Default constructor
|
2008-05-16 17:57:48 +00:00
|
|
|
ObjFileMtlImporter( std::vector<char> &buffer, const std::string &strAbsPath,
|
|
|
|
ObjFile::Model *pModel );
|
2008-05-05 12:36:31 +00:00
|
|
|
|
|
|
|
//! \brief DEstructor
|
|
|
|
~ObjFileMtlImporter();
|
|
|
|
|
|
|
|
private:
|
2008-08-14 21:25:50 +00:00
|
|
|
/// Copy constructor, empty.
|
2008-05-05 12:36:31 +00:00
|
|
|
ObjFileMtlImporter(const ObjFileMtlImporter &rOther);
|
2008-08-14 21:25:50 +00:00
|
|
|
/// \brief Assignment operator, returns only a reference of this instance.
|
2008-05-05 12:36:31 +00:00
|
|
|
ObjFileMtlImporter &operator = (const ObjFileMtlImporter &rOther);
|
2008-08-14 21:25:50 +00:00
|
|
|
/// Load the whole material description
|
2008-05-16 17:57:48 +00:00
|
|
|
void load();
|
2008-08-14 21:25:50 +00:00
|
|
|
/// Get color data.
|
2008-05-16 17:57:48 +00:00
|
|
|
void getColorRGBA( aiColor3D *pColor);
|
2008-08-14 21:25:50 +00:00
|
|
|
/// Get illumination model from loaded data
|
2008-05-16 17:57:48 +00:00
|
|
|
void getIlluminationModel( int &illum_model );
|
2008-08-14 21:25:50 +00:00
|
|
|
/// Gets a float value from data.
|
2008-05-16 17:57:48 +00:00
|
|
|
void getFloatValue( float &value );
|
2008-08-14 21:25:50 +00:00
|
|
|
/// Creates a new material from loaded data.
|
2008-05-05 12:36:31 +00:00
|
|
|
void createMaterial();
|
2008-08-14 21:25:50 +00:00
|
|
|
/// Get texture name from loaded data.
|
2008-05-05 12:36:31 +00:00
|
|
|
void getTexture();
|
2013-12-02 10:07:16 +00:00
|
|
|
void getTextureOption(bool &clamp);
|
2008-05-16 17:57:48 +00:00
|
|
|
|
|
|
|
private:
|
2008-06-03 21:32:56 +00:00
|
|
|
//! Absolute pathname
|
2008-05-16 17:57:48 +00:00
|
|
|
std::string m_strAbsPath;
|
2008-06-03 21:32:56 +00:00
|
|
|
//! Data iterator showing to the current position in data buffer
|
2008-05-16 17:57:48 +00:00
|
|
|
DataArrayIt m_DataIt;
|
2008-06-03 21:32:56 +00:00
|
|
|
//! Data iterator to end of buffer
|
2008-05-16 17:57:48 +00:00
|
|
|
DataArrayIt m_DataItEnd;
|
2008-06-03 21:32:56 +00:00
|
|
|
//! USed model instance
|
2008-05-16 17:57:48 +00:00
|
|
|
ObjFile::Model *m_pModel;
|
2008-06-03 21:32:56 +00:00
|
|
|
//! Current line in file
|
2008-05-16 17:57:48 +00:00
|
|
|
unsigned int m_uiLine;
|
2008-06-03 21:32:56 +00:00
|
|
|
//! Helper buffer
|
2008-05-16 17:57:48 +00:00
|
|
|
char m_buffer[BUFFERSIZE];
|
2008-05-05 12:36:31 +00:00
|
|
|
};
|
|
|
|
|
2008-08-14 21:25:50 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
} // Namespace Assimp
|
|
|
|
|
|
|
|
#endif
|