2015-05-19 03:48:29 +00:00
|
|
|
/*
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
2024-02-23 21:30:05 +00:00
|
|
|
Copyright (c) 2006-2024, assimp team
|
2018-01-28 18:42:05 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
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 PLYLoader.h
|
|
|
|
* @brief Declaration of the .ply importer class.
|
|
|
|
*/
|
2021-09-13 20:38:20 +00:00
|
|
|
#pragma once
|
2015-05-19 03:48:29 +00:00
|
|
|
#ifndef AI_PLYLOADER_H_INCLUDED
|
|
|
|
#define AI_PLYLOADER_H_INCLUDED
|
|
|
|
|
2020-03-15 11:16:17 +00:00
|
|
|
#include "PlyParser.h"
|
2018-01-06 00:18:33 +00:00
|
|
|
#include <assimp/BaseImporter.h>
|
2016-06-06 20:04:29 +00:00
|
|
|
#include <assimp/types.h>
|
2015-05-19 03:48:29 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
struct aiNode;
|
|
|
|
struct aiMaterial;
|
|
|
|
struct aiMesh;
|
|
|
|
|
2017-02-11 13:19:34 +00:00
|
|
|
namespace Assimp {
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
using namespace PLY;
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** Importer class to load the stanford PLY file format
|
|
|
|
*/
|
2024-08-17 11:49:09 +00:00
|
|
|
class PLYImporter final : public BaseImporter {
|
2015-05-19 03:48:29 +00:00
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
PLYImporter();
|
2024-08-17 11:49:09 +00:00
|
|
|
~PLYImporter() override;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Returns whether the class can handle the format of the given file.
|
|
|
|
* See BaseImporter::CanRead() for details.
|
|
|
|
*/
|
2020-03-15 11:16:17 +00:00
|
|
|
bool CanRead(const std::string &pFile, IOSystem *pIOHandler,
|
2021-09-13 20:38:20 +00:00
|
|
|
bool checkSig) const override;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2017-06-02 11:24:56 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Extract a vertex from the DOM
|
|
|
|
*/
|
2020-03-15 11:16:17 +00:00
|
|
|
void LoadVertex(const PLY::Element *pcElement, const PLY::ElementInstance *instElement, unsigned int pos);
|
2017-06-02 11:24:56 +00:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Extract a face from the DOM
|
|
|
|
*/
|
2020-03-15 11:16:17 +00:00
|
|
|
void LoadFace(const PLY::Element *pcElement, const PLY::ElementInstance *instElement, unsigned int pos);
|
2017-06-02 11:24:56 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
protected:
|
2015-05-19 03:57:13 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Return importer meta information.
|
|
|
|
* See #BaseImporter::GetInfo for the details
|
|
|
|
*/
|
2021-09-13 20:38:20 +00:00
|
|
|
const aiImporterDesc *GetInfo() const override;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Imports the given file into the given scene structure.
|
|
|
|
* See BaseImporter::InternReadFile() for details
|
|
|
|
*/
|
2020-03-15 11:16:17 +00:00
|
|
|
void InternReadFile(const std::string &pFile, aiScene *pScene,
|
2021-09-13 20:38:20 +00:00
|
|
|
IOSystem *pIOHandler) override;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Extract a material list from the DOM
|
|
|
|
*/
|
2020-03-15 11:16:17 +00:00
|
|
|
void LoadMaterial(std::vector<aiMaterial *> *pvOut, std::string &defaultTexture, const bool pointsOnly);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Static helper to parse a color from four single channels in
|
|
|
|
*/
|
|
|
|
static void GetMaterialColor(
|
2020-03-15 11:16:17 +00:00
|
|
|
const std::vector<PLY::PropertyInstance> &avList,
|
|
|
|
unsigned int aiPositions[4],
|
|
|
|
PLY::EDataType aiTypes[4],
|
|
|
|
aiColor4D *clrOut);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Static helper to parse a color channel value. The input value
|
|
|
|
* is normalized to 0-1.
|
|
|
|
*/
|
2020-03-15 11:16:17 +00:00
|
|
|
static ai_real NormalizeColorValue(
|
|
|
|
PLY::PropertyInstance::ValueUnion val,
|
|
|
|
PLY::EDataType eType);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2024-08-17 11:49:09 +00:00
|
|
|
private:
|
2020-03-15 11:16:17 +00:00
|
|
|
unsigned char *mBuffer;
|
|
|
|
PLY::DOM *pcDOM;
|
|
|
|
aiMesh *mGeneratedMesh;
|
2015-05-19 03:48:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end of namespace Assimp
|
|
|
|
|
|
|
|
#endif // AI_3DSIMPORTER_H_INC
|