123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /*
- * 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
- *
- */
- #define USE_NULLFONT
- #include "AtomFontSystemComponent.h"
- #include <Atom/RHI/RHIUtils.h>
- #include <AzCore/Serialization/SerializeContext.h>
- #include <AzCore/Serialization/EditContext.h>
- #include <AzCore/Serialization/EditContextConstants.inl>
- #include <AzFramework/Components/ConsoleBus.h>
- #include <ISystem.h>
- #include <AtomLyIntegration/AtomFont/AtomNullFont.h>
- #include <AtomLyIntegration/AtomFont/AtomFont.h>
- namespace AZ
- {
- namespace Render
- {
- void AtomFontSystemComponent::Reflect(AZ::ReflectContext* context)
- {
- if (AZ::SerializeContext* serialize = azrtti_cast<AZ::SerializeContext*>(context))
- {
- serialize->Class<AtomFontSystemComponent, AZ::Component>()
- ->Version(0)
- ;
- if (AZ::EditContext* ec = serialize->GetEditContext())
- {
- ec->Class<AtomFontSystemComponent>("Font", "Manages lifetime of the font subsystem")
- ->ClassElement(Edit::ClassElements::EditorData, "")
- ->Attribute(Edit::Attributes::AutoExpand, true)
- ;
- }
- }
- }
- void AtomFontSystemComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided)
- {
- provided.push_back(AZ_CRC_CE("AtomFontService"));
- }
- void AtomFontSystemComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible)
- {
- incompatible.push_back(AZ_CRC_CE("AtomFontService"));
- }
- void AtomFontSystemComponent::GetRequiredServices([[maybe_unused]] AZ::ComponentDescriptor::DependencyArrayType& required)
- {
- }
- void AtomFontSystemComponent::GetDependentServices([[maybe_unused]] AZ::ComponentDescriptor::DependencyArrayType& dependent)
- {
- }
- void AtomFontSystemComponent::Activate()
- {
- CrySystemEventBus::Handler::BusConnect();
- }
- void AtomFontSystemComponent::Deactivate()
- {
- CrySystemEventBus::Handler::BusDisconnect();
- }
- void LoadFont(ICryFont& cryFont, const AZStd::string& fontName)
- {
- IFFont* font = cryFont.NewFont(fontName.c_str());
- AZ_Assert(font, "Could not instantiate font: %s", fontName.c_str());
- const AZStd::string fontPath = "Fonts/" + fontName + ".font";
- if (!font->Load(fontPath.c_str()))
- {
- AZ_Error("AtomFont", false, "Could not load font: %s", fontPath.c_str());
- }
- }
- void AtomFontSystemComponent::OnCrySystemInitialized(ISystem& system, const SSystemInitParams&)
- {
- #if !defined(AZ_MONOLITHIC_BUILD)
- // When module is linked dynamically, we must set our gEnv pointer.
- // When module is linked statically, we'll share the application's gEnv pointer.
- gEnv = system.GetGlobalEnvironment();
- #endif
- if (RHI::IsNullRHI())
- {
- gEnv->pCryFont = new AtomNullFont();
- }
- else
- {
- gEnv->pCryFont = new AtomFont(&system);
- }
- if (gEnv->pCryFont)
- {
- LoadFont(*gEnv->pCryFont, "default");
- LoadFont(*gEnv->pCryFont, "default-ui");
- }
- }
- void AtomFontSystemComponent::OnCrySystemShutdown([[maybe_unused]] ISystem& system)
- {
- #if !defined(AZ_MONOLITHIC_BUILD)
- gEnv = nullptr;
- #endif
- }
- } // namespace Render
- } // namespace AZ
|