Files
o3de/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.h
T
Steve Pham 38261d0800 Shorten copyright headers by splitting into 2 lines (#2213)
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines

Signed-off-by: Steve Pham <spham@amazon.com>
2021-07-16 15:25:48 -07:00

71 lines
2.2 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 <AzCore/Serialization/Utils.h>
#include <SceneAPI/SceneCore/Components/ExportingComponent.h>
namespace AZ
{
namespace SceneAPI
{
namespace Events
{
class ExportEventContext;
}
}
namespace RPI
{
/**
* This is the central component that drive the process of exporting a scene to Model
* and Material assets. It delegates asset-build duties to other components like
* ModelAssetBuilderComponent and MaterialAssetBuilderComponent via export events.
*/
class ModelExporterComponent : public SceneAPI::SceneCore::ExportingComponent
{
public:
AZ_COMPONENT(
ModelExporterComponent,
"{AE42AB62-A4D6-4147-88A0-692549EE5427}",
SceneAPI::SceneCore::ExportingComponent);
static void Reflect(ReflectContext* context);
ModelExporterComponent();
~ModelExporterComponent() override = default;
SceneAPI::Events::ProcessingResult ExportModel(SceneAPI::Events::ExportEventContext& context) const;
private:
struct AssetExportContext
{
AssetExportContext() = default;
AssetExportContext(
AZStd::string_view relativeFileName,
AZStd::string_view extension,
Uuid sourceUuid,
DataStream::StreamType dataStreamType);
AZStd::string_view m_relativeFileName;
AZStd::string_view m_extension;
const Uuid m_sourceUuid;
const DataStream::StreamType m_dataStreamType = DataStream::ST_BINARY;
};
template<class T>
bool ExportAsset(
const Data::Asset<T>& asset,
const AssetExportContext& assetContext,
SceneAPI::Events::ExportEventContext& eventContext,
const char* assetTypeDebugName) const;
};
} // namespace RPI
} // namespace AZ