| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsScriptEnginePrerequisites.h"
- #include "BsScriptObject.h"
- #include "BsAsyncOp.h"
- namespace bs
- {
- /** @addtogroup ScriptInteropEngine
- * @{
- */
- /** Interop class between C++ & CLR for AsyncOp. */
- class BS_SCR_BE_EXPORT ScriptAsyncOp : public ScriptObject<ScriptAsyncOp>
- {
- public:
- SCRIPT_OBJ(ENGINE_ASSEMBLY, "BansheeEngine", "AsyncOp")
- /**
- * Creates a new managed AsyncOp instance.
- *
- * @param[in] op Native AsyncOp to wrap.
- * @param[in] asyncOpToReturnValue Callback that converts the returned value from native async op to a managed
- * object.
- */
- static MonoObject* create(const AsyncOp& op, std::function<MonoObject*(const AsyncOp&)> asyncOpToReturnValue);
- private:
- ScriptAsyncOp(MonoObject* instance);
- /** Finishes construction of the AsyncOp wrapper. Must be called before using the object. */
- void initialize(const AsyncOp& op, std::function<MonoObject*(const AsyncOp&)> asyncOpToReturnValue);
- AsyncOp mAsyncOp;
- std::function<MonoObject*(const AsyncOp&)> mConvertCallback;
- /************************************************************************/
- /* CLR HOOKS */
- /************************************************************************/
- static void internal_createInstance(MonoObject* managedInstance);
- static void internal_isComplete(ScriptAsyncOp* thisPtr, bool* value);
- static MonoObject* internal_getReturnValue(ScriptAsyncOp* thisPtr);
- static void internal_blockUntilComplete(ScriptAsyncOp* thisPtr);
- };
- /** @} */
- }
|