Implement Core.TickCount

Convert movement, actions (lift/use), combat, and spells to use Core.TickCount and avoid DateTime caveats (performance, system time dependency, etc)
Refactor DateTime.Now to DateTime.UtcNow
Add LOS check for Iron Maiden addon
This commit is contained in:
Mark Sturgill 2013-10-06 03:21:18 -07:00
parent f99eefb288
commit d2c670f5c3
241 changed files with 842 additions and 831 deletions

View file

@ -119,9 +119,9 @@ namespace Server.Engines.Quests.Collector
{
if ( m_Begin == DateTime.MaxValue )
{
m_Begin = DateTime.Now;
m_Begin = DateTime.UtcNow;
}
else if ( DateTime.Now - m_Begin > TimeSpan.FromSeconds( 30.0 ) )
else if ( DateTime.UtcNow - m_Begin > TimeSpan.FromSeconds( 30.0 ) )
{
Complete();
}

View file

@ -22,7 +22,7 @@ namespace Server.Engines.Quests
public void Reset( TimeSpan restartDelay )
{
if ( restartDelay < TimeSpan.MaxValue )
m_RestartTime = DateTime.Now + restartDelay;
m_RestartTime = DateTime.UtcNow + restartDelay;
else
m_RestartTime = DateTime.MaxValue;
}

View file

@ -435,7 +435,7 @@ namespace Server.Engines.Quests
{
DateTime endTime = restartInfo.RestartTime;
if ( DateTime.Now < endTime )
if ( DateTime.UtcNow < endTime )
{
inRestartPeriod = true;
return false;

View file

@ -57,7 +57,7 @@ namespace Server.Engines.Quests.Naturalist
{
if ( m_StudyState != StudyState.Inactive )
{
TimeSpan time = DateTime.Now - m_StudyBegin;
TimeSpan time = DateTime.UtcNow - m_StudyBegin;
if ( time > TimeSpan.FromSeconds( 30.0 ) )
{
@ -99,7 +99,7 @@ namespace Server.Engines.Quests.Naturalist
if ( nest != null )
{
m_CurrentNest = nest;
m_StudyBegin = DateTime.Now;
m_StudyBegin = DateTime.UtcNow;
if ( m_StudiedNests.Contains( nest ) )
{