Exemplo n.º 1
0
		static WrenForeignMethodFn BindForeignMethod(WrenVM VM, string Module, string ClassName, bool Static, string Sig) {
			if (ClassName == "DotNet" && Static) {
				if (Sig == "SomeFunction()")
					return SomeFunction;
			}
			return null;
		}
Exemplo n.º 2
0
 public static extern void ReturnString(this WrenVM VM, string Txt = "", int Len = -1);
Exemplo n.º 3
0
 public static extern void ReturnDouble(this WrenVM VM, double Val = 0.0);
Exemplo n.º 4
0
 public static extern void ReturnBool(this WrenVM VM, bool Val = false);
Exemplo n.º 5
0
 public static extern string GetArgumentString(this WrenVM VM, int Idx);
Exemplo n.º 6
0
 public static extern double GetArgumentDouble(this WrenVM VM, int Idx);
Exemplo n.º 7
0
 public static extern bool GetArgumentBool(this WrenVM VM, int Idx);
Exemplo n.º 8
0
 public static extern void ReleaseMethod(this WrenVM VM, IntPtr Method);
Exemplo n.º 9
0
 public static extern void Call(this WrenVM VM, IntPtr Method, string Types, __arglist);
Exemplo n.º 10
0
 public static extern IntPtr GetMethod(this WrenVM VM, string Module, string Variable, string Signature);
Exemplo n.º 11
0
 public static extern WrenInterpretResult Interpret(this WrenVM VM, string SrcPath, string Src);
Exemplo n.º 12
0
 public static extern void FreeVM(this WrenVM VM);
Exemplo n.º 13
0
		static string LoadModule(WrenVM VM, string Module) {
			if (File.Exists(Module))
				return File.ReadAllText(Module);
			return "";
		}
Exemplo n.º 14
0
		static void SomeFunction(WrenVM VM) {
			VM.ReturnString("Hello Wren World #" + Rand.Next(1, 100) + "!");
		}