add missing std moves
parent
9a5d628232
commit
8da3d277c7
|
@ -44,6 +44,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "3MFTypes.h"
|
#include "3MFTypes.h"
|
||||||
#include <assimp/scene.h>
|
#include <assimp/scene.h>
|
||||||
|
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
namespace D3MF {
|
namespace D3MF {
|
||||||
|
|
||||||
|
@ -582,7 +584,7 @@ aiMaterial *XmlSerializer::readMaterialDef(XmlNode &node, unsigned int basemater
|
||||||
stdMaterialName += strId;
|
stdMaterialName += strId;
|
||||||
stdMaterialName += "_";
|
stdMaterialName += "_";
|
||||||
if (hasName) {
|
if (hasName) {
|
||||||
stdMaterialName += std::string(name);
|
stdMaterialName += std::string(std::move(name));
|
||||||
} else {
|
} else {
|
||||||
stdMaterialName += "basemat_";
|
stdMaterialName += "basemat_";
|
||||||
stdMaterialName += ai_to_string(mMaterials.size());
|
stdMaterialName += ai_to_string(mMaterials.size());
|
||||||
|
|
|
@ -63,6 +63,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include <assimp/StringComparison.h>
|
#include <assimp/StringComparison.h>
|
||||||
|
|
||||||
#include <cctype>
|
#include <cctype>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
// zlib is needed for compressed blend files
|
// zlib is needed for compressed blend files
|
||||||
#ifndef ASSIMP_BUILD_NO_COMPRESSED_BLEND
|
#ifndef ASSIMP_BUILD_NO_COMPRESSED_BLEND
|
||||||
|
@ -201,7 +202,7 @@ void BlenderImporter::InternReadFile(const std::string &pFile,
|
||||||
" (64bit: ", file.i64bit ? "true" : "false",
|
" (64bit: ", file.i64bit ? "true" : "false",
|
||||||
", little endian: ", file.little ? "true" : "false", ")");
|
", little endian: ", file.little ? "true" : "false", ")");
|
||||||
|
|
||||||
ParseBlendFile(file, stream);
|
ParseBlendFile(file, std::move(stream));
|
||||||
|
|
||||||
Scene scene;
|
Scene scene;
|
||||||
ExtractScene(scene, file);
|
ExtractScene(scene, file);
|
||||||
|
|
|
@ -55,6 +55,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include <assimp/DefaultLogger.hpp>
|
#include <assimp/DefaultLogger.hpp>
|
||||||
#include <assimp/IOSystem.hpp>
|
#include <assimp/IOSystem.hpp>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
using namespace Assimp;
|
using namespace Assimp;
|
||||||
using namespace Assimp::Collada;
|
using namespace Assimp::Collada;
|
||||||
|
@ -2305,7 +2306,7 @@ void ColladaParser::ReadScene(XmlNode &node) {
|
||||||
// find the referred scene, skip the leading #
|
// find the referred scene, skip the leading #
|
||||||
NodeLibrary::const_iterator sit = mNodeLibrary.find(url.c_str() + 1);
|
NodeLibrary::const_iterator sit = mNodeLibrary.find(url.c_str() + 1);
|
||||||
if (sit == mNodeLibrary.end()) {
|
if (sit == mNodeLibrary.end()) {
|
||||||
throw DeadlyImportError("Unable to resolve visual_scene reference \"", std::string(url), "\" in <instance_visual_scene> element.");
|
throw DeadlyImportError("Unable to resolve visual_scene reference \"", std::string(std::move(url)), "\" in <instance_visual_scene> element.");
|
||||||
}
|
}
|
||||||
mRootNode = sit->second;
|
mRootNode = sit->second;
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,6 +57,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include <assimp/importerdesc.h>
|
#include <assimp/importerdesc.h>
|
||||||
|
|
||||||
#include <numeric>
|
#include <numeric>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
using namespace Assimp;
|
using namespace Assimp;
|
||||||
|
|
||||||
|
@ -150,7 +151,7 @@ void DXFImporter::InternReadFile( const std::string& filename, aiScene* pScene,
|
||||||
// DXF files can grow very large, so read them via the StreamReader,
|
// DXF files can grow very large, so read them via the StreamReader,
|
||||||
// which will choose a suitable strategy.
|
// which will choose a suitable strategy.
|
||||||
file->Seek(0,aiOrigin_SET);
|
file->Seek(0,aiOrigin_SET);
|
||||||
StreamReaderLE stream( file );
|
StreamReaderLE stream( std::move(file) );
|
||||||
|
|
||||||
DXF::LineReader reader (stream);
|
DXF::LineReader reader (stream);
|
||||||
DXF::FileData output;
|
DXF::FileData output;
|
||||||
|
|
|
@ -336,7 +336,7 @@ void Document::ReadGlobalSettings() {
|
||||||
DOMError("GlobalSettings dictionary contains no property table");
|
DOMError("GlobalSettings dictionary contains no property table");
|
||||||
}
|
}
|
||||||
|
|
||||||
globals.reset(new FileGlobalSettings(*this, props));
|
globals.reset(new FileGlobalSettings(*this, std::move(props)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -52,6 +52,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include <assimp/StreamWriter.h> // StreamWriterLE
|
#include <assimp/StreamWriter.h> // StreamWriterLE
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <utility>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
|
@ -96,14 +97,14 @@ public: // functions to add properties or children
|
||||||
// add a single property to the node
|
// add a single property to the node
|
||||||
template <typename T>
|
template <typename T>
|
||||||
void AddProperty(T value) {
|
void AddProperty(T value) {
|
||||||
properties.emplace_back(value);
|
properties.emplace_back(std::forward<T>(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
// convenience function to add multiple properties at once
|
// convenience function to add multiple properties at once
|
||||||
template <typename T, typename... More>
|
template <typename T, typename... More>
|
||||||
void AddProperties(T value, More... more) {
|
void AddProperties(T value, More... more) {
|
||||||
properties.emplace_back(value);
|
properties.emplace_back(std::forward<T>(value));
|
||||||
AddProperties(more...);
|
AddProperties(std::forward<More>(more)...);
|
||||||
}
|
}
|
||||||
void AddProperties() {}
|
void AddProperties() {}
|
||||||
|
|
||||||
|
@ -117,7 +118,7 @@ public: // functions to add properties or children
|
||||||
More... more
|
More... more
|
||||||
) {
|
) {
|
||||||
FBX::Node c(name);
|
FBX::Node c(name);
|
||||||
c.AddProperties(more...);
|
c.AddProperties(std::forward<More>(more)...);
|
||||||
children.push_back(c);
|
children.push_back(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -149,7 +150,7 @@ public: // support specifically for dealing with Properties70 nodes
|
||||||
More... more
|
More... more
|
||||||
) {
|
) {
|
||||||
Node n("P");
|
Node n("P");
|
||||||
n.AddProperties(name, type, type2, flags, more...);
|
n.AddProperties(name, type, type2, flags, std::forward<More>(more)...);
|
||||||
AddChild(n);
|
AddChild(n);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -214,7 +215,7 @@ public: // static member functions
|
||||||
bool binary, int indent
|
bool binary, int indent
|
||||||
) {
|
) {
|
||||||
FBX::FBXExportProperty p(value);
|
FBX::FBXExportProperty p(value);
|
||||||
FBX::Node node(name, p);
|
FBX::Node node(name, std::move(p));
|
||||||
node.Dump(s, binary, indent);
|
node.Dump(s, binary, indent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -58,16 +58,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include <assimp/mesh.h>
|
#include <assimp/mesh.h>
|
||||||
|
|
||||||
// Header files, standard library.
|
// Header files, standard library.
|
||||||
#include <memory> // shared_ptr
|
#include <array>
|
||||||
#include <string>
|
|
||||||
#include <sstream> // stringstream
|
|
||||||
#include <ctime> // localtime, tm_*
|
#include <ctime> // localtime, tm_*
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <set>
|
#include <memory> // shared_ptr
|
||||||
#include <vector>
|
|
||||||
#include <array>
|
|
||||||
#include <unordered_set>
|
|
||||||
#include <numeric>
|
#include <numeric>
|
||||||
|
#include <set>
|
||||||
|
#include <sstream> // stringstream
|
||||||
|
#include <string>
|
||||||
|
#include <unordered_set>
|
||||||
|
#include <utility>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
// RESOURCES:
|
// RESOURCES:
|
||||||
// https://code.blender.org/2013/08/fbx-binary-file-format-specification/
|
// https://code.blender.org/2013/08/fbx-binary-file-format-specification/
|
||||||
|
@ -390,7 +391,7 @@ void FBXExporter::WriteHeaderExtension ()
|
||||||
raw[i] = uint8_t(GENERIC_FILEID[i]);
|
raw[i] = uint8_t(GENERIC_FILEID[i]);
|
||||||
}
|
}
|
||||||
FBX::Node::WritePropertyNode(
|
FBX::Node::WritePropertyNode(
|
||||||
"FileId", raw, outstream, binary, indent
|
"FileId", std::move(raw), outstream, binary, indent
|
||||||
);
|
);
|
||||||
FBX::Node::WritePropertyNode(
|
FBX::Node::WritePropertyNode(
|
||||||
"CreationTime", GENERIC_CTIME, outstream, binary, indent
|
"CreationTime", GENERIC_CTIME, outstream, binary, indent
|
||||||
|
@ -2497,7 +2498,7 @@ void FBXExporter::WriteModelNode(
|
||||||
const aiVector3D one = {1, 1, 1};
|
const aiVector3D one = {1, 1, 1};
|
||||||
FBX::Node m("Model");
|
FBX::Node m("Model");
|
||||||
std::string name = node->mName.C_Str() + FBX::SEPARATOR + "Model";
|
std::string name = node->mName.C_Str() + FBX::SEPARATOR + "Model";
|
||||||
m.AddProperties(node_uid, name, type);
|
m.AddProperties(node_uid, std::move(name), type);
|
||||||
m.AddChild("Version", int32_t(232));
|
m.AddChild("Version", int32_t(232));
|
||||||
FBX::Node p("Properties70");
|
FBX::Node p("Properties70");
|
||||||
p.AddP70bool("RotationActive", 1);
|
p.AddP70bool("RotationActive", 1);
|
||||||
|
|
|
@ -51,6 +51,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
#include <tuple>
|
#include <tuple>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
namespace IFC {
|
namespace IFC {
|
||||||
|
@ -674,7 +675,7 @@ void ProcessBooleanExtrudedAreaSolidDifference(const Schema_2x3::IfcExtrudedArea
|
||||||
std::shared_ptr<TempMesh> meshtmp = std::shared_ptr<TempMesh>(new TempMesh());
|
std::shared_ptr<TempMesh> meshtmp = std::shared_ptr<TempMesh>(new TempMesh());
|
||||||
ProcessExtrudedAreaSolid(*as, *meshtmp, conv, false);
|
ProcessExtrudedAreaSolid(*as, *meshtmp, conv, false);
|
||||||
|
|
||||||
std::vector<TempOpening> openings(1, TempOpening(as, IfcVector3(0, 0, 0), meshtmp, std::shared_ptr<TempMesh>()));
|
std::vector<TempOpening> openings(1, TempOpening(as, IfcVector3(0, 0, 0), std::move(meshtmp), std::shared_ptr<TempMesh>()));
|
||||||
|
|
||||||
result = first_operand;
|
result = first_operand;
|
||||||
|
|
||||||
|
|
|
@ -57,8 +57,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
# include "../contrib/clipper/clipper.hpp"
|
# include "../contrib/clipper/clipper.hpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <memory>
|
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
|
#include <memory>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
namespace IFC {
|
namespace IFC {
|
||||||
|
@ -713,7 +714,7 @@ void ProcessExtrudedArea(const Schema_2x3::IfcExtrudedAreaSolid& solid, const Te
|
||||||
std::shared_ptr<TempMesh> profile2D = std::shared_ptr<TempMesh>(new TempMesh());
|
std::shared_ptr<TempMesh> profile2D = std::shared_ptr<TempMesh>(new TempMesh());
|
||||||
profile2D->mVerts.insert(profile2D->mVerts.end(), in.begin(), in.end());
|
profile2D->mVerts.insert(profile2D->mVerts.end(), in.begin(), in.end());
|
||||||
profile2D->mVertcnt.push_back(static_cast<unsigned int>(in.size()));
|
profile2D->mVertcnt.push_back(static_cast<unsigned int>(in.size()));
|
||||||
conv.collect_openings->push_back(TempOpening(&solid, dir, profile, profile2D));
|
conv.collect_openings->push_back(TempOpening(&solid, dir, std::move(profile), std::move(profile2D)));
|
||||||
|
|
||||||
ai_assert(result.IsEmpty());
|
ai_assert(result.IsEmpty());
|
||||||
}
|
}
|
||||||
|
@ -839,7 +840,7 @@ bool ProcessGeometricItem(const Schema_2x3::IfcRepresentationItem& geo, unsigned
|
||||||
if (!meshtmp->IsEmpty()) {
|
if (!meshtmp->IsEmpty()) {
|
||||||
conv.collect_openings->push_back(TempOpening(geo.ToPtr<Schema_2x3::IfcSolidModel>(),
|
conv.collect_openings->push_back(TempOpening(geo.ToPtr<Schema_2x3::IfcSolidModel>(),
|
||||||
IfcVector3(0,0,0),
|
IfcVector3(0,0,0),
|
||||||
meshtmp,
|
std::move(meshtmp),
|
||||||
std::shared_ptr<TempMesh>()));
|
std::shared_ptr<TempMesh>()));
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -67,6 +67,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include <assimp/importerdesc.h>
|
#include <assimp/importerdesc.h>
|
||||||
#include <assimp/scene.h>
|
#include <assimp/scene.h>
|
||||||
#include <assimp/Importer.hpp>
|
#include <assimp/Importer.hpp>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
template <>
|
template <>
|
||||||
|
@ -227,7 +228,7 @@ void IFCImporter::InternReadFile(const std::string &pFile, aiScene *pScene, IOSy
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unique_ptr<STEP::DB> db(STEP::ReadFileHeader(stream));
|
std::unique_ptr<STEP::DB> db(STEP::ReadFileHeader(std::move(stream)));
|
||||||
const STEP::HeaderInfo &head = static_cast<const STEP::DB &>(*db).GetHeader();
|
const STEP::HeaderInfo &head = static_cast<const STEP::DB &>(*db).GetHeader();
|
||||||
|
|
||||||
if (!head.fileSchema.size() || head.fileSchema.substr(0, 3) != "IFC") {
|
if (!head.fileSchema.size() || head.fileSchema.substr(0, 3) != "IFC") {
|
||||||
|
|
|
@ -57,9 +57,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
# include "../contrib/clipper/clipper.hpp"
|
# include "../contrib/clipper/clipper.hpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <iterator>
|
|
||||||
#include <forward_list>
|
|
||||||
#include <deque>
|
#include <deque>
|
||||||
|
#include <forward_list>
|
||||||
|
#include <iterator>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
namespace IFC {
|
namespace IFC {
|
||||||
|
@ -1699,7 +1700,7 @@ std::vector<std::vector<IfcVector2>> GetContoursInPlane(const std::shared_ptr<Te
|
||||||
bool ok;
|
bool ok;
|
||||||
auto contour = GetContourInPlane2D(mesh,planeSpace,planeNor,planeOffset,extrusionDir,wall_extrusion,first,ok);
|
auto contour = GetContourInPlane2D(mesh,planeSpace,planeNor,planeOffset,extrusionDir,wall_extrusion,first,ok);
|
||||||
if(ok)
|
if(ok)
|
||||||
return std::vector<std::vector<IfcVector2>> {contour};
|
return std::vector<std::vector<IfcVector2>> {std::move(contour)};
|
||||||
else
|
else
|
||||||
return std::vector<std::vector<IfcVector2>> {};
|
return std::vector<std::vector<IfcVector2>> {};
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include <assimp/ByteSwapper.h>
|
#include <assimp/ByteSwapper.h>
|
||||||
#include <assimp/fast_atof.h>
|
#include <assimp/fast_atof.h>
|
||||||
#include <assimp/DefaultLogger.hpp>
|
#include <assimp/DefaultLogger.hpp>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
using namespace Assimp;
|
using namespace Assimp;
|
||||||
|
|
||||||
|
@ -381,10 +382,10 @@ bool PLY::DOM::SkipSpacesAndLineEnd(std::vector<char> &buffer) {
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PLY::DOM::SkipComments(std::vector<char> &buffer) {
|
bool PLY::DOM::SkipComments(std::vector<char> buffer) {
|
||||||
ai_assert(!buffer.empty());
|
ai_assert(!buffer.empty());
|
||||||
|
|
||||||
std::vector<char> nbuffer = buffer;
|
std::vector<char> nbuffer = std::move(buffer);
|
||||||
// skip spaces
|
// skip spaces
|
||||||
if (!SkipSpaces(nbuffer)) {
|
if (!SkipSpaces(nbuffer)) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -431,7 +431,7 @@ public:
|
||||||
static bool ParseInstanceBinary(IOStreamBuffer<char> &streamBuffer, DOM* p_pcOut, PLYImporter* loader, bool p_bBE);
|
static bool ParseInstanceBinary(IOStreamBuffer<char> &streamBuffer, DOM* p_pcOut, PLYImporter* loader, bool p_bBE);
|
||||||
|
|
||||||
//! Skip all comment lines after this
|
//! Skip all comment lines after this
|
||||||
static bool SkipComments(std::vector<char> &buffer);
|
static bool SkipComments(std::vector<char> buffer);
|
||||||
|
|
||||||
static bool SkipSpaces(std::vector<char> &buffer);
|
static bool SkipSpaces(std::vector<char> &buffer);
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include <assimp/importerdesc.h>
|
#include <assimp/importerdesc.h>
|
||||||
#include <assimp/mesh.h>
|
#include <assimp/mesh.h>
|
||||||
#include <assimp/scene.h>
|
#include <assimp/scene.h>
|
||||||
|
|
||||||
|
#include <utility>
|
||||||
//#include <cctype>
|
//#include <cctype>
|
||||||
//#include <memory>
|
//#include <memory>
|
||||||
|
|
||||||
|
@ -224,7 +226,7 @@ aiLight *XGLImporter::ReadDirectionalLight(XmlNode &node) {
|
||||||
std::unique_ptr<aiLight> l(new aiLight());
|
std::unique_ptr<aiLight> l(new aiLight());
|
||||||
l->mType = aiLightSource_DIRECTIONAL;
|
l->mType = aiLightSource_DIRECTIONAL;
|
||||||
find_node_by_name_predicate predicate("directionallight");
|
find_node_by_name_predicate predicate("directionallight");
|
||||||
XmlNode child = node.find_child(predicate);
|
XmlNode child = node.find_child(std::move(predicate));
|
||||||
if (child.empty()) {
|
if (child.empty()) {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,6 +49,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "IOStream.hpp"
|
#include "IOStream.hpp"
|
||||||
|
|
||||||
#include <pugixml.hpp>
|
#include <pugixml.hpp>
|
||||||
|
#include <utility>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
|
@ -267,7 +268,7 @@ inline TNodeType *TXmlParser<TNodeType>::findNode(const std::string &name) {
|
||||||
}
|
}
|
||||||
|
|
||||||
find_node_by_name_predicate predicate(name);
|
find_node_by_name_predicate predicate(name);
|
||||||
mCurrent = mDoc->find_node(predicate);
|
mCurrent = mDoc->find_node(std::move(predicate));
|
||||||
if (mCurrent.empty()) {
|
if (mCurrent.empty()) {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue