
[ENH]Adding the ability to see Timestamps in the debugger.
DOA2021 opened this issue ยท 4 comments
๐ข How does GSE currently work
Currently, there is no ability to see the Timestamp showing when a command was executed in the debugger.
๐ข Describe the solution you'd like
I believe it would be beneficial to be able to see an exact time stamp/elapsed time when troubleshooting and tuning sequences, as it would allow us to more closely compare what our sequence does with what a tool such as Raidbots quicksim produces.
Granted, there will never be a 100% correlation, but it should allow us to much better tune the performance of the sequences. Additionally, being able to see from when to when a sequence was GCD locking/skipping due to an active GCD would allow us to fine tune the delay in key click to maximize the potential of the sequence.
๐ข Describe alternatives you've considered
Can't think of any alternatives
๐ข Additional context
There are a couple of options here. Which would be useful to show?
-- unix time
time() -- 1596157547
GetServerTime() -- 1596157549
-- local time, same as [date](https://warcraft.wiki.gg/wiki/API_date)(nil, time())
date() -- "Fri Jul 31 03:05:47 2020"
-- realm time
GetGameTime() -- 20, 4
C_DateAndTime.GetCurrentCalendarTime() -- hour:20, minute:4
C_DateAndTime.GetServerTimeLocal() -- 1596139440 unix time offset by the server's time zone (e.g. UTC minus 5 hours)
IMO the most accurate time would be the GetServerTime(). That would ignore any differences between the client and server timestamp and knowing when a server sees the commands is a more accurate reflection of the sequence in a comparison to a raidbot sim. Not certain there is a way to get any more precise than seconds.
GetServerTime() -- 1596157549
Essentially, in the log, it would look like this: 1596157549
Edit: the C function underneath calculates in MS but WoW only exposes the Seconds
IncarnationChosenElune,1,1738891657,IncarnationChosenElune,IncarnationChosenElune Not Found In Spell Book,Not Able to Cast,Resources Available,GCD Free,Not actively casting anything else.
GAOE,1,1738891657,GAOE,GAOE Not Found In Spell Book,Not Able to Cast,Resources Available,GCD Free,Not actively casting anything else.
GST,1,1738891657,GST,GST Not Found In Spell Book,Not Able to Cast,Resources Available,GCD Free,Not actively casting anything else.
GAOE,2,1738891663,Heart of the Wild,(319454) Found in Spell Book,Able To Cast,Resources Available,GCD Free,Not actively casting anything else.
GAOE,3,1738891664,Ironfur,(192081) Found in Spell Book,Not Able to Cast,Resources Not Available,GCD In Cooldown,Not actively casting anything else.
GAOE,4,1738891664,Maul,(6807) Found in Spell Book,Not Able to Cast,Resources Not Available,GCD In Cooldown,Not actively casting anything else.
GAOE,5,1738891664,Ironfur,(192081) Found in Spell Book,Not Able to Cast,Resources Not Available,GCD In Cooldown,Not actively casting anything else.
GAOE,6,1738891664,Maul,(6807) Found in Spell Book,Not Able to Cast,Resources Not Available,GCD In Cooldown,Not actively casting anything else.
GAOE,7,1738891664,Thrash,(106832) Found in Spell Book,Able To Cast,Resources Available,GCD In Cooldown,Not actively casting anything else.
GAOE,8,1738891665,Swipe,(213764) Found in Spell Book,Able To Cast,Resources Available,GCD Free,Not actively casting anything else.
GAOE,9,1738891665,Frenzied Regeneration,(22842) Found in Spell Book,Able To Cast,Resources Available,GCD Free,Not actively casting anything else.
GAOE,10,1738891665,Mangle,(33917) Found in Spell Book,Able To Cast,Resources Available,GCD Free,Not actively casting anything else.
GAOE,1,1738891667,Rage of the Sleeper,(200851) Found in Spell Book,Able To Cast,Resources Available,GCD Free,Not actively casting anything else.
GAOE,2,1738891667,Heart of the Wild,(319454) Found in Spell Book,Able To Cast,Resources Available,GCD In Cooldown,Not actively casting anything else.
GAOE,3,1738891668,Ironfur,(192081) Found in Spell Book,Able To Cast,Resources Available,GCD In Cooldown,Not actively casting anything else.
GAOE,4,1738891668,Maul,(6807) Found in Spell Book,Able To Cast,Resources Available,GCD In Cooldown,Not actively casting anything else.
GAOE,5,1738891669,Ironfur,(192081) Found in Spell Book,Not Able to Cast,Resources Not Available,GCD In Cooldown,Not actively casting anything else.
GAOE,6,1738891669,Maul,(6807) Found in Spell Book,Not Able to Cast,Resources Not Available,GCD Free,Not actively casting anything else.
GAOE,7,1738891669,Thrash,(106832) Found in Spell Book,Able To Cast,Resources Available,GCD Free,Not actively casting anything else.