eb1593a19c
These changes allow for usage of different asset import SDKs to process scene files.
Move AssImp specific code out of node, scene & material wrapper parent classes and into child wrapper classes (AssImpNodeWrapper, etc.), allowing child classes to expose import SDK code. Allows for more convenient implementation of other import SDK's elsewhere (such as in a gem).
Add a loadingComponentUuid parameter to LoadSceneFromVerifiedPath to allow for usage of different loading components. Changed tests and all calls to this function accordingly.
* Move AssImp specific code out of wrapper parent classes and into child classes for gem usage
Signed-off-by: Victor Huang <huavicto@amazon.com>
* Add loadingComponentUuid parameter to LoadSceneFromVerifiedPath function
Signed-off-by: Victor Huang <huavicto@amazon.com>
* Make wrapper members protected, change pointer cast
Signed-off-by: Victor Huang <huavicto@amazon.com>
* Adding spaces to fix style
Signed-off-by: Victor Huang <huavicto@amazon.com>
* Fix for pointer cast causing test failures
Signed-off-by: Victor Huang <huavicto@amazon.com>
48 lines
1.9 KiB
C++
48 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <SceneAPI/SDKWrapper/MaterialWrapper.h>
|
|
#include <AzCore/std/string/string.h>
|
|
|
|
namespace AZ
|
|
{
|
|
namespace AssImpSDKWrapper
|
|
{
|
|
class AssImpMaterialWrapper : public SDKMaterial::MaterialWrapper
|
|
{
|
|
public:
|
|
AZ_RTTI(AssImpMaterialWrapper, "{66992628-CFCE-441B-8849-9344A49AFAC9}", SDKMaterial::MaterialWrapper);
|
|
AssImpMaterialWrapper(aiMaterial* aiMaterial);
|
|
~AssImpMaterialWrapper() override = default;
|
|
aiMaterial* GetAssImpMaterial() const;
|
|
AZStd::string GetName() const override;
|
|
AZ::u64 GetUniqueId() const override;
|
|
AZ::Vector3 GetDiffuseColor() const override;
|
|
AZ::Vector3 GetSpecularColor() const override;
|
|
AZ::Vector3 GetEmissiveColor() const override;
|
|
float GetOpacity() const override;
|
|
float GetShininess() const override;
|
|
AZStd::string GetTextureFileName(MaterialMapType textureType) const override;
|
|
|
|
AZStd::optional<bool> GetUseColorMap() const;
|
|
AZStd::optional<AZ::Vector3> GetBaseColor() const;
|
|
AZStd::optional<bool> GetUseMetallicMap() const;
|
|
AZStd::optional<float> GetMetallicFactor() const;
|
|
AZStd::optional<bool> GetUseRoughnessMap() const;
|
|
AZStd::optional<float> GetRoughnessFactor() const;
|
|
AZStd::optional<bool> GetUseEmissiveMap() const;
|
|
AZStd::optional<float> GetEmissiveIntensity() const;
|
|
AZStd::optional<bool> GetUseAOMap() const;
|
|
|
|
protected:
|
|
aiMaterial* m_assImpMaterial = nullptr;
|
|
};
|
|
} // namespace AssImpSDKWrapper
|
|
}// namespace AZ
|