-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathscripted_object.cpp
More file actions
454 lines (420 loc) · 12.4 KB
/
Copy pathscripted_object.cpp
File metadata and controls
454 lines (420 loc) · 12.4 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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
#ifdef WITH_RIVE_SCRIPTING
#include "rive/lua/rive_lua_libs.hpp"
#endif
#include "rive/assets/script_asset.hpp"
#include "rive/artboard.hpp"
#include "rive/file.hpp"
#include "rive/script_input_artboard.hpp"
#include "rive/animation/scripted_listener_action.hpp"
#include "rive/animation/scripted_transition_condition.hpp"
#include "rive/scripted/scripted_data_converter.hpp"
#include "rive/scripted/scripted_drawable.hpp"
#include "rive/scripted/scripted_layout.hpp"
#include "rive/scripted/scripted_path_effect.hpp"
#include "rive/scripted/scripted_object.hpp"
#include "rive/data_bind/data_bind.hpp"
using namespace rive;
ScriptedObject* ScriptedObject::from(Core* object)
{
switch (object->coreType())
{
case ScriptedDataConverter::typeKey:
return object->as<ScriptedDataConverter>();
case ScriptedDrawable::typeKey:
return object->as<ScriptedDrawable>();
case ScriptedLayout::typeKey:
return object->as<ScriptedLayout>();
case ScriptedPathEffect::typeKey:
return object->as<ScriptedPathEffect>();
case ScriptedListenerAction::typeKey:
return object->as<ScriptedListenerAction>();
case ScriptedTransitionCondition::typeKey:
return object->as<ScriptedTransitionCondition>();
}
return nullptr;
}
#ifdef WITH_RIVE_SCRIPTING
void ScriptedObject::setArtboardInput(std::string name, Artboard* artboard)
{
lua_State* L = state();
if (L == nullptr || scriptAsset() == nullptr)
{
return;
}
rive_lua_pushRef(L, m_self);
auto artboardInstance = artboard->instance();
artboardInstance->frameOrigin(false);
lua_newrive<ScriptedArtboard>(L,
L,
ref_rcp(scriptAsset()->file()),
std::move(artboardInstance),
nullptr,
dataContext());
lua_setfield(L, -2, name.c_str());
rive_lua_pop(L, 1);
addScriptedDirt(ComponentDirt::ScriptUpdate);
}
void ScriptedObject::setBooleanInput(std::string name, bool value)
{
lua_State* L = state();
if (L == nullptr)
{
return;
}
rive_lua_pushRef(L, m_self);
lua_pushboolean(L, value);
lua_setfield(L, -2, name.c_str());
rive_lua_pop(L, 1);
addScriptedDirt(ComponentDirt::ScriptUpdate);
}
void ScriptedObject::setNumberInput(std::string name, float value)
{
lua_State* L = state();
if (L == nullptr)
{
return;
}
rive_lua_pushRef(L, m_self);
lua_pushnumber(L, value);
lua_setfield(L, -2, name.c_str());
rive_lua_pop(L, 1);
addScriptedDirt(ComponentDirt::ScriptUpdate);
}
void ScriptedObject::setIntegerInput(std::string name, int value)
{
lua_State* L = state();
if (L == nullptr)
{
return;
}
rive_lua_pushRef(L, m_self);
lua_pushunsigned(L, value);
lua_setfield(L, -2, name.c_str());
rive_lua_pop(L, 1);
addScriptedDirt(ComponentDirt::ScriptUpdate);
}
void ScriptedObject::setStringInput(std::string name, std::string value)
{
lua_State* L = state();
if (L == nullptr)
{
return;
}
rive_lua_pushRef(L, m_self);
lua_pushstring(L, value.c_str());
lua_setfield(L, -2, name.c_str());
rive_lua_pop(L, 1);
addScriptedDirt(ComponentDirt::ScriptUpdate);
}
void ScriptedObject::setViewModelInput(std::string name,
ViewModelInstanceValue* value)
{
lua_State* L = state();
if (L == nullptr)
{
return;
}
rive_lua_pushRef(L, m_self);
switch (value->coreType())
{
case ViewModelInstanceViewModelBase::typeKey:
{
auto viewModel = value->as<ViewModelInstanceViewModel>();
auto vmi = viewModel->referenceViewModelInstance();
if (vmi == nullptr)
{
fprintf(stderr,
"riveLuaPushViewModelInstanceValue - passed in a "
"ViewModelInstanceViewModel with no associated "
"ViewModelInstance.\n");
return;
}
lua_newrive<ScriptedViewModel>(L,
L,
ref_rcp(vmi->viewModel()),
vmi);
break;
}
default:
break;
}
lua_setfield(L, -2, name.c_str());
rive_lua_pop(L, 1);
addScriptedDirt(ComponentDirt::ScriptUpdate);
}
void ScriptedObject::trigger(std::string name)
{
lua_State* L = state();
if (L == nullptr)
{
return;
}
rive_lua_pushRef(L, m_self);
if (static_cast<lua_Type>(lua_getfield(L, -1, name.c_str())) !=
LUA_TFUNCTION)
{
rive_lua_pop(L, 2);
return;
}
lua_pushvalue(L, -2);
rive_lua_pcall(L, 1, 0);
rive_lua_pop(L, 1);
addScriptedDirt(ComponentDirt::ScriptUpdate);
}
bool ScriptedObject::scriptAdvance(float elapsedSeconds)
{
lua_State* L = state();
if (!advances() || L == nullptr)
{
return false;
}
rive_lua_pushRef(L, m_self);
lua_getfield(L, -1, "advance");
lua_pushvalue(L, -2);
lua_pushnumber(L, elapsedSeconds);
if (static_cast<lua_Status>(rive_lua_pcall(L, 2, 1)) != LUA_OK)
{
rive_lua_pop(L, 2);
return false;
}
bool result = lua_toboolean(L, -1);
rive_lua_pop(L, 2);
return result;
}
void ScriptedObject::scriptUpdate()
{
lua_State* L = state();
if (!updates() || L == nullptr)
{
return;
}
// Stack: []
rive_lua_pushRef(L, m_self);
// Stack: [self]
lua_getfield(L, -1, "update");
// Stack: [self, field] Swap self and field
lua_insert(L, -2);
// Stack: [field, self]
if (static_cast<lua_Status>(rive_lua_pcall(L, 1, 0)) != LUA_OK)
{
rive_lua_pop(L, 1);
}
}
bool ScriptedObject::scriptInit(ScriptingVM* vm)
{
lua_State* L = vm ? vm->state() : nullptr;
// Clean up old references if reinitializing
if (m_vm != nullptr)
{
lua_State* oldState = state();
if (m_self != 0)
{
lua_unref(oldState, m_self);
m_self = 0;
}
disposeScriptedContext();
}
for (auto prop : m_customProperties)
{
auto scriptInput = ScriptInput::from(prop);
if (scriptInput && !scriptInput->validateForScriptInit())
{
rive_lua_pop(L, 1);
return false;
}
}
if (static_cast<lua_Status>(rive_lua_pcall(L, 0, 1)) != LUA_OK)
{
rive_lua_pop(L, 1);
return false;
}
if (static_cast<lua_Type>(lua_type(L, -1)) != LUA_TTABLE)
{
rive_lua_pop(L, 1);
return false;
}
else
{
// Stack: [self]
lua_newrive<ScriptedContext>(L, this);
// Stack: [self, ScriptedContext]
m_context = lua_ref(L, -1);
rive_lua_pop(L, 1);
// Stack: [self]
m_self = lua_ref(L, -1);
#ifdef WITH_RIVE_TOOLS
m_vm = ref_rcp(vm); // Increment refcount for shared ownership
#else
m_vm = vm;
#endif
for (auto prop : m_customProperties)
{
auto scriptInput = ScriptInput::from(prop);
if (scriptInput)
{
scriptInput->initScriptedValue();
}
}
if (inits())
{
// Stack: [self]
lua_getfield(L, -1, "init");
// Stack: [self, field]
lua_pushvalue(L, -2);
// Stack: [self, field, self]
rive_lua_pushRef(L, m_context);
// Stack: [self, field, self, ScriptedContext]
auto pCallResult = rive_lua_pcall(L, 2, 1);
if (static_cast<lua_Status>(pCallResult) != LUA_OK)
{
lua_unref(L, m_self);
disposeScriptedContext();
// Stack: [self, status]
rive_lua_pop(L, 2);
m_vm = nullptr;
m_self = 0;
return false;
}
if (!lua_toboolean(L, -1))
{
lua_unref(L, m_self);
disposeScriptedContext();
// Pop boolean and self table
// Stack: [self, result]
rive_lua_pop(L, 2);
m_vm = nullptr;
m_self = 0;
return false;
}
else
{
// Stack: [self, result]
rive_lua_pop(L, 1);
assert(static_cast<lua_Type>(lua_type(L, -1)) == LUA_TTABLE);
// Stack: [self]
rive_lua_pop(L, 1);
}
}
else
{
// Init function doesn't exist, just pop the self table
// Stack: [self]
rive_lua_pop(L, 1);
}
}
return true;
}
void ScriptedObject::disposeScriptInputs()
{
for (auto prop : m_customProperties)
{
auto scriptInput = ScriptInput::from(prop);
if (scriptInput != nullptr)
{
scriptInput->scriptedObject(nullptr);
}
}
m_customProperties.clear();
}
void ScriptedObject::disposeScriptedContext()
{
if (m_context != 0)
{
lua_State* L = state();
rive_lua_pushRef(L, m_context);
auto scriptedContext = lua_torive<ScriptedContext>(L, -1);
scriptedContext->dispose();
rive_lua_pop(L, 1);
lua_unref(L, m_context);
m_context = 0;
}
}
void ScriptedObject::scriptDispose()
{
disposeScriptInputs();
lua_State* L = state();
if (L != nullptr)
{
lua_unref(L, m_self);
disposeScriptedContext();
#ifdef TESTING
lua_gc(L, LUA_GCCOLLECT, 0);
#endif
}
m_vm = nullptr;
m_self = 0;
}
void ScriptedObject::collectLuaGarbage(lua_State* state)
{
if (state != nullptr)
{
// Null C++ pointers on all ScriptReffedArtboard and ScriptedViewModel
// instances for this lua_State. Sub-artboard scripts store orphaned
// registry refs (m_context, m_dataRef, m_propertyRefs) that keep C++
// objects alive. Rather than walk the registry, we null the C++ side
// directly — the Lua userdata become harmless empty shells.
ScriptReffedArtboard::releaseAll(state);
ScriptedViewModel::releaseAll(state);
lua_gc(state, LUA_GCCOLLECT, 0);
}
}
#else
void ScriptedObject::setArtboardInput(std::string name, Artboard* artboard) {}
void ScriptedObject::setBooleanInput(std::string name, bool value) {}
void ScriptedObject::setIntegerInput(std::string name, int value) {}
void ScriptedObject::setNumberInput(std::string name, float value) {}
void ScriptedObject::setStringInput(std::string name, std::string value) {}
void ScriptedObject::setViewModelInput(std::string name,
ViewModelInstanceValue* value)
{}
void ScriptedObject::trigger(std::string name) {}
bool ScriptedObject::scriptAdvance(float elapsedSeconds) { return false; }
void ScriptedObject::scriptUpdate() {}
void ScriptedObject::scriptDispose() {}
void ScriptedObject::disposeScriptInputs() {}
#endif
void ScriptedObject::reinit()
{
if (scriptAsset() != nullptr)
{
scriptAsset()->initScriptedObject(this);
}
}
ScriptAsset* ScriptedObject::scriptAsset() const
{
return (ScriptAsset*)m_fileAsset.get();
}
void ScriptedObject::setAsset(rcp<FileAsset> asset)
{
if (asset != nullptr && asset->is<ScriptAsset>())
{
FileAssetReferencer::setAsset(asset);
}
}
void ScriptedObject::markNeedsUpdate() {}
void ScriptedObject::cloneProperties(CustomPropertyContainer* twin,
DataBindContainer* dataBindContainer) const
{
for (auto prop : m_customProperties)
{
auto clonedValue = prop->clone()->as<CustomProperty>();
twin->addProperty(clonedValue);
auto input = ScriptInput::from(prop);
if (input != nullptr)
{
auto dataBind = input->dataBind();
if (dataBind)
{
auto dataBindClone = static_cast<DataBind*>(dataBind->clone());
dataBindClone->file(dataBind->file());
if (dataBind->converter() != nullptr)
{
dataBindClone->converter(
dataBind->converter()->clone()->as<DataConverter>());
}
dataBindClone->target(clonedValue);
dataBindContainer->addDataBind(dataBindClone);
}
}
}
}