AtomFontSystemComponent.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <AzCore/Component/Component.h>
  10. #include <CryCommon/CrySystemBus.h>
  11. namespace AZ
  12. {
  13. namespace Render
  14. {
  15. class AtomFontSystemComponent
  16. : public AZ::Component
  17. , private CrySystemEventBus::Handler
  18. {
  19. public:
  20. AZ_COMPONENT(AtomFontSystemComponent, "{29DC7010-CF2A-4EE4-91F8-8E3C8BE65F41}");
  21. static void Reflect(AZ::ReflectContext* context);
  22. static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided);
  23. static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible);
  24. static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required);
  25. static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& dependent);
  26. protected:
  27. ////////////////////////////////////////////////////////////////////////
  28. // AZ::Component interface implementation
  29. void Activate() override;
  30. void Deactivate() override;
  31. ////////////////////////////////////////////////////////////////////////
  32. ////////////////////////////////////////////////////////////////////////
  33. // CrySystemEventBus
  34. void OnCrySystemInitialized(ISystem& system, const SSystemInitParams& initParams) override;
  35. ////////////////////////////////////////////////////////////////////////
  36. ////////////////////////////////////////////////////////////////////////
  37. // CrySystemEventBus
  38. void OnCrySystemShutdown(ISystem& system) override;
  39. ////////////////////////////////////////////////////////////////////////
  40. };
  41. } // namespace Render
  42. } // namespace AZ