| 123456789101112131415161718192021222324252627282930313233343536373839 |
- #pragma once
- #include "BsScriptEnginePrerequisites.h"
- #include "BsScriptResource.h"
- #include "BsScriptObject.h"
- #include "BsScriptCode.h"
- namespace BansheeEngine
- {
- /**
- * @brief Interop class between C++ & CLR for ScriptCode.
- */
- class BS_SCR_BE_EXPORT ScriptScriptCode : public TScriptResource<ScriptScriptCode, ScriptCode>
- {
- public:
- SCRIPT_OBJ(ENGINE_ASSEMBLY, "BansheeEngine", "ScriptCode")
- private:
- friend class ScriptResourceManager;
- typedef std::pair<WString, WString> FullTypeName;
- ScriptScriptCode(MonoObject* instance, const HScriptCode& scriptCode);
- /**
- * @brief Parses the provided C# code and finds a list of all classes
- * and their namespaces. Nested classes are ignored.
- */
- static Vector<FullTypeName> parseTypes(const WString& code);
- /************************************************************************/
- /* CLR HOOKS */
- /************************************************************************/
- static void internal_createInstance(MonoObject* instance, MonoString* text);
- static MonoString* internal_getText(ScriptScriptCode* thisPtr);
- static void internal_setText(ScriptScriptCode* thisPtr, MonoString* text);
- static bool internal_isEditorScript(ScriptScriptCode* thisPtr);
- static void internal_setEditorScript(ScriptScriptCode* thisPtr, bool value);
- static MonoArray* internal_getTypes(ScriptScriptCode* thisPtr);
- };
- }
|