-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsh_intervalloop.lua
53 lines (48 loc) · 1.66 KB
/
sh_intervalloop.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
-- incredible-gmod.ru
-- https://github.com/Be1zebub/Small-GLua-Things/blob/master/sh_intervalloop.lua
-- Интервальная итерация таблиц.
-- Позволяет сэкономить на циклах при помощи распределения нагрузки на временной промежуток.
-- Актуально в местах где не требуется мгновенный результат.
local lnum = 0
function IntervalLoop(time, tab, callback, notsequential, onfinish)
lnum = lnum + 1
local uid = "IntervalLoop".. lnum
if notsequential then -- table.IsSequential это клёво, но хардкодинг не требует лишних циклов.
local count = table.Count(tab)
timer.Create(uid, time, count, function()
local k, v = next(tab)
callback(v, k)
tab[k] = nil
end)
if onfinish then
timer.Simple(time * count, onfinish)
end
else
local count = #tab
local i = 0
timer.Create(uid, time, count, function()
i = i + 1
callback(tab[i], i)
end)
if onfinish then
timer.Simple(time * count, onfinish)
end
end
return {
Stop = function()
return timer.Stop(uid)
end,
Remove = function()
timer.Remove(uid)
end,
Pause = function()
return timer.Pause(uid)
end,
TimeLeft = function()
return timer.TimeLeft(uid)
end,
RepsLeft = function()
return timer.RepsLeft(uid)
end
}
end