mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
151 lines
6.0 KiB
151 lines
6.0 KiB
#ifndef Magnum_Trade_Implementation_converterUtilities_h |
|
#define Magnum_Trade_Implementation_converterUtilities_h |
|
/* |
|
This file is part of Magnum. |
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, |
|
2020 Vladimír Vondruš <mosra@centrum.cz> |
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
copy of this software and associated documentation files (the "Software"), |
|
to deal in the Software without restriction, including without limitation |
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
|
and/or sell copies of the Software, and to permit persons to whom the |
|
Software is furnished to do so, subject to the following conditions: |
|
|
|
The above copyright notice and this permission notice shall be included |
|
in all copies or substantial portions of the Software. |
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
DEALINGS IN THE SOFTWARE. |
|
*/ |
|
|
|
#include <Corrade/Containers/GrowableArray.h> |
|
#include <Corrade/Containers/StaticArray.h> |
|
#include <Corrade/PluginManager/AbstractPlugin.h> |
|
#include <Corrade/Utility/ConfigurationGroup.h> |
|
#include <Corrade/Utility/DebugStl.h> |
|
#include <Corrade/Utility/String.h> |
|
|
|
#include "Magnum/Trade/AbstractImporter.h" |
|
#include "Magnum/Trade/ImageData.h" |
|
|
|
namespace Magnum { namespace Trade { namespace Implementation { |
|
|
|
/* Used only in executables where we don't want it to be exported */ |
|
namespace { |
|
|
|
void setOptions(PluginManager::AbstractPlugin& plugin, const std::string& options) { |
|
for(const std::string& option: Utility::String::splitWithoutEmptyParts(options, ',')) { |
|
auto keyValue = Utility::String::partition(option, '='); |
|
Utility::String::trimInPlace(keyValue[0]); |
|
Utility::String::trimInPlace(keyValue[2]); |
|
|
|
std::vector<std::string> keyParts = Utility::String::split(keyValue[0], '/'); |
|
CORRADE_INTERNAL_ASSERT(!keyParts.empty()); |
|
Utility::ConfigurationGroup* group = &plugin.configuration(); |
|
bool groupNotRecognized = false; |
|
for(std::size_t i = 0; i != keyParts.size() - 1; ++i) { |
|
Utility::ConfigurationGroup* subgroup = group->group(keyParts[i]); |
|
if(!subgroup) { |
|
groupNotRecognized = true; |
|
subgroup = group->addGroup(keyParts[i]); |
|
} |
|
group = subgroup; |
|
} |
|
|
|
/* Provide a warning message in case the plugin doesn't define given |
|
option in its default config. The plugin is not *required* to have |
|
those tho (could be backward compatibility entries, for example), so |
|
not an error. */ |
|
if(groupNotRecognized || !group->hasValue(keyParts.back())) { |
|
Warning{} << "Option" << keyValue[0] << "not recognized by" << plugin.plugin(); |
|
} |
|
|
|
/* If the option doesn't have an =, treat it as a boolean flag that's |
|
set to true. While there's no similar way to do an inverse, it's |
|
still nicer than causing a fatal error with those. */ |
|
if(keyValue[1].empty()) |
|
group->setValue(keyParts.back(), true); |
|
else |
|
group->setValue(keyParts.back(), keyValue[2]); |
|
} |
|
} |
|
|
|
struct ImageInfo { |
|
UnsignedInt image, level; |
|
bool compressed; |
|
PixelFormat format; |
|
CompressedPixelFormat compressedFormat; |
|
Vector3i size; |
|
std::string name; |
|
}; |
|
|
|
Containers::Array<ImageInfo> imageInfo(AbstractImporter& importer, bool& error) { |
|
Containers::Array<ImageInfo> infos; |
|
|
|
for(UnsignedInt i = 0; i != importer.image1DCount(); ++i) { |
|
for(UnsignedInt j = 0;j != importer.image1DLevelCount(i); ++j) { |
|
Containers::Optional<Trade::ImageData1D> image = importer.image1D(i, j); |
|
if(!image) { |
|
error = true; |
|
continue; |
|
} |
|
arrayAppend(infos, Containers::InPlaceInit, i, j, |
|
image->isCompressed(), |
|
image->isCompressed() ? |
|
PixelFormat{} : image->format(), |
|
image->isCompressed() ? |
|
image->compressedFormat() : CompressedPixelFormat{}, |
|
Vector3i::pad(image->size()), |
|
j ? "" : importer.image1DName(i)); |
|
} |
|
} |
|
for(UnsignedInt i = 0; i != importer.image2DCount(); ++i) { |
|
for(UnsignedInt j = 0;j != importer.image2DLevelCount(i); ++j) { |
|
Containers::Optional<Trade::ImageData2D> image = importer.image2D(i, j); |
|
if(!image) { |
|
error = true; |
|
continue; |
|
} |
|
arrayAppend(infos, Containers::InPlaceInit, i, j, |
|
image->isCompressed(), |
|
image->isCompressed() ? |
|
PixelFormat{} : image->format(), |
|
image->isCompressed() ? |
|
image->compressedFormat() : CompressedPixelFormat{}, |
|
Vector3i::pad(image->size()), |
|
j ? "" : importer.image2DName(i)); |
|
} |
|
} |
|
for(UnsignedInt i = 0; i != importer.image3DCount(); ++i) { |
|
for(UnsignedInt j = 0;j != importer.image3DLevelCount(i); ++j) { |
|
Containers::Optional<Trade::ImageData3D> image = importer.image3D(i, j); |
|
if(!image) { |
|
error = true; |
|
continue; |
|
} |
|
arrayAppend(infos, Containers::InPlaceInit, i, j, |
|
image->isCompressed(), |
|
image->isCompressed() ? |
|
PixelFormat{} : image->format(), |
|
image->isCompressed() ? |
|
image->compressedFormat() : CompressedPixelFormat{}, |
|
image->size(), |
|
j ? "" : importer.image2DName(i)); |
|
} |
|
} |
|
|
|
return infos; |
|
} |
|
|
|
} |
|
|
|
}}} |
|
|
|
#endif
|
|
|