File size: 1,766 Bytes
b6a38d7 |
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 |
tips = {
loaded = {},
}
function LoadTips(tips)
if not tips then return {} end
local loaded = {}
local filter = tips.filter
local bGamepad = GetUIStyleGamepad()
for i=1, #tips do
local tip = tips[i]
if not filter or filter(tip) then
local translation = false
if not bGamepad and tip.pc_text then
--[[local actions = {}
for w in string.gmatch(tip.pc_keys, "[%a]+") do
local text = ""
local key = GetKeyForAction(w)
local keyName = key and KeyNames[key]
if keyName then
text = _InternalTranslate(keyName)
end
actions[#actions + 1] = text
end]]
translation = tip.pc_text
elseif tip.text then
translation = tip.text
end
if translation then
tip.translation = translation
loaded[#loaded + 1] = tip
end
end
end
return loaded
end
tips.InitTips = function()
--load config
if not tips.data then
printf("warning: tips not found")
return
end
-- load tips
tips.loaded = LoadTips(tips.data)
return #tips.loaded ~= 0
end
tips.DoneTips = function()
tips.loaded = {}
end
tips.GetNextTip = function(dont_rand)
local count = #tips.loaded
if count > 0 then
-- get random tip
local found_id = false
local current_id = AccountStorage and AccountStorage.tips.current_tip or 0
local id = current_id or 0
for i=1,count do
id = 1 + (dont_rand and (id % count) or AsyncRand(count))
local tip = tips.loaded[id]
if id ~= current_id then
found_id = id
break
end
end
found_id = found_id or current_id
if found_id then
local tip = tips.loaded[found_id]
if tip then
if AccountStorage then AccountStorage.tips.current_tip = found_id end
return tip.translation, found_id
end
end
end
print("No tip to show!")
return "", 0
end
|