Changed the `ProjectRepository` class to be static for easier usage. Changed `ProjectService` constants to public properties for accessibility. Changed `App.xaml` to consolidate theme resources into `Override.xaml`. Changed `App.xaml.cs` to implement an `AppStateMachine` for better state management. Changed `ConsolePage` and `HierarchyPage` to utilize the new ViewModel structure. Changed `ProjectPage` to use the `ExplorerItem` model for asset display. Changed `Entity` and `EntityManager` to enhance component management with a new `IComponentData` interface. Changed the `Logger` class to introduce structured logging functionality. Changed the system architecture to support dependency management for better organization. Changed the `QueryEnumerable` class to allow for more flexible entity queries. Changed the `TypeHandle` class to improve efficiency in retrieving type handles. Changed the `World` class to support robust world management and multiple worlds. Updated the `Test` class to demonstrate the new entity and component management system.
45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
using Ghost.Data.Services;
|
|
using Ghost.Editor.View.Pages.EngineEditor;
|
|
using Ghost.Editor.View.Pages.Landing;
|
|
using Ghost.Editor.View.Windows;
|
|
using Ghost.Editor.ViewModels.Pages.EngineEditor;
|
|
using Ghost.Editor.ViewModels.Pages.Landing;
|
|
using Ghost.Editor.ViewModels.Windows;
|
|
using Ghost.Engine;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace Ghost.Editor.Helpers;
|
|
|
|
internal static partial class HostHelper
|
|
{
|
|
public static void AddLandingScope(HostBuilderContext context, IServiceCollection services)
|
|
{
|
|
services.AddTransient<LandingWindow>();
|
|
|
|
services.AddTransient<CreateProjectPage>();
|
|
services.AddTransient<CreateProjectViewModel>();
|
|
|
|
services.AddTransient<OpenProjectPage>();
|
|
services.AddTransient<OpenProjectViewModel>();
|
|
|
|
services.AddTransient<ProjectService>();
|
|
}
|
|
|
|
public static void AddEngineScope(HostBuilderContext context, IServiceCollection services)
|
|
{
|
|
services.AddSingleton<EngineCore>();
|
|
|
|
services.AddTransient<EngineEditorWindow>();
|
|
services.AddTransient<EngineEditorViewModel>();
|
|
|
|
services.AddTransient<HierarchyPage>();
|
|
services.AddTransient<HierarchyViewModel>();
|
|
|
|
services.AddTransient<ProjectPage>();
|
|
services.AddTransient<ProjectViewModel>();
|
|
|
|
services.AddTransient<ConsolePage>();
|
|
services.AddTransient<ConsoleViewModel>();
|
|
}
|
|
} |