123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // {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 <${Name}/${Name}TypeIds.h>
- #include <AzCore/Serialization/SerializeContext.h>
- namespace ${SanitizedCppName}
- {
- AZ_COMPONENT_IMPL(${SanitizedCppName}SystemComponent, "${SanitizedCppName}SystemComponent",
- ${SanitizedCppName}SystemComponentTypeId);
- void ${SanitizedCppName}SystemComponent::Reflect(AZ::ReflectContext* context)
- {
- if (auto serializeContext = azrtti_cast<AZ::SerializeContext*>(context))
- {
- serializeContext->Class<${SanitizedCppName}SystemComponent, AZ::Component>()
- ->Version(0)
- ;
- }
- }
- 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}
|