-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathExample105.cs
61 lines (55 loc) · 1.38 KB
/
Example105.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using Puerts;
using XLua;
/// <summary>
/// 调用脚本function
/// 逻辑: 参数求和并返回
/// 参数: 3个值类型
/// 返回值: 值类型
/// </summary>
[Test(100)]
public class Example105 : IExecute
{
[CSharpCallLua]
public delegate float TargetFunc(int param1, int param2, float param3);
[CSharpCallLua]
public delegate TargetFunc CreateFunc();
public bool Static => true;
public string Method => "payload(number,number,number): number;";
public CallTarget Target => CallTarget.CSharpCallScript;
public object RunCS(int count)
{
throw new System.NotImplementedException();
}
public object RunJS(JsEnv env, int count)
{
var func = env.Eval<TargetFunc>(@"
function payload(param1,param2,param3){
return param1 + param2 + param3;
}
payload;
");
float result = 0f;
for (int i = 0; i < count; i++)
{
result += func(i, i + 1, i + 2f);
}
return result;
}
public object RunLua(LuaEnv env, int count)
{
var create = env.LoadString<CreateFunc>(@"
local function payload(param1,param2,param3)
return param1 + param2 + param3;
end
return payload;
");
var func = create();
float result = 0f;
for (int i = 0; i < count; i++)
{
result += func(i, i + 1, i + 2f);
}
return result;
}
}