refactor: 类型安全与接口清理 (#311)

* refactor: 分解 IEngineBridge 为单一职责接口

- 新增 ITextureService, IDynamicAtlasService, ICoordinateService, IRenderConfigService
- 移除 EngineBridgeToken,改用具体服务 Token
- 更新 camera, ui, particle 等模块使用新接口
- 优化装饰器类型安全,使用 Symbol-based metadata 访问模式

* refactor: 删除 plugin-types 包,统一 createServiceToken 实现

- 移动 IEditorModuleBase 接口到 engine-core
- 移除 engine-core 和 editor-core 对 plugin-types 的依赖
- 删除冗余的 plugin-types 包
- 统一使用 core 中基于 Symbol.for() 的 createServiceToken

* refactor: 统一 IPlugin 接口,移除 deprecated 别名

- 移除 engine-core、editor-core、runtime-core 中的 IPlugin 别名
- 模块插件统一使用 IRuntimePlugin(运行时)或 IEditorPlugin(编辑器)
- 保留 core 包中的 IPlugin 作为 ECS 核心插件接口(不同概念)
- 更新所有消费方使用正确的类型

* refactor: 重命名 editor-core ComponentRegistry 为 EditorComponentRegistry

- 消除与 core 包 ComponentRegistry(ECS 位掩码管理)的命名歧义
- editor-core 的 EditorComponentRegistry 专用于编辑器组件元数据
- 更新所有编辑器包使用新名称
This commit is contained in:
YHH
2025-12-19 17:48:18 +08:00
committed by GitHub
parent ecdb8f2021
commit e24c850568
51 changed files with 492 additions and 623 deletions

View File

@@ -8,7 +8,7 @@
import type { ServiceContainer } from '@esengine/ecs-framework';
import { createLogger } from '@esengine/ecs-framework';
import type { IPlugin, IEditorModuleLoader, ModuleManifest } from '@esengine/editor-core';
import type { IEditorPlugin, IEditorModuleLoader, ModuleManifest } from '@esengine/editor-core';
import { AssetRegistryService } from '@esengine/editor-core';
const logger = createLogger('AssetMetaPlugin');
@@ -65,7 +65,7 @@ const manifest: ModuleManifest = {
exports: {}
};
export const AssetMetaPlugin: IPlugin = {
export const AssetMetaPlugin: IEditorPlugin = {
manifest,
editorModule: new AssetMetaEditorModule()
};

View File

@@ -5,7 +5,7 @@
import type { ServiceContainer } from '@esengine/ecs-framework';
import { createLogger } from '@esengine/ecs-framework';
import type { IPlugin, IEditorModuleLoader, ModuleManifest } from '@esengine/editor-core';
import type { IEditorPlugin, IEditorModuleLoader, ModuleManifest } from '@esengine/editor-core';
import { SettingsRegistry } from '@esengine/editor-core';
import { SettingsService } from '../../services/SettingsService';
@@ -146,7 +146,7 @@ const manifest: ModuleManifest = {
exports: {}
};
export const EditorAppearancePlugin: IPlugin = {
export const EditorAppearancePlugin: IEditorPlugin = {
manifest,
editorModule: new EditorAppearanceEditorModule()
};

View File

@@ -4,7 +4,7 @@
*/
import type { ServiceContainer } from '@esengine/ecs-framework';
import type { IPlugin, IEditorModuleLoader, ModuleManifest, GizmoProviderRegistration } from '@esengine/editor-core';
import type { IEditorPlugin, IEditorModuleLoader, ModuleManifest, GizmoProviderRegistration } from '@esengine/editor-core';
import { registerSpriteGizmo } from '../../gizmos';
/**
@@ -42,7 +42,7 @@ const manifest: ModuleManifest = {
}
};
export const GizmoPlugin: IPlugin = {
export const GizmoPlugin: IEditorPlugin = {
manifest,
editorModule: new GizmoEditorModule()
};

View File

@@ -5,7 +5,7 @@
import type { ServiceContainer } from '@esengine/ecs-framework';
import { createLogger } from '@esengine/ecs-framework';
import type { IPlugin, IEditorModuleLoader, ModuleManifest } from '@esengine/editor-core';
import type { IEditorPlugin, IEditorModuleLoader, ModuleManifest } from '@esengine/editor-core';
import { SettingsRegistry } from '@esengine/editor-core';
const logger = createLogger('PluginConfigPlugin');
@@ -69,7 +69,7 @@ const manifest: ModuleManifest = {
exports: {}
};
export const PluginConfigPlugin: IPlugin = {
export const PluginConfigPlugin: IEditorPlugin = {
manifest,
editorModule: new PluginConfigEditorModule()
};

View File

@@ -6,7 +6,7 @@
import type { ServiceContainer } from '@esengine/ecs-framework';
import { Core } from '@esengine/ecs-framework';
import type {
IPlugin,
IEditorPlugin,
IEditorModuleLoader,
ModuleManifest,
MenuItemDescriptor
@@ -140,7 +140,7 @@ const manifest: ModuleManifest = {
exports: {}
};
export const ProfilerPlugin: IPlugin = {
export const ProfilerPlugin: IEditorPlugin = {
manifest,
editorModule: new ProfilerEditorModule()
};

View File

@@ -8,7 +8,7 @@
import type { ServiceContainer } from '@esengine/ecs-framework';
import { createLogger, Core } from '@esengine/ecs-framework';
import type { IPlugin, IEditorModuleLoader, ModuleManifest } from '@esengine/editor-core';
import type { IEditorPlugin, IEditorModuleLoader, ModuleManifest } from '@esengine/editor-core';
import { SettingsRegistry, ProjectService, moduleRegistry } from '@esengine/editor-core';
import EngineService from '../../services/EngineService';
@@ -306,7 +306,7 @@ const manifest: ModuleManifest = {
exports: {}
};
export const ProjectSettingsPlugin: IPlugin = {
export const ProjectSettingsPlugin: IEditorPlugin = {
manifest,
editorModule: new ProjectSettingsEditorModule()
};

View File

@@ -6,7 +6,7 @@
import { Core, Entity } from '@esengine/ecs-framework';
import type { ServiceContainer } from '@esengine/ecs-framework';
import type {
IPlugin,
IEditorPlugin,
IEditorModuleLoader,
ModuleManifest,
PanelDescriptor,
@@ -191,7 +191,7 @@ const manifest: ModuleManifest = {
}
};
export const SceneInspectorPlugin: IPlugin = {
export const SceneInspectorPlugin: IEditorPlugin = {
manifest,
editorModule: new SceneInspectorEditorModule()
};