#include "BsScriptModalWindow.h" #include "BsScriptMeta.h" #include "BsMonoField.h" #include "BsMonoClass.h" #include "BsMonoMethod.h" #include "BsMonoManager.h" #include "BsMonoUtil.h" #include "BsMonoAssembly.h" #include "BsScriptObjectManager.h" #include "BsScriptHString.h" #include "BsRenderWindow.h" #include "BsScriptGUILayout.h" using namespace std::placeholders; namespace BansheeEngine { MonoField* ScriptModalWindow::guiPanelField = nullptr; ScriptModalWindow::ScriptModalWindow(ManagedModalWindow* window) :ScriptObject(window->getManagedInstance()), mModalWindow(window) { mOnAssemblyRefreshStartedConn = ScriptObjectManager::instance().onRefreshStarted.connect(std::bind(&ScriptModalWindow::onAssemblyRefreshStarted, this)); } ScriptModalWindow::~ScriptModalWindow() { mOnAssemblyRefreshStartedConn.disconnect(); } void ScriptModalWindow::initRuntimeData() { metaData.scriptClass->addInternalCall("Internal_CreateInstance", &ScriptModalWindow::internal_createInstance); metaData.scriptClass->addInternalCall("Internal_Close", &ScriptModalWindow::internal_close); metaData.scriptClass->addInternalCall("Internal_GetWidth", &ScriptModalWindow::internal_getWidth); metaData.scriptClass->addInternalCall("Internal_GetHeight", &ScriptModalWindow::internal_getHeight); metaData.scriptClass->addInternalCall("Internal_SetWidth", &ScriptModalWindow::internal_setWidth); metaData.scriptClass->addInternalCall("Internal_SetHeight", &ScriptModalWindow::internal_setHeight); metaData.scriptClass->addInternalCall("Internal_SetTitle", &ScriptModalWindow::internal_setTitle); metaData.scriptClass->addInternalCall("Internal_ScreenToWindowPos", &ScriptModalWindow::internal_screenToWindowPos); metaData.scriptClass->addInternalCall("Internal_WindowToScreenPos", &ScriptModalWindow::internal_windowToScreenPos); guiPanelField = metaData.scriptClass->getField("GUI"); } void ScriptModalWindow::internal_createInstance(MonoObject* instance, bool allowCloseButton) { ManagedModalWindow* modalWindow = bs_new(allowCloseButton, instance); ScriptModalWindow* nativeInstance = new (bs_alloc()) ScriptModalWindow(modalWindow); modalWindow->setParent(nativeInstance); } void ScriptModalWindow::internal_close(ScriptModalWindow* thisPtr) { if (thisPtr->mModalWindow != nullptr) thisPtr->mModalWindow->close(); } void ScriptModalWindow::internal_setTitle(ScriptModalWindow* thisPtr, MonoObject* title) { HString titleStr = HString::dummy(); if (title != nullptr) { ScriptHString* textScript = ScriptHString::toNative(title); titleStr = textScript->getInternalValue(); } thisPtr->mModalWindow->setTitle(titleStr); } void ScriptModalWindow::notifyWindowDestroyed() { mModalWindow = nullptr; } void ScriptModalWindow::onAssemblyRefreshStarted() { if (mModalWindow != nullptr) mModalWindow->close(); } UINT32 ScriptModalWindow::internal_getWidth(ScriptModalWindow* thisPtr) { if (thisPtr->mModalWindow != nullptr) return thisPtr->mModalWindow->getWidth(); return 0; } UINT32 ScriptModalWindow::internal_getHeight(ScriptModalWindow* thisPtr) { if (thisPtr->mModalWindow != nullptr) return thisPtr->mModalWindow->getHeight(); return 0; } void ScriptModalWindow::internal_setWidth(ScriptModalWindow* thisPtr, UINT32 value) { if (thisPtr->mModalWindow != nullptr) thisPtr->mModalWindow->setSize(value, thisPtr->mModalWindow->getHeight()); } void ScriptModalWindow::internal_setHeight(ScriptModalWindow* thisPtr, UINT32 value) { if (thisPtr->mModalWindow != nullptr) thisPtr->mModalWindow->setSize(thisPtr->mModalWindow->getWidth(), value); } void ScriptModalWindow::internal_screenToWindowPos(ScriptModalWindow* thisPtr, Vector2I screenPos, Vector2I* windowPos) { if (thisPtr->mModalWindow != nullptr) *windowPos = thisPtr->mModalWindow->screenToWindowPos(screenPos); else *windowPos = screenPos; } void ScriptModalWindow::internal_windowToScreenPos(ScriptModalWindow* thisPtr, Vector2I windowPos, Vector2I* screenPos) { if (thisPtr->mModalWindow != nullptr) *screenPos = thisPtr->mModalWindow->windowToScreenPos(windowPos); else *screenPos = windowPos; } ManagedModalWindow::ManagedModalWindow(bool allowCloseButton, MonoObject* managedInstance) :ModalWindow(HString::dummy(), allowCloseButton), mUpdateThunk(nullptr), mManagedInstance(managedInstance), mOnInitializeThunk(nullptr), mOnDestroyThunk(nullptr), mOnWindowResizedMethod(nullptr), mGCHandle(0), mScriptParent(nullptr), mContentsPanel(nullptr), mIsInitialized(false) { mGCHandle = mono_gchandle_new(mManagedInstance, false); MonoObject* guiPanel = ScriptGUIPanel::createFromExisting(mContents); mContentsPanel = ScriptGUILayout::toNative(guiPanel); ScriptModalWindow::guiPanelField->setValue(mManagedInstance, guiPanel); ::MonoClass* rawMonoClass = mono_object_get_class(mManagedInstance); MonoClass* monoClass = MonoManager::instance().findClass(rawMonoClass); mNamespace = monoClass->getNamespace(); mTypename = monoClass->getTypeName(); reloadMonoTypes(monoClass); } ManagedModalWindow::~ManagedModalWindow() { assert(mGCHandle == 0); // We expect "close" to be called either from C++ or C# before destruction } bool ManagedModalWindow::createManagedInstance() { MonoAssembly* assembly = MonoManager::instance().getAssembly(EDITOR_ASSEMBLY); if (assembly != nullptr) { MonoClass* editorWindowClass = assembly->getClass(mNamespace, mTypename); if (editorWindowClass != nullptr) { mManagedInstance = editorWindowClass->createInstance(false); mGCHandle = mono_gchandle_new(mManagedInstance, false); MonoObject* guiPanel = ScriptGUIPanel::createFromExisting(mContents); mContentsPanel = ScriptGUILayout::toNative(guiPanel); ScriptModalWindow::guiPanelField->setValue(mManagedInstance, guiPanel); reloadMonoTypes(editorWindowClass); return true; } } return false; } void ManagedModalWindow::releaseManagedInstance() { mono_gchandle_free(mGCHandle); mGCHandle = 0; } void ManagedModalWindow::triggerOnInitialize() { if (mOnInitializeThunk != nullptr && mManagedInstance != nullptr) { // Note: Not calling virtual methods. Can be easily done if needed but for now doing this // for some extra speed. MonoUtil::invokeThunk(mOnInitializeThunk, mManagedInstance); } } void ManagedModalWindow::triggerOnDestroy() { if (mOnDestroyThunk != nullptr && mManagedInstance != nullptr) { // Note: Not calling virtual methods. Can be easily done if needed but for now doing this // for some extra speed. MonoUtil::invokeThunk(mOnDestroyThunk, mManagedInstance); } } void ManagedModalWindow::setParent(ScriptModalWindow* parent) { mScriptParent = parent; } void ManagedModalWindow::update() { if (!mIsInitialized) { triggerOnInitialize(); mIsInitialized = true; } if (mUpdateThunk != nullptr && mManagedInstance != nullptr) { // Note: Not calling virtual methods. Can be easily done if needed but for now doing this // for some extra speed. MonoUtil::invokeThunk(mUpdateThunk, mManagedInstance); } } void ManagedModalWindow::resized() { UINT32 width = getWidth(); UINT32 height = getHeight(); if (mOnWindowResizedMethod != nullptr && mManagedInstance != nullptr) { void* params[] = { &width, &height }; mOnWindowResizedMethod->invokeVirtual(mManagedInstance, params); } ModalWindow::resized(); } void ManagedModalWindow::close() { triggerOnDestroy(); mContentsPanel->destroy(); mContentsPanel = nullptr; releaseManagedInstance(); mScriptParent->notifyWindowDestroyed(); ModalWindow::close(); } void ManagedModalWindow::reloadMonoTypes(MonoClass* windowClass) { MonoMethod* updateMethod = windowClass->getMethod("OnEditorUpdate", 0); if (updateMethod != nullptr) mUpdateThunk = (UpdateThunkDef)updateMethod->getThunk(); MonoMethod* onInitializeMethod = windowClass->getMethod("OnInitialize", 0); if (onInitializeMethod != nullptr) mOnInitializeThunk = (OnInitializeThunkDef)onInitializeMethod->getThunk(); MonoMethod* onDestroyMethod = windowClass->getMethod("OnDestroy", 0); if (onDestroyMethod != nullptr) mOnDestroyThunk = (OnDestroyThunkDef)onDestroyMethod->getThunk(); MonoClass* modalWindowClass = windowClass->getBaseClass(); mOnWindowResizedMethod = modalWindowClass->getMethod("OnWindowResized", 2); } }