2015-05-19 03:48:29 +00:00
|
|
|
/*
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
Copyright (c) 2006-2015, assimp team
|
|
|
|
All rights reserved.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the
|
2015-05-19 03:48:29 +00:00
|
|
|
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.
|
|
|
|
|
|
|
|
* Neither the name of the assimp team, nor the names of its
|
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
|
|
|
written permission of the assimp team.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2015-05-19 03:52:10 +00:00
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2015-05-19 03:48:29 +00:00
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2015-05-19 03:52:10 +00:00
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2015-05-19 03:52:10 +00:00
|
|
|
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
|
2015-05-19 03:48:29 +00:00
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file Defines the helper data structures for importing 3DS files.
|
|
|
|
http://www.jalix.org/ressources/graphics/3DS/_unofficials/3ds-unofficial.txt */
|
|
|
|
|
|
|
|
#ifndef AI_SMOOTHINGGROUPS_H_INC
|
|
|
|
#define AI_SMOOTHINGGROUPS_H_INC
|
|
|
|
|
|
|
|
#include "../include/assimp/vector3.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** Helper structure representing a face with smoothing groups assigned */
|
|
|
|
struct FaceWithSmoothingGroup
|
|
|
|
{
|
2015-05-19 03:57:13 +00:00
|
|
|
FaceWithSmoothingGroup() : iSmoothGroup(0)
|
|
|
|
{
|
|
|
|
// let the rest uninitialized for performance - in release builds.
|
|
|
|
// in debug builds set all indices to a common magic value
|
2015-05-19 03:48:29 +00:00
|
|
|
#ifdef ASSIMP_BUILD_DEBUG
|
2015-05-19 03:57:13 +00:00
|
|
|
this->mIndices[0] = 0xffffffff;
|
|
|
|
this->mIndices[1] = 0xffffffff;
|
|
|
|
this->mIndices[2] = 0xffffffff;
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
//! Indices. .3ds is using uint16. However, after
|
|
|
|
//! an unique vrtex set has been generated,
|
|
|
|
//! individual index values might exceed 2^16
|
|
|
|
uint32_t mIndices[3];
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
//! specifies to which smoothing group the face belongs to
|
|
|
|
uint32_t iSmoothGroup;
|
2015-05-19 03:48:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** Helper structure representing a mesh whose faces have smoothing
|
2015-05-19 03:52:10 +00:00
|
|
|
groups assigned. This allows us to reuse the code for normal computations
|
2015-05-19 03:57:13 +00:00
|
|
|
from smoothings groups for several loaders (3DS, ASE). All of them
|
|
|
|
use face structures which inherit from #FaceWithSmoothingGroup,
|
|
|
|
but as they add extra members and need to be copied by value we
|
|
|
|
need to use a template here.
|
|
|
|
*/
|
2015-05-19 03:48:29 +00:00
|
|
|
template <class T>
|
|
|
|
struct MeshWithSmoothingGroups
|
|
|
|
{
|
2015-05-19 03:57:13 +00:00
|
|
|
//! Vertex positions
|
|
|
|
std::vector<aiVector3D> mPositions;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
//! Face lists
|
|
|
|
std::vector<T> mFaces;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
//! List of normal vectors
|
|
|
|
std::vector<aiVector3D> mNormals;
|
2015-05-19 03:48:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** Computes normal vectors for the mesh
|
|
|
|
*/
|
|
|
|
template <class T>
|
|
|
|
void ComputeNormalsWithSmoothingsGroups(MeshWithSmoothingGroups<T>& sMesh);
|
|
|
|
|
|
|
|
|
|
|
|
// include implementations
|
|
|
|
#include "SmoothingGroups.inl"
|
|
|
|
|
|
|
|
#endif // !! AI_SMOOTHINGGROUPS_H_INC
|