blob: d4be77591553720029209d6146e42ca7934fa981 (
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
|
#include "luax_vm.h"
#include "luax_ref.h"
namespace Luax
{
LuaxRef::LuaxRef(int mode)
: mRefID(LUA_NOREF)
, mMode(mode)
{
}
LuaxRef::~LuaxRef()
{
}
LuaxRef::operator bool()
{
return (mRefID != LUA_NOREF);
}
bool LuaxRef::PushRef(LuaxState& state)
{
assert(mRefID != LUA_NOREF);
LuaxVM* vm = state.GetVM();
if (!vm) return false;
if (mMode == STRONG_REF)
{
LuaxRefTable& table = vm->GetStrongRefTable();
table.PushRef(state, mRefID);
}
else if (mMode == WEAK_REF)
{
LuaxRefTable& table = vm->GetWeakRefTable();
table.PushRef(state, mRefID);
}
else
{
state.PushNil();
return false;
}
return true;
}
void LuaxRef::SetRef(LuaxState& state, int idx)
{
LuaxVM* vm = state.GetVM();
if (!vm) return;
if (mMode == STRONG_REF)
{
LuaxRefTable& table = vm->GetStrongRefTable();
mRefID = table.Ref(state, idx);
}
else if (mMode == WEAK_REF)
{
LuaxRefTable& table = vm->GetWeakRefTable();
mRefID = table.Ref(state, idx);
}
}
LuaxStrongRef::LuaxStrongRef()
: LuaxRef(STRONG_REF)
{
}
LuaxWeakRef::LuaxWeakRef()
: LuaxRef(WEAK_REF)
{
}
}
|