-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathAutoCategory_API.lua
58 lines (56 loc) · 1.61 KB
/
AutoCategory_API.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
47
48
49
50
51
52
53
54
55
56
57
58
--====API====--
function AutoCategory:MatchCategoryRules( bagId, slotIndex, specialType )
AutoCategory.LazyInit()
self.checkingItemBagId = bagId
self.checkingItemSlotIndex = slotIndex
local bag_type_id
if specialType then
bag_type_id = specialType
else
if bagId == BAG_BACKPACK or bagId == BAG_WORN then
bag_type_id = AC_BAG_TYPE_BACKPACK
elseif bagId == BAG_BANK or bagId == BAG_SUBSCRIBER_BANK then
bag_type_id = AC_BAG_TYPE_BANK
elseif bagId == BAG_VIRTUAL then
bag_type_id = AC_BAG_TYPE_CRAFTBAG
elseif bagId == BAG_GUILDBANK then
bag_type_id = AC_BAG_TYPE_GUILDBANK
end
end
if not bag_type_id then
return false, "", 0, nil, nil
end
local needCheck = false
local bag = AutoCategory.curSavedVars.bags[bag_type_id]
for i = 1, #bag.rules do
local entry = bag.rules[i]
local rule = AutoCategory.GetRuleByName(entry.name)
if rule then
rule.damaged = false
if rule.rule == nil then
return false, "", 0, bag_type_id, entry.isHidden
end
local ruleCode, res = zo_loadstring( "return(" .. rule.rule ..")" )
if not ruleCode then
d("Error1: " .. res)
rule.damaged = true
else
setfenv( ruleCode, AutoCategory.Environment )
AutoCategory.AdditionCategoryName = ""
local ok, res = pcall( ruleCode )
if ok then
if res == true then
return true, rule.name .. AutoCategory.AdditionCategoryName, entry.priority, bag_type_id, entry.isHidden
end
else
d("Error2: " .. res)
rule.damaged = true
end
end
if rule.damaged then
return false, "", 0, bag_type_id, entry.isHidden
end
end
end
return false, "", 0, bag_type_id
end