blob: 99fc289161170ccef37f1027d12e047b47edf179 (
plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
|
using System;
namespace Godot
{
public static class GD
{
/*{GodotGlobalConstants}*/
public static object Bytes2Var(byte[] bytes)
{
return NativeCalls.godot_icall_Godot_bytes2var(bytes);
}
public static object Convert(object what, int type)
{
return NativeCalls.godot_icall_Godot_convert(what, type);
}
public static float Db2Linear(float db)
{
return (float)Math.Exp(db * 0.11512925464970228420089957273422);
}
public static float Dectime(float value, float amount, float step)
{
float sgn = value < 0 ? -1.0f : 1.0f;
float val = Mathf.Abs(value);
val -= amount * step;
if (val < 0.0f)
val = 0.0f;
return val * sgn;
}
public static FuncRef Funcref(Object instance, string funcname)
{
var ret = new FuncRef();
ret.SetInstance(instance);
ret.SetFunction(funcname);
return ret;
}
public static int Hash(object var)
{
return NativeCalls.godot_icall_Godot_hash(var);
}
public static Object InstanceFromId(int instanceId)
{
return NativeCalls.godot_icall_Godot_instance_from_id(instanceId);
}
public static double Linear2Db(double linear)
{
return Math.Log(linear) * 8.6858896380650365530225783783321;
}
public static Resource Load(string path)
{
return ResourceLoader.Load(path);
}
public static void Print(params object[] what)
{
NativeCalls.godot_icall_Godot_print(what);
}
public static void PrintStack()
{
Print(System.Environment.StackTrace);
}
public static void Printerr(params object[] what)
{
NativeCalls.godot_icall_Godot_printerr(what);
}
public static void Printraw(params object[] what)
{
NativeCalls.godot_icall_Godot_printraw(what);
}
public static void Prints(params object[] what)
{
NativeCalls.godot_icall_Godot_prints(what);
}
public static void Printt(params object[] what)
{
NativeCalls.godot_icall_Godot_printt(what);
}
public static int[] Range(int length)
{
int[] ret = new int[length];
for (int i = 0; i < length; i++)
{
ret[i] = i;
}
return ret;
}
public static int[] Range(int from, int to)
{
if (to < from)
return new int[0];
int[] ret = new int[to - from];
for (int i = from; i < to; i++)
{
ret[i - from] = i;
}
return ret;
}
public static int[] Range(int from, int to, int increment)
{
if (to < from && increment > 0)
return new int[0];
if (to > from && increment < 0)
return new int[0];
// Calculate count
int count = 0;
if (increment > 0)
count = ((to - from - 1) / increment) + 1;
else
count = ((from - to - 1) / -increment) + 1;
int[] ret = new int[count];
if (increment > 0)
{
int idx = 0;
for (int i = from; i < to; i += increment)
{
ret[idx++] = i;
}
}
else
{
int idx = 0;
for (int i = from; i > to; i += increment)
{
ret[idx++] = i;
}
}
return ret;
}
public static void Seed(int seed)
{
NativeCalls.godot_icall_Godot_seed(seed);
}
public static string Str(params object[] what)
{
return NativeCalls.godot_icall_Godot_str(what);
}
public static object Str2Var(string str)
{
return NativeCalls.godot_icall_Godot_str2var(str);
}
public static bool TypeExists(string type)
{
return NativeCalls.godot_icall_Godot_type_exists(type);
}
public static byte[] Var2Bytes(object var)
{
return NativeCalls.godot_icall_Godot_var2bytes(var);
}
public static string Var2Str(object var)
{
return NativeCalls.godot_icall_Godot_var2str(var);
}
public static WeakRef Weakref(Object obj)
{
return NativeCalls.godot_icall_Godot_weakref(Object.GetPtr(obj));
}
}
}
|