-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtest.lua
46 lines (39 loc) · 1.06 KB
/
test.lua
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
-- vim:fileencoding=gbk
require 'tableHooker'
a = {}
a.user = {}
a.user.army = { type = 'knight' }
a = tableHooker.hook(a)
--tableHooker.enableAutoInvokeListeners(a, false)
tableHooker.addListener(a, 'user', function()
print('dataChanged: user')
end)
tableHooker.addListener(a, 'user.army', function()
print('dataChanged: user.army')
end)
tableHooker.addListener(a, 'user.resource', function()
print('dataChanged: user.resource')
end)
tableHooker.addListener(a, 'user.resource.stone', function()
print('dataChanged: user.resource.stone')
end)
print('##############')
a.user.army.type = 'archer'
print('##############')
a.user.army.type = 'archer'
print('##############')
a.user.army.amount = 10
print('##############')
a.user.resource = {gold = 5}
print('##############')
a.user.resource.stone = 7
print('##############')
a.user.resource.gold = 8
--tableHooker.invokeActiveListeners(a)
print('##############')
for k, v in tableHooker._pairs(a.user.resource) do
print(k, v)
end
print('##############')
a = tableHooker.unhook(a)
print(a.user.army.type)