forked from FAForever/FA-Binary-Patches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimGetDepositsAroundPoint.cpp
62 lines (54 loc) · 1.69 KB
/
SimGetDepositsAroundPoint.cpp
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
#include "include/moho.h"
#define lua_push(L, name, val) \
lua_pushstring(L, name); \
lua_pushnumber(L, val); \
lua_rawset(L, -3);
int SimGetDepositsAroundPoint(lua_State *L) {
float X = lua_tonumber(L, 1);
float Z = lua_tonumber(L, 2);
float Radius = lua_tonumber(L, 3);
if (X + Z + Radius != X + Z + Radius) return 0;
int Type = lua_tonumber(L, 4);
Radius *= Radius;
lua_newtable(L);
int i = 1;
auto deposit = g_Sim->res->deposits.begin;
auto endDeposit = g_Sim->res->deposits.end;
for (; deposit < endDeposit; deposit++) {
if (Type && Type != deposit->Type) continue;
float x = (deposit->X2 + deposit->X1) * 0.5f - X;
float z = (deposit->Z2 + deposit->Z1) * 0.5f - Z;
float dist = x * x + z * z;
if (dist > Radius) continue;
lua_pushnumber(L, i++);
lua_newtable(L);
lua_push(L, "X1", deposit->X1);
lua_push(L, "Z1", deposit->Z1);
lua_push(L, "X2", deposit->X2);
lua_push(L, "Z2", deposit->Z2);
lua_push(L, "Type", deposit->Type);
lua_push(L, "Dist", sqrtf(dist));
lua_settable(L, -3);
}
return 1;
}
#define s_GDAPName "GetDepositsAroundPoint"
#define s_GDAPDesc "(X, Z, Radius, Type)"
//PatcherList_SimFuncRegs_SGDAPRegDesc
luaFuncDescReg SGDAPRegDesc = {
0x00E45E90,
s_GDAPName,
0x00E00D90,
s_GDAPDesc,
0x00000000,
SimGetDepositsAroundPoint,
0x00000000};
//PatcherList_UIFuncRegs_UGDAPRegDesc
luaFuncDescReg UGDAPRegDesc = {
0x00E45E90,
s_GDAPName,
0x00E00D90,
s_GDAPDesc,
0x00000000,
SimGetDepositsAroundPoint,
0x00000000};