//********************************** Banshee Engine (www.banshee3d.com) **************************************************// //**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************// #pragma once #include "BsScriptEditorPrerequisites.h" #include "Utility/BsModule.h" namespace bs { /** @addtogroup SBansheeEditor * @{ */ /** Available flags to be used when defining gizmos. */ enum class DrawGizmoFlags // Note: Must match the C# enum DrawGizmoFlags { Selected = 0x01, /**< Gizmo is only displayed when its scene object is selected. */ ParentSelected = 0x02, /**< Gizmo is only displayed when its parent scene object is selected. */ NotSelected = 0x04, /**< Gizmo is only displayed when its scene object is not selected. */ Pickable = 0x08 /**< Gizmo can be clicked on in scene view, which will select its scene object. */ }; /** * Manages all active managed gizmo methods. Finds all gizmos methods in loaded assemblies, and calls them every frame. */ class BS_SCR_BED_EXPORT ScriptGizmoManager : public Module { /** Data about a managed gizmo method. */ struct GizmoData { MonoClass* componentType; /**< Component the gizmo method belongs to. */ MonoMethod* drawGizmosMethod; /**< Method that displays the gizmo. */ UINT32 flags; /**< Gizmo flags of type DrawGizmoFlags that control gizmo properties. */ }; public: ScriptGizmoManager(ScriptAssemblyManager& scriptObjectManager); ~ScriptGizmoManager(); /** * Iterates over all managed gizmos, calls their draw methods and registers the gizmos with the native GizmoManager. */ void update(); private: /** Finds all gizmo methods (marked with the DrawGizmo attribute). Clears any previously found methods. */ void reloadAssemblyData(); /** * Checks is the provided method a valid gizmo draw method and if it is, returns properties of that method. * * @param[in] method Method to check. * @param[in] componentType Output parameter containing the component the method is part of. Only valid if this * method returns true. * @param[in] drawGizmoFlags Output parameters containing optional flags that control gizmo properties. Only * valid if this method returns true. * @return True if the method is a valid draw gizmo method. */ bool isValidDrawGizmoMethod(MonoMethod* method, MonoClass*& componentType, UINT32& drawGizmoFlags); ScriptAssemblyManager& mScriptObjectManager; HEvent mDomainLoadedConn; MonoClass* mDrawGizmoAttribute; MonoField* mFlagsField; Map mGizmoDrawers; }; /** @} */ }