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.
246 lines
7.8 KiB
246 lines
7.8 KiB
/* |
|
This file is part of Magnum. |
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 |
|
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 <unordered_map> |
|
#include <Corrade/Utility/Directory.h> |
|
|
|
#include "Magnum/PixelFormat.h" |
|
#include "Magnum/Animation/Player.h" |
|
#include "Magnum/MeshTools/Transform.h" |
|
#include "Magnum/Trade/AbstractImporter.h" |
|
#include "Magnum/Trade/AnimationData.h" |
|
#include "Magnum/Trade/ImageData.h" |
|
#include "Magnum/Trade/MeshData2D.h" |
|
#include "Magnum/Trade/MeshData3D.h" |
|
#include "Magnum/Trade/ObjectData2D.h" |
|
#include "Magnum/Trade/ObjectData3D.h" |
|
#include "Magnum/Trade/PhongMaterialData.h" |
|
#ifdef MAGNUM_TARGET_GL |
|
#include "Magnum/GL/Texture.h" |
|
#endif |
|
|
|
using namespace Magnum; |
|
using namespace Magnum::Math::Literals; |
|
|
|
int main() { |
|
|
|
{ |
|
/* [AbstractImporter-usage] */ |
|
PluginManager::Manager<Trade::AbstractImporter> manager; |
|
std::unique_ptr<Trade::AbstractImporter> importer = |
|
manager.loadAndInstantiate("AnyImageImporter"); |
|
if(!importer || !importer->openFile("image.png")) |
|
Fatal{} << "Can't open image.png with AnyImageImporter"; |
|
|
|
Containers::Optional<Trade::ImageData2D> image = importer->image2D(0); |
|
if(!image) Fatal{} << "Importing the image failed"; |
|
|
|
// use the image ... |
|
/* [AbstractImporter-usage] */ |
|
} |
|
|
|
#if defined(CORRADE_TARGET_UNIX) || (defined(CORRADE_TARGET_WINDOWS) && !defined(CORRADE_TARGET_WINDOWS_RT)) |
|
{ |
|
std::unique_ptr<Trade::AbstractImporter> importer; |
|
/* [AbstractImporter-usage-callbacks] */ |
|
struct Data { |
|
std::unordered_map<std::string, |
|
Containers::Array<const char, Utility::Directory::MapDeleter>> files; |
|
} data; |
|
|
|
importer->setFileCallback([](const std::string& filename, |
|
Trade::ImporterFileCallbackPolicy policy, Data& data) |
|
-> Containers::Optional<Containers::ArrayView<const char>> |
|
{ |
|
auto found = data.files.find(filename); |
|
|
|
/* Discard the memory mapping, if not needed anymore */ |
|
if(policy == Trade::ImporterFileCallbackPolicy::Close) { |
|
if(found != data.files.end()) data.files.erase(found); |
|
return {}; |
|
} |
|
|
|
/* Load if not there yet */ |
|
if(found == data.files.end()) found = data.files.emplace( |
|
filename, Utility::Directory::mapRead(filename)).first; |
|
|
|
return Containers::arrayView(found->second); |
|
}, data); |
|
|
|
importer->openFile("scene.gltf"); // memory-maps all files |
|
/* [AbstractImporter-usage-callbacks] */ |
|
} |
|
#endif |
|
|
|
{ |
|
std::unique_ptr<Trade::AbstractImporter> importer; |
|
Float shininess; |
|
/* [AbstractImporter-usage-cast] */ |
|
std::unique_ptr<Trade::AbstractMaterialData> data = importer->material(12); |
|
if(data && data->type() == Trade::MaterialType::Phong) { |
|
auto& phong = static_cast<Trade::PhongMaterialData&>(*data); |
|
|
|
shininess = phong.shininess(); |
|
// ... |
|
} |
|
/* [AbstractImporter-usage-cast] */ |
|
static_cast<void>(shininess); |
|
} |
|
|
|
{ |
|
std::unique_ptr<Trade::AbstractImporter> importer; |
|
/* [AbstractImporter-setFileCallback] */ |
|
importer->setFileCallback([](const std::string& filename, |
|
Trade::ImporterFileCallbackPolicy, void*) { |
|
Utility::Resource rs("data"); |
|
return Containers::optional(rs.getRaw(filename)); |
|
}); |
|
/* [AbstractImporter-setFileCallback] */ |
|
} |
|
|
|
{ |
|
std::unique_ptr<Trade::AbstractImporter> importer; |
|
/* [AbstractImporter-setFileCallback-template] */ |
|
struct Data { |
|
std::unordered_map<std::string, Containers::Array<char>> files; |
|
} data; |
|
|
|
importer->setFileCallback([](const std::string& filename, |
|
Trade::ImporterFileCallbackPolicy, Data& data) |
|
-> Containers::Optional<Containers::ArrayView<const char>> |
|
{ |
|
auto found = data.files.find(filename); |
|
if(found == data.files.end()) { |
|
if(!Utility::Directory::fileExists(filename)) |
|
return Containers::NullOpt; |
|
found = data.files.emplace(filename, Utility::Directory::read(filename)).first; |
|
} |
|
return Containers::ArrayView<const char>{found->second}; |
|
}, data); |
|
/* [AbstractImporter-setFileCallback-template] */ |
|
} |
|
|
|
{ |
|
UnsignedInt id{}; |
|
std::unique_ptr<Trade::AbstractImporter> importer; |
|
/* [AnimationData-usage] */ |
|
|
|
Containers::Optional<Trade::AnimationData> data = importer->animation(id); |
|
|
|
Animation::Player<Float> player; |
|
Containers::Array<Vector3> positions; /* Translations for all objects */ |
|
for(UnsignedInt i = 0; i != data->trackCount(); ++i) { |
|
if(data->trackTarget(i) == Trade::AnimationTrackTarget::Translation3D) { |
|
CORRADE_INTERNAL_ASSERT(data->trackType(i) == |
|
Trade::AnimationTrackType::Vector3); |
|
player.add(data->track<Vector3>(i), positions[data->trackTargetId(i)]); |
|
} |
|
|
|
// similarly for rotation / scaling ... |
|
} |
|
|
|
Containers::Array<char> animationData = data->release(); /* Take ownership */ |
|
/* [AnimationData-usage] */ |
|
} |
|
|
|
{ |
|
/* [ImageData-construction] */ |
|
Containers::Array<char> data; |
|
Trade::ImageData2D image{PixelFormat::RGB8Unorm, {32, 32}, std::move(data)}; |
|
/* [ImageData-construction] */ |
|
} |
|
|
|
{ |
|
/* [ImageData-construction-compressed] */ |
|
Containers::Array<char> data; |
|
Trade::ImageData2D image{CompressedPixelFormat::Bc1RGBUnorm, |
|
{32, 32}, std::move(data)}; |
|
/* [ImageData-construction-compressed] */ |
|
} |
|
|
|
#ifdef MAGNUM_TARGET_GL |
|
{ |
|
/* [ImageData-usage] */ |
|
std::unique_ptr<Trade::AbstractImporter> importer; |
|
Containers::Optional<Trade::ImageData2D> image = importer->image2D(0); |
|
if(!image) Fatal{} << "Oopsie!"; |
|
|
|
GL::Texture2D texture; |
|
// ... |
|
if(!image->isCompressed()) |
|
texture.setSubImage(0, {}, *image); |
|
else |
|
texture.setCompressedSubImage(0, {}, *image); |
|
/* [ImageData-usage] */ |
|
} |
|
#endif |
|
|
|
{ |
|
Trade::MeshData2D& foo(); |
|
Trade::MeshData2D& data = foo(); |
|
/* [MeshData2D-transform] */ |
|
Matrix3 transformation = |
|
Matrix3::translation({3.0f, -2.0f})* |
|
Matrix3::scaling(Vector2{2.0f})* |
|
Matrix3::rotation(45.0_degf); |
|
MeshTools::transformPointsInPlace(transformation, data.positions(0)); |
|
/* [MeshData2D-transform] */ |
|
} |
|
|
|
{ |
|
Trade::ObjectData2D& baz(); |
|
Trade::ObjectData2D& data = baz(); |
|
/* [ObjectData2D-transformation] */ |
|
Matrix3 transformation = |
|
Matrix3::from(data.rotation().toMatrix(), data.translation())* |
|
Matrix3::scaling(data.scaling()); |
|
/* [ObjectData2D-transformation] */ |
|
static_cast<void>(transformation); |
|
} |
|
|
|
{ |
|
Trade::MeshData3D& bar(); |
|
Trade::MeshData3D& data = bar(); |
|
/* [MeshData3D-transform] */ |
|
Matrix4 transformation = |
|
Matrix4::translation({3.0f, 1.5f, -2.0f})* |
|
Matrix4::rotationX(45.0_degf); |
|
MeshTools::transformPointsInPlace(transformation, data.positions(0)); |
|
MeshTools::transformVectorsInPlace(transformation, data.normals(0)); |
|
/* [MeshData3D-transform] */ |
|
} |
|
|
|
{ |
|
Trade::ObjectData3D& fizz(); |
|
Trade::ObjectData3D& data = fizz(); |
|
/* [ObjectData3D-transformation] */ |
|
Matrix4 transformation = |
|
Matrix4::from(data.rotation().toMatrix(), data.translation())* |
|
Matrix4::scaling(data.scaling()); |
|
/* [ObjectData3D-transformation] */ |
|
static_cast<void>(transformation); |
|
} |
|
|
|
}
|
|
|