-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCore.lua
2290 lines (1893 loc) · 89.5 KB
/
Core.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--========================================================--
-- Scorpio Addon FrameWork --
-- --
-- Author : kurapica125@outlook.com --
-- Create Date : 2016/12/12 --
-- Update Date : 2022/08/30 --
--========================================================--
PLoop(function(_ENV)
------------------------------------------------------------
-- Scorpio - Addon Class --
------------------------------------------------------------
__Sealed__()
_G.Scorpio = class "Scorpio" (function (_ENV)
inherit "Module"
import "System.Reactive"
----------------------------------------------
-- Prepare --
----------------------------------------------
-------------------- META --------------------
META_WEAKKEY = { __mode = "k" }
META_WEAKVAL = { __mode = "v" }
------------------- Logger -------------------
Log = Logger("Scorpio")
Log.LogLevel = 3
export {
------------------- Math ---------------------
min = math.min,
max = math.max,
------------------- String -------------------
strtrim = strtrim or function(s) return (s:gsub("^%s*(.-)%s*$", "%1")) or "" end,
------------------- Error --------------------
geterrorhandler = _G.geterrorhandler or function() return print end,
errorhandler = _G.errorhandler or function(err) return geterrorhandler()(err) end,
------------------- Table --------------------
tblconcat = table.concat,
tinsert = table.insert,
tremove = table.remove,
wipe = wipe or function(t) for k in pairs(t) do t[k] = nil end return t end,
------------------- Coroutine ----------------
create = coroutine.create,
resume = coroutine.resume,
running = coroutine.running,
status = coroutine.status,
wrap = coroutine.wrap,
yield = coroutine.yield,
DefaultPool = Threading.ThreadPool.Default,
debugprofilestop = debugprofilestop,
GetSpecialization = _G.GetSpecialization or _G.GetActiveTalentGroup or function() return 1 end,
IsWarModeDesired = C_PvP and C_PvP.IsWarModeDesired or function() return false end,
}
ThreadCall = function(...) return DefaultPool:ThreadCall(...) end
----------------------------------------------
-- Addon Cache --
----------------------------------------------
_RootAddon = setmetatable({}, META_WEAKVAL)
_NotLoaded = setmetatable({}, META_WEAKKEY)
_DisabledModule = setmetatable({}, META_WEAKKEY)
local function callAddonHandlers(map, ...)
if not map then return end
for obj, handler in pairs(map) do
if not _DisabledModule[obj] then
local ok, err = pcall(handler, ...)
if not ok then errorhandler(err) end
end
end
end
----------------------------------------------
-- Cache System --
----------------------------------------------
local t_Cache = {} -- Cache Manager
local _RegisterService = {}
local _ResidentService = setmetatable({}, META_WEAKKEY)
local _ObjectGuidMap = setmetatable({}, META_WEAKKEY)
local _SingleAsync = setmetatable({}, META_WEAKVAL)
local _RunSingleAsync = setmetatable({}, META_WEAKKEY)
local _CancelSingleAsync= setmetatable({}, META_WEAKKEY)
-- For diagnosis
g_CacheGenerated = 0
g_CacheRamain = 1
local function recycleCache(cache)
if cache then
wipe(cache)
if t_Cache then
cache[0] = t_Cache
end
t_Cache = cache
g_CacheRamain = g_CacheRamain + 1
return
end
if t_Cache then
cache = t_Cache
t_Cache = cache[0]
cache[0] = nil
g_CacheRamain = g_CacheRamain - 1
return cache
else
g_CacheGenerated= g_CacheGenerated + 1
return {}
end
end
----------------------------------------------
-- Task System --
----------------------------------------------
-- Phase Settings
PHASE_THRESHOLD = 15 -- The max task operation time per phase
PHASE_TIME_FACTOR = 0.4 -- The factor used to calculate the task operation time per phase
SMOOTH_LOADING = true
-- System Task Settings
EVENT_CLEAR_INTERVAL = 100 -- The interval for event task clear
EVENT_CLEAR_DELAY = 10
DIAGNOSE_DELAY = 60
-- Const
HIGH_PRIORITY = 1 -- For Continue
NORMAL_PRIORITY = 2 -- For Event, Next, Wait
LOW_PRIORITY = 3 -- For Delay
MAX_LOW_DELAY_TURN = 5 -- The max phase to delay the low priority tasks
-- Global variables
g_Phase = 0 -- The Nth phase based on GetTime()
g_PhaseTime = 0
g_Threshold = 0 -- The threshold based on GetFramerate(), in ms
g_InPhase = false
g_FinishedTask = 0
g_StartTime = 0
g_EndTime = 0
g_AverageTime = 20 -- An useless init value
g_PhaseStartTime = 0 -- Recored the start phase time
g_PhaseStartProfile = 0 -- The start profile time of current phase
g_DynamicThreshold = 15 -- The dynamic threshold
g_PreTaskCount = 0
-- For diagnosis
g_DelayedTask = 0
g_LowLevelup = 0
g_MaxPhaseTime = 0
-- Task List
t_Tasks = {} -- Core task list
-- Runtime task
r_Tasks = {}
r_Count = 0
r_LowDelayed = 0
-- In Loading Screen
r_InLoadingScreen = true
r_InBattleField = false
r_DelayResumeForBF = 1
-- Queue API
local function queueTask(priority, task)
local cache = t_Tasks[priority]
if not cache then
cache = recycleCache()
t_Tasks[priority] = cache
end
tinsert(cache, task)
end
local function queueTaskList(priority, tasklist)
local cache = t_Tasks[priority]
if not cache then
t_Tasks[priority] = tasklist
else
while cache[0] do cache = cache[0] end
cache[0] = tasklist
end
end
-- Phase API
local function processPhase()
if g_InPhase or r_InLoadingScreen then return end
g_InPhase = true
-- Prepare the task list
local now = GetTime()
if now ~= g_Phase then
-- Init the phase
g_Phase = now
-- For diagnosis
g_DelayedTask = g_DelayedTask + r_Count
-- Calculate the average time per task
if g_FinishedTask > 0 then
local cost = g_EndTime - g_StartTime
-- For diagnosis
if cost > g_MaxPhaseTime then g_MaxPhaseTime = cost end
g_AverageTime = (g_AverageTime + cost / g_FinishedTask) / 2
g_FinishedTask = 0
end
-- Record the start time
g_StartTime = g_PhaseStartProfile -- debugprofilestop()
-- Move task to core based on priority
-- High priority means it must be processed as soon as possible
-- Normal priority means it could be processed in the next phase as high priority
-- Lower priority means it will be processed when there is enough time
local r_Tail = r_Tasks[0]
for i = HIGH_PRIORITY, NORMAL_PRIORITY do
local cache = t_Tasks[i]
if cache then
t_Tasks[i] = nil
if r_Tail then
r_Tail[0] = cache
else
-- Init
r_Tasks[1] = cache
end
while cache do
r_Tail = cache
r_Count = r_Count + #cache
cache = cache[0]
end
end
end
r_Tasks[0] = r_Tail
-- LOW_PRIORITY
if not r_Tasks[LOW_PRIORITY] then
r_Tasks[LOW_PRIORITY] = t_Tasks[LOW_PRIORITY]
t_Tasks[LOW_PRIORITY] = nil
-- reset the counter
r_LowDelayed = 0
else
r_LowDelayed = r_LowDelayed + 1
if r_LowDelayed > MAX_LOW_DELAY_TURN then
g_LowLevelup = g_LowLevelup + 1
-- Queue to the normal priority list
queueTaskList(NORMAL_PRIORITY, r_Tasks[LOW_PRIORITY])
r_Tasks[LOW_PRIORITY] = nil
end
end
-- Calc the phase time
local fpslimit = min(PHASE_THRESHOLD, 1000 * PHASE_TIME_FACTOR / max(10, GetFramerate() or 60))
local taskreq = r_Count * g_AverageTime
if taskreq <= fpslimit * 2 then
g_PhaseTime = fpslimit
elseif not SMOOTH_LOADING and taskreq > PHASE_THRESHOLD * 50 then
-- Reduce the waiting time when entering the game
g_PhaseTime = taskreq / 2
else
if g_DynamicThreshold < PHASE_THRESHOLD then
g_PhaseTime = PHASE_THRESHOLD
else
-- use dynamic phase time to avoid too many task remained
if r_Count > g_PreTaskCount then
g_PhaseTime = g_DynamicThreshold + 1
elseif r_Count < g_PreTaskCount then
g_PhaseTime = g_DynamicThreshold - 1
else
g_PhaseTime = g_DynamicThreshold
end
end
end
g_DynamicThreshold = g_PhaseTime
g_PreTaskCount = r_Count
g_Threshold = g_StartTime + g_PhaseTime
-- Check if too much time cost by events(with low cpu), we still need some time to process the high priority tasks
local currStop = debugprofilestop()
if g_Threshold <= currStop then g_Threshold = currStop + g_PhaseTime end
elseif not r_Tasks[1] then
-- Only tasks of high priority can be executed again and again in a phase
local cache = t_Tasks[HIGH_PRIORITY]
if cache then
t_Tasks[HIGH_PRIORITY] = nil
r_Tasks[1] = cache
while cache do
r_Tasks[0] = cache
r_Count = r_Count + #cache
cache = cache[0]
end
end
end
-- It's time to process the task execution
-- Process the high priority tasks
local r_Header = r_Tasks[1]
local runoutIdx = nil
while r_Header do
for i = r_Header[-1] or 1, #r_Header do
-- The phase is out of time, keep the index for next phase
if g_Threshold <= debugprofilestop() then
runoutIdx = i
break
end
local task = r_Header[i]
r_Header[-1] = i + 1
if task then
if _CancelSingleAsync[task] then
_CancelSingleAsync[task] = nil
else
-- Process the task
local ok, msg = resume(task)
if not ok then
if msg ~= "cannot resume dead coroutine" then
pcall(geterrorhandler(), msg)
end
if _RunSingleAsync[task] then
if type(_RunSingleAsync[task]) == "string" then
_SingleAsync[_RunSingleAsync[task]] = false
else
_RunSingleAsync[task][1] = false
end
_RunSingleAsync[task] = nil
end
if _ResidentService[task] then
ThreadCall(_ResidentService[task], msg)
_ResidentService[task] = nil
end
end
g_FinishedTask = g_FinishedTask + 1
end
end
r_Count = r_Count - 1
end
if runoutIdx and r_Header then
r_Header[-1] = runoutIdx
break
end
local nxt = r_Header[0]
recycleCache(r_Header)
r_Header = nxt
end
r_Tasks[1] = r_Header
if not r_Header then r_Tasks[0] = nil end
-- Process the low priority tasks
if not runoutIdx and r_Tasks[LOW_PRIORITY] then
r_Header = r_Tasks[LOW_PRIORITY]
for i = r_Header[-1] or 1, #r_Header do
if g_Threshold <= debugprofilestop() then
runoutIdx = i
break
end
local task = r_Header[i]
r_Header[-1] = i + 1
if task then
if _CancelSingleAsync[task] then
_CancelSingleAsync[task] = nil
else
-- Process the task
local ok, msg = resume(task)
if not ok then
if msg ~= "cannot resume dead coroutine" then
pcall(geterrorhandler(), msg)
end
if _RunSingleAsync[task] then
if type(_RunSingleAsync[task]) == "string" then
_SingleAsync[_RunSingleAsync[task]] = false
else
_RunSingleAsync[task][1] = false
end
_RunSingleAsync[task] = nil
end
if _ResidentService[task] then
ThreadCall(_ResidentService[task])
_ResidentService[task] = nil
end
end
g_FinishedTask = g_FinishedTask + 1
end
end
end
if runoutIdx then
r_Header[-1] = runoutIdx
else
recycleCache(r_Header)
r_Tasks[LOW_PRIORITY] = nil
end
end
g_EndTime = debugprofilestop()
g_InPhase = false
-- Try again if have time with high priority tasks
return g_Threshold > g_EndTime and t_Tasks[HIGH_PRIORITY] and processPhase()
end
----------------------------------------------
-- System Task Driver --
----------------------------------------------
ScorpioManager = CreateFrame("Frame")
_EventDistribution = {} -- System Event
_CombatEventDistribution= {} -- Combat Event
_SecureHookDistribution = setmetatable({}, META_WEAKKEY) -- Secure Hook
t_EventTasks = {} -- Event Task
t_WaitEventTasks = {} -- Wait Event Task
t_SecureHookTasks = setmetatable({}, META_WEAKKEY) -- Secure Hook Task
-- Wait thread token
w_Token = {}
w_Token_INDEX = 1
local t_DelayTasks = nil -- Delayed task
local function queueDelayTask(task, time)
time = floor((GetTime() + time) * 100)
local node, header = t_DelayTasks
while node and node[1] < time do
header = node
node = header[0]
end
if node and node[1] == time then
tinsert(node, task)
else
node = recycleCache()
node[1] = time
node[2] = task
if header then
node[0] = header[0]
header[0] = node
else
node[0] = t_DelayTasks
t_DelayTasks= node
end
end
end
local function queueEventTask(task, event)
if not _EventDistribution[event] then
_EventDistribution[event] = setmetatable({}, META_WEAKKEY)
pcall(ScorpioManager.RegisterEvent, ScorpioManager, event)
end
local cache = t_EventTasks[event]
if not cache then
cache = recycleCache()
t_EventTasks[event] = cache
end
tinsert(cache, task)
end
local function queueWaitTask(task, delay, ...)
local token = w_Token_INDEX
w_Token_INDEX = w_Token_INDEX + 1
if w_Token_INDEX > 2147483647 then w_Token_INDEX = 1 end
w_Token[token] = task
if delay then queueDelayTask(token, delay) end
for i = 1, select("#", ...) do
local event = select(i, ...)
if not _EventDistribution[event] then
_EventDistribution[event] = setmetatable({}, META_WEAKKEY)
pcall(ScorpioManager.RegisterEvent, ScorpioManager, event)
end
local cache = t_WaitEventTasks[event]
if not cache then
cache = recycleCache()
cache[0] = GetTime() + EVENT_CLEAR_INTERVAL
t_WaitEventTasks[event] = cache
end
tinsert(cache, token)
end
end
local function yieldReturn(...)
yield()
return ...
end
local function newSystemTask(func, ...)
if select("#", ...) > 0 then
yieldReturn(yield( running() ))
return func(...)
else
return func(yieldReturn(yield( running() )))
end
end
local function wrapAsSystemTask(func, ...)
return ThreadCall(newSystemTask, func, ...)
end
local function newSimpleTask(func, ...)
yield( running() )
return func(...)
end
local function wrapAsSimpleTask(func, ...)
return ThreadCall(newSimpleTask, func, ...)
end
local function processQueue(priority, queue, ...)
yield( running() )
for _, task in ipairs(queue) do
if task then resume(task, ...) end
end
queueTaskList(priority, queue)
end
local function getSecureHookMap(target, targetFunc)
local map = _SecureHookDistribution[target]
if not map then
map = setmetatable({}, META_WEAKKEY)
_SecureHookDistribution[target] = map
end
map = map[targetFunc]
if not map then
if type(target[targetFunc]) ~= "function" then
error(("No method named '%s' can be found."):format(targetFunc))
end
map = setmetatable({}, META_WEAKKEY)
_SecureHookDistribution[target][targetFunc] = map
hooksecurefunc(target, targetFunc, function(...)
local cache = t_SecureHookTasks[target]
local queue = cache and cache[targetFunc]
if queue then
cache[targetFunc] = nil
queueTask(NORMAL_PRIORITY, ThreadCall(processQueue, HIGH_PRIORITY, queue, ...))
end
return callAddonHandlers(map, ...)
end)
end
return map
end
local function queueNextSecureCall(task, target, targetFunc)
if not getSecureHookMap(target, targetFunc) then return end
local cache = t_SecureHookTasks[target]
if not cache then
cache = setmetatable({}, META_WEAKKEY)
t_SecureHookTasks[target] = cache
end
local queue = cache[targetFunc]
if not queue then
queue = recycleCache()
cache[targetFunc] = queue
end
tinsert(queue, task)
end
local function noCombatCall(callable, ...)
while InCombatLockdown() do Next() end
return callable(...)
end
local function registerService(func, resident)
local wrap
wrap = resident and function()
_ResidentService[running()] = wrap
Next() func()
end or function()
Next() func()
end
tinsert(_RegisterService, wrap)
end
local function processService()
if _RegisterService[1] then
local task = _RegisterService
_RegisterService= {}
for i = 1, #task do ThreadCall(task[i]) end
end
end
local function retSingleAsync(...)
local curr = running()
local guid = _RunSingleAsync[curr]
_RunSingleAsync[curr] = nil
_CancelSingleAsync[curr]= nil
if guid then
if type(guid) == "string" then
_SingleAsync[guid] = false
else
guid[1] = false
end
end
return ...
end
local function registerSingleAsync(func, override, owner, name)
if owner then
-- For method, the guid should be binded to class
-- But we need check if the method is static
local staticguid
local getGuid = function(self)
if staticguid then
-- For static method
return staticguid
elseif staticguid == nil then
-- Check whether is static method
if Interface.IsStaticMethod(owner, name) then
local guid = Guid.New()
while _SingleAsync[guid] ~= nil do guid = Guid.New() end
_SingleAsync[guid] = false
staticguid = guid
return guid
else
staticguid = false
end
else
-- For object method
local map = _ObjectGuidMap[self]
if not map then
map = {}
_ObjectGuidMap[self] = map
end
local guid = map[name]
if not guid then
guid = Guid.New()
while map[guid] ~= nil do guid = Guid.New() end
map[name] = guid
map[guid] = { [0]= guid, [1] = false }
end
return guid, map[guid]
end
end
local wrapper = function(self, ...)
local guid, obmap = getGuid(self)
local curr = running()
if obmap then
_RunSingleAsync[curr] = obmap
_CancelSingleAsync[curr] = nil
obmap[1] = curr
else
_RunSingleAsync[curr] = guid
_CancelSingleAsync[curr] = nil
_SingleAsync[guid] = curr
end
return retSingleAsync(func(self, ...))
end
if override then
return function(self, ...)
local guid, obmap = getGuid(self)
if obmap then
local curr = obmap[1]
if curr then
obmap[1] = false
_RunSingleAsync[curr] = nil
_CancelSingleAsync[curr]= true
end
else
local curr = _SingleAsync[guid]
if curr then
_SingleAsync[guid] = false
_RunSingleAsync[curr] = nil
_CancelSingleAsync[curr]= true
end
end
return ThreadCall(wrapper, self, ...)
end
else
return function(self, ...)
local guid, obmap = getGuid(self)
if obmap then
if obmap[1] then return end
else
if _SingleAsync[guid] then return end
end
return ThreadCall(wrapper, self, ...)
end
end
else
-- For function the guid is binded to function
local guid = Guid.New()
while _SingleAsync[guid] ~= nil do guid = Guid.New() end
_SingleAsync[guid] = false
local wrapper = function(...)
local curr = running()
_RunSingleAsync[curr] = guid
_SingleAsync[guid] = curr
return retSingleAsync(func(...))
end
if override then
return function(...)
local curr = _SingleAsync[guid]
if curr then
_SingleAsync[guid] = false
_RunSingleAsync[curr] = nil
_CancelSingleAsync[curr]= true
end
return ThreadCall(wrapper, ...)
end
else
return function(...)
if _SingleAsync[guid] then return end
return ThreadCall(wrapper, ...)
end
end
end
end
local function callCombatHandlers(timestamp, eventType, ...)
local map = _CombatEventDistribution[eventType]
if map then return callAddonHandlers(map, timestamp, eventType, ...) end
end
local function safeCall(...)
local ok, err = pcall(...)
if not ok then errorhandler(err) end
end
----------------------------------------------
-- Next Observable --
----------------------------------------------
local rycNextObserver = Recycle(Observer)
function rycNextObserver:OnInit(ob)
ob.OnNext = function(...)
ob.Subscription = nil
local thread = ob.NextThread
ob.NextThread = nil
rycNextObserver(ob)
if thread then
resume(thread, ...)
queueTask(HIGH_PRIORITY, thread)
end
end
end
----------------------------------------------
-- Addon Helper --
----------------------------------------------
_SlashCmdList = _G.SlashCmdList
_SlashCmdCount = 0
_SlashCmdHandler = {}
-- Whether the player is already logined
_Logined = false
_PlayerSpec = -1
_PlayerWarMode = -1
-- SlashCmd Operation
local function newSlashCmd(slashCmd, map)
-- New Slash Command
_SlashCmdCount = _SlashCmdCount + 1
-- Register it to the system
_G["SLASH_SCORPIOCMD_".._SlashCmdCount.."_1"] = slashCmd
_SlashCmdList["SCORPIOCMD_".._SlashCmdCount.."_"] = function(msg, input)
local option, info
if type(msg) == "string" then
msg = strtrim(msg)
if msg:sub(1, 1) == "\"" and msg:find("\"", 2) then
option, info = msg:match("\"([^\"]+)\"%s*(.*)")
else
option, info = msg:match("(%S+)%s*(.*)")
end
if option then option = option:upper() end
end
if option and map[option] then
if map[option](info, input) == false then
print("--======================--")
print(("%s %s %s"):format(slashCmd:lower(), option:lower(), map[option .. "-desc"] or ""))
print("--======================--")
end
elseif map[0] and map[0](msg, input) ~= false then
-- pass
else
-- Default handler
if next(map) then
print("--======================--")
for opt, m in pairs(map) do
if type(m) == "function" then
print(("%s %s %s"):format(slashCmd:lower(), opt:lower(), map[opt .. "-desc"] or ""))
end
end
print("--======================--")
end
end
end
end
local function loadingWithoutClear(self)
if _NotLoaded[self] then
safeCall(OnLoad, self)
end
for _, mdl in self:GetModules() do loadingWithoutClear(mdl) end
end
local function loading(self)
if _NotLoaded[self] then
_NotLoaded[self] = nil
safeCall(OnLoad, self)
end
for _, mdl in self:GetModules() do loading(mdl) end
end
local function enablingWithCheck(self)
if not _DisabledModule[self] then
if _NotLoaded[self] then
safeCall(OnEnable, self)
end
for _, mdl in self:GetModules() do enablingWithCheck(mdl) end
end
end
local function enabling(self)
if _NotLoaded[self] then loading(self) end
if not _DisabledModule[self] then
safeCall(OnEnable, self)
for _, mdl in self:GetModules() do enabling(mdl) end
end
end
local function disabling(self)
if not _DisabledModule[self] then
_DisabledModule[self] = true
if _Logined then safeCall(OnDisable, self) end
for _, mdl in self:GetModules() do disabling(mdl) end
end
end
local function tryEnable(self)
if _DisabledModule[self] and self._Enabled then
if not self._Parent or (not _DisabledModule[self._Parent]) then
_DisabledModule[self] = nil
safeCall(OnEnable, self)
for _, mdl in self:GetModules() do
if mdl._Enabled then
tryEnable(mdl)
end
end
end
end
end
local function exiting(self)
safeCall(OnQuit, self)
for _, mdl in self:GetModules() do exiting(mdl) end
end
local function specChangedWithCheck(self, spec)
if _NotLoaded[self] then
safeCall(OnSpecChanged, self, spec)
end
for _, mdl in self:GetModules() do specChangedWithCheck(mdl, spec) end
end
local function specChanged(self, spec)
if not _Logined then return end
safeCall(OnSpecChanged, self, spec)
for _, mdl in self:GetModules() do specChanged(mdl, spec) end
end
local function warmodeChangedWithCheck(self, mode)
if _NotLoaded[self] then
safeCall(OnWarModeChanged, self, mode)
end
for _, mdl in self:GetModules() do warmodeChangedWithCheck(mdl, mode) end
end
local function warmodeChanged(self, mode)
if not _Logined then return end
safeCall(OnWarModeChanged, self, mode)
for _, mdl in self:GetModules() do warmodeChanged(mdl, mode) end
end
local function clearNotLoaded(self)
_NotLoaded[self] = nil
for _, mdl in self:GetModules() do clearNotLoaded(mdl) end
end
local function tryloading(self)
if _Logined then
loadingWithoutClear(self)
enablingWithCheck(self)
specChangedWithCheck(self, _PlayerSpec)
warmodeChangedWithCheck(self, _PlayerWarMode)
clearNotLoaded(self)
else
return loading(self)
end
end
----------------------------------------------
-- Scorpio Manager --
----------------------------------------------
function ScorpioManager:OnEvent(evt, ...)
if evt == "COMBAT_LOG_EVENT_UNFILTERED" then
callCombatHandlers( CombatLogGetCurrentEventInfo() )
end
local now = GetTime()
if now > g_PhaseStartTime then
g_PhaseStartTime = now