Fixed base name check.
parent
0905252833
commit
c33a4b2634
|
@ -197,7 +197,7 @@ class BlobIOSystem : public IOSystem {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
BlobIOSystem() :
|
BlobIOSystem() :
|
||||||
baseName{} {
|
baseName{AI_BLOBIO_MAGIC} {
|
||||||
}
|
}
|
||||||
|
|
||||||
BlobIOSystem(const std::string &baseName) :
|
BlobIOSystem(const std::string &baseName) :
|
||||||
|
@ -213,13 +213,13 @@ public:
|
||||||
public:
|
public:
|
||||||
// -------------------------------------------------------------------
|
// -------------------------------------------------------------------
|
||||||
const char *GetMagicFileName() const {
|
const char *GetMagicFileName() const {
|
||||||
return baseName.empty() ? AI_BLOBIO_MAGIC : baseName.c_str();
|
return baseName.c_str();
|
||||||
}
|
}
|
||||||
|
|
||||||
// -------------------------------------------------------------------
|
// -------------------------------------------------------------------
|
||||||
aiExportDataBlob *GetBlobChain() {
|
aiExportDataBlob *GetBlobChain() {
|
||||||
const auto magicName = std::string(this->GetMagicFileName());
|
const auto magicName = std::string(this->GetMagicFileName());
|
||||||
const bool hasBaseName = baseName.empty();
|
const bool hasBaseName = baseName != AI_BLOBIO_MAGIC;
|
||||||
|
|
||||||
// one must be the master
|
// one must be the master
|
||||||
aiExportDataBlob *master = nullptr, *cur;
|
aiExportDataBlob *master = nullptr, *cur;
|
||||||
|
@ -249,8 +249,7 @@ public:
|
||||||
|
|
||||||
if (hasBaseName) {
|
if (hasBaseName) {
|
||||||
cur->name.Set(blobby.first);
|
cur->name.Set(blobby.first);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
// extract the file extension from the file written
|
// extract the file extension from the file written
|
||||||
const std::string::size_type s = blobby.first.find_first_of('.');
|
const std::string::size_type s = blobby.first.find_first_of('.');
|
||||||
cur->name.Set(s == std::string::npos ? blobby.first : blobby.first.substr(s + 1));
|
cur->name.Set(s == std::string::npos ? blobby.first : blobby.first.substr(s + 1));
|
||||||
|
|
Loading…
Reference in New Issue