You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
3.0 KiB
C++
93 lines
3.0 KiB
C++
// {BEGIN_LICENSE}
|
|
/*
|
|
* 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
|
|
*
|
|
*/
|
|
// {END_LICENSE}
|
|
|
|
#include <${Name}SystemComponent.h>
|
|
|
|
#include <AzCore/Serialization/SerializeContext.h>
|
|
#include <AzCore/Serialization/EditContext.h>
|
|
#include <AzCore/Serialization/EditContextConstants.inl>
|
|
|
|
namespace ${SanitizedCppName}
|
|
{
|
|
void ${SanitizedCppName}SystemComponent::Reflect(AZ::ReflectContext* context)
|
|
{
|
|
if (AZ::SerializeContext* serialize = azrtti_cast<AZ::SerializeContext*>(context))
|
|
{
|
|
serialize->Class<${SanitizedCppName}SystemComponent, AZ::Component>()
|
|
->Version(0)
|
|
;
|
|
|
|
if (AZ::EditContext* ec = serialize->GetEditContext())
|
|
{
|
|
ec->Class<${SanitizedCppName}SystemComponent>("${SanitizedCppName}", "[Description of functionality provided by this System Component]")
|
|
->ClassElement(AZ::Edit::ClassElements::EditorData, "")
|
|
->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("System"))
|
|
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
|
;
|
|
}
|
|
}
|
|
}
|
|
|
|
void ${SanitizedCppName}SystemComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided)
|
|
{
|
|
provided.push_back(AZ_CRC_CE("${SanitizedCppName}Service"));
|
|
}
|
|
|
|
void ${SanitizedCppName}SystemComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible)
|
|
{
|
|
incompatible.push_back(AZ_CRC_CE("${SanitizedCppName}Service"));
|
|
}
|
|
|
|
void ${SanitizedCppName}SystemComponent::GetRequiredServices([[maybe_unused]] AZ::ComponentDescriptor::DependencyArrayType& required)
|
|
{
|
|
}
|
|
|
|
void ${SanitizedCppName}SystemComponent::GetDependentServices([[maybe_unused]] AZ::ComponentDescriptor::DependencyArrayType& dependent)
|
|
{
|
|
}
|
|
|
|
${SanitizedCppName}SystemComponent::${SanitizedCppName}SystemComponent()
|
|
{
|
|
if (${SanitizedCppName}Interface::Get() == nullptr)
|
|
{
|
|
${SanitizedCppName}Interface::Register(this);
|
|
}
|
|
}
|
|
|
|
${SanitizedCppName}SystemComponent::~${SanitizedCppName}SystemComponent()
|
|
{
|
|
if (${SanitizedCppName}Interface::Get() == this)
|
|
{
|
|
${SanitizedCppName}Interface::Unregister(this);
|
|
}
|
|
}
|
|
|
|
void ${SanitizedCppName}SystemComponent::Init()
|
|
{
|
|
}
|
|
|
|
void ${SanitizedCppName}SystemComponent::Activate()
|
|
{
|
|
${SanitizedCppName}RequestBus::Handler::BusConnect();
|
|
AZ::TickBus::Handler::BusConnect();
|
|
}
|
|
|
|
void ${SanitizedCppName}SystemComponent::Deactivate()
|
|
{
|
|
AZ::TickBus::Handler::BusDisconnect();
|
|
${SanitizedCppName}RequestBus::Handler::BusDisconnect();
|
|
}
|
|
|
|
void ${SanitizedCppName}SystemComponent::OnTick([[maybe_unused]] float deltaTime, [[maybe_unused]] AZ::ScriptTimePoint time)
|
|
{
|
|
}
|
|
|
|
} // namespace ${SanitizedCppName}
|