forked from 20tab/UnrealEnginePython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPyHUD.cpp
More file actions
255 lines (194 loc) · 4.78 KB
/
PyHUD.cpp
File metadata and controls
255 lines (194 loc) · 4.78 KB
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#include "UnrealEnginePythonPrivatePCH.h"
#include "PyHUD.h"
#include "PythonDelegate.h"
APyHUD::APyHUD()
{
PrimaryActorTick.bCanEverTick = true;
PythonTickForceDisabled = false;
PythonDisableAutoBinding = false;
}
// Called when the game starts
void APyHUD::BeginPlay()
{
Super::BeginPlay();
// ...
if (PythonModule.IsEmpty())
return;
FScopePythonGIL gil;
py_uobject = ue_get_python_uobject(this);
if (!py_uobject)
{
unreal_engine_py_log_error();
return;
}
PyObject *py_hud_module = PyImport_ImportModule(TCHAR_TO_UTF8(*PythonModule));
if (!py_hud_module)
{
unreal_engine_py_log_error();
return;
}
#if WITH_EDITOR
// todo implement autoreload with a dictionary of module timestamps
py_hud_module = PyImport_ReloadModule(py_hud_module);
if (!py_hud_module)
{
unreal_engine_py_log_error();
return;
}
#endif
if (PythonClass.IsEmpty())
return;
PyObject *py_hud_module_dict = PyModule_GetDict(py_hud_module);
PyObject *py_hud_class = PyDict_GetItemString(py_hud_module_dict, TCHAR_TO_UTF8(*PythonClass));
if (!py_hud_class)
{
UE_LOG(LogPython, Error, TEXT("Unable to find class %s in module %s"), *PythonClass, *PythonModule);
return;
}
py_hud_instance = PyObject_CallObject(py_hud_class, NULL);
if (!py_hud_instance)
{
unreal_engine_py_log_error();
return;
}
py_uobject->py_proxy = py_hud_instance;
PyObject_SetAttrString(py_hud_instance, (char*)"uobject", (PyObject *)py_uobject);
if (!PyObject_HasAttrString(py_hud_instance, (char *)"tick") || PythonTickForceDisabled)
{
SetActorTickEnabled(false);
}
if (!PythonDisableAutoBinding)
ue_autobind_events_for_pyclass(py_uobject, py_hud_instance);
ue_bind_events_for_py_class_by_attribute(this, py_hud_instance);
if (!PyObject_HasAttrString(py_hud_instance, (char *)"begin_play"))
return;
PyObject *bp_ret = PyObject_CallMethod(py_hud_instance, (char *)"begin_play", nullptr);
if (!bp_ret)
{
unreal_engine_py_log_error();
return;
}
Py_DECREF(bp_ret);
}
// Called every frame
void APyHUD::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
if (!py_hud_instance)
return;
FScopePythonGIL gil;
if (!PyObject_HasAttrString(py_hud_instance, (char *)"tick"))
return;
PyObject *ret = PyObject_CallMethod(py_hud_instance, (char *)"tick", (char *)"f", DeltaTime);
if (!ret)
{
unreal_engine_py_log_error();
return;
}
Py_DECREF(ret);
}
void APyHUD::DrawHUD()
{
Super::DrawHUD();
if (!py_hud_instance)
return;
FScopePythonGIL gil;
if (!PyObject_HasAttrString(py_hud_instance, (char *)"draw_hud"))
return;
PyObject *ret = PyObject_CallMethod(py_hud_instance, (char *)"draw_hud", nullptr);
if (!ret)
{
unreal_engine_py_log_error();
return;
}
Py_DECREF(ret);
}
void APyHUD::CallPythonHUDMethod(FString method_name, FString args)
{
if (!py_hud_instance)
return;
FScopePythonGIL gil;
PyObject *ret = nullptr;
if (args.IsEmpty())
{
ret = PyObject_CallMethod(py_hud_instance, TCHAR_TO_UTF8(*method_name), NULL);
}
else
{
ret = PyObject_CallMethod(py_hud_instance, TCHAR_TO_UTF8(*method_name), (char *)"s", TCHAR_TO_UTF8(*args));
}
if (!ret)
{
unreal_engine_py_log_error();
return;
}
Py_DECREF(ret);
}
bool APyHUD::CallPythonHUDMethodBool(FString method_name, FString args)
{
if (!py_hud_instance)
return false;
FScopePythonGIL gil;
PyObject *ret = nullptr;
if (args.IsEmpty())
{
ret = PyObject_CallMethod(py_hud_instance, TCHAR_TO_UTF8(*method_name), NULL);
}
else
{
ret = PyObject_CallMethod(py_hud_instance, TCHAR_TO_UTF8(*method_name), (char *)"s", TCHAR_TO_UTF8(*args));
}
if (!ret)
{
unreal_engine_py_log_error();
return false;
}
if (PyObject_IsTrue(ret))
{
Py_DECREF(ret);
return true;
}
Py_DECREF(ret);
return false;
}
FString APyHUD::CallPythonHUDMethodString(FString method_name, FString args)
{
if (!py_hud_instance)
return FString();
FScopePythonGIL gil;
PyObject *ret = nullptr;
if (args.IsEmpty())
{
ret = PyObject_CallMethod(py_hud_instance, TCHAR_TO_UTF8(*method_name), NULL);
}
else
{
ret = PyObject_CallMethod(py_hud_instance, TCHAR_TO_UTF8(*method_name), (char *)"s", TCHAR_TO_UTF8(*args));
}
if (!ret)
{
unreal_engine_py_log_error();
return FString();
}
PyObject *py_str = PyObject_Str(ret);
if (!py_str)
{
Py_DECREF(ret);
return FString();
}
char *str_ret = PyUnicode_AsUTF8(py_str);
FString ret_fstring = FString(UTF8_TO_TCHAR(str_ret));
Py_DECREF(py_str);
return ret_fstring;
}
APyHUD::~APyHUD()
{
FScopePythonGIL gil;
Py_XDECREF(py_hud_instance);
#if defined(UEPY_MEMORY_DEBUG)
UE_LOG(LogPython, Warning, TEXT("Python AHUD %p (mapped to %p) wrapper XDECREF'ed"), this, py_uobject ? py_uobject->py_proxy : nullptr);
#endif
// this could trigger the distruction of the python/uobject mapper
Py_XDECREF(py_uobject);
FUnrealEnginePythonHouseKeeper::Get()->UnregisterPyUObject(this);
}