25 MonoAssembly* assembly =
nullptr;
26 MonoImage* image =
nullptr;
31 virtual void Initialize(
EngineCore* engineCore);
32 virtual void CreateDomain();
33 virtual void LoadAssembly(
const char* path,
AssemblyData& outAssemblyData);
34 virtual void LoadAssemblyIntoMap(
const char* path);
35 virtual void SetupComponent(entt::registry& registry, entt::entity entity,
ScriptComponent& component);
36 virtual void DestroyComponent(entt::registry& registry, entt::entity entity,
ScriptComponent& component);
37 virtual void CallStartInAllComponents(entt::registry& registry);
38 virtual void CallUpdateInAllComponents(entt::registry& registry);
39 virtual void CallEditorUpdateInAllComponents(entt::registry& registry);
40 virtual void CallDeleteInAllComponents(entt::registry& registry);
41 void RegisterComponents();
48 void EditorUpdate(entt::registry& registry);
50 void LoadAssemblyClasses();
51 void SetupEntityDataInComponent(entt::entity entity,
ScriptComponent& component);
52 void CallFunctionInComponent(
ScriptComponent& scriptComponent,
size_t fnOffset);
59 ScriptClass* SetupClass(
const char* assemblyName,
const char* namespaceName,
const char* className);
61 MonoDomain* rootDomain =
nullptr;
62 MonoDomain* scriptDomain =
nullptr;
64 std::map<std::string, AssemblyData> assemblies;
65 std::map<std::string, ScriptClass*> smartComponents;
67 bool isReloadQueued =
false;
69 std::map<MonoType*, ECS::CreateComponentFn> createComponentFuncs;
70 std::map<MonoType*, ECS::TryGetComponentFn> tryGetComponentFuncs;
71 std::map<MonoType*, ECS::HasComponentFn> hasComponentFuncs;
72 std::map<MonoType*, ECS::RemoveComponentFn> removeComponentFuncs;