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:
parent
f99eefb288
commit
d2c670f5c3
241 changed files with 842 additions and 831 deletions
|
|
@ -93,12 +93,12 @@ namespace Server.Commands
|
|||
return;
|
||||
}
|
||||
|
||||
DateTime time = DateTime.Now;
|
||||
DateTime time = DateTime.UtcNow;
|
||||
|
||||
int built = BuildObjects( from, type, start, end, args, props, packs, outline, mapAvg );
|
||||
|
||||
if ( built > 0 )
|
||||
from.SendMessage( "{0} object{1} generated in {2:F1} seconds.", built, built != 1 ? "s" : "", (DateTime.Now - time).TotalSeconds );
|
||||
from.SendMessage( "{0} object{1} generated in {2:F1} seconds.", built, built != 1 ? "s" : "", (DateTime.UtcNow - time).TotalSeconds );
|
||||
else
|
||||
SendUsage( type, from );
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,11 +28,11 @@ namespace Server.Commands
|
|||
Network.NetState.FlushAll();
|
||||
Network.NetState.Pause();
|
||||
|
||||
DateTime startTime = DateTime.Now;
|
||||
DateTime startTime = DateTime.UtcNow;
|
||||
|
||||
bool generated = Document();
|
||||
|
||||
DateTime endTime = DateTime.Now;
|
||||
DateTime endTime = DateTime.UtcNow;
|
||||
|
||||
Network.NetState.Resume();
|
||||
|
||||
|
|
|
|||
|
|
@ -28,12 +28,12 @@ namespace Server.Commands
|
|||
|
||||
try
|
||||
{
|
||||
m_Output = new StreamWriter( Path.Combine( directory, String.Format( "{0}.log", DateTime.Now.ToLongDateString() ) ), true );
|
||||
m_Output = new StreamWriter( Path.Combine( directory, String.Format( "{0}.log", DateTime.UtcNow.ToLongDateString() ) ), true );
|
||||
|
||||
m_Output.AutoFlush = true;
|
||||
|
||||
m_Output.WriteLine( "##############################" );
|
||||
m_Output.WriteLine( "Log started on {0}", DateTime.Now );
|
||||
m_Output.WriteLine( "Log started on {0}", DateTime.UtcNow );
|
||||
m_Output.WriteLine();
|
||||
}
|
||||
catch
|
||||
|
|
@ -77,7 +77,7 @@ namespace Server.Commands
|
|||
|
||||
try
|
||||
{
|
||||
m_Output.WriteLine( "{0}: {1}: {2}", DateTime.Now, from.NetState, text );
|
||||
m_Output.WriteLine( "{0}: {1}: {2}", DateTime.UtcNow, from.NetState, text );
|
||||
|
||||
string path = Core.BaseDirectory;
|
||||
|
||||
|
|
@ -91,7 +91,7 @@ namespace Server.Commands
|
|||
path = Path.Combine( path, String.Format( "{0}.log", name ) );
|
||||
|
||||
using ( StreamWriter sw = new StreamWriter( path, true ) )
|
||||
sw.WriteLine( "{0}: {1}: {2}", DateTime.Now, from.NetState, text );
|
||||
sw.WriteLine( "{0}: {1}: {2}", DateTime.UtcNow, from.NetState, text );
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ namespace Server.Commands
|
|||
{
|
||||
using ( StreamWriter sw = new StreamWriter( "profiles.log", true ) )
|
||||
{
|
||||
sw.WriteLine( "# Dump on {0:f}", DateTime.Now );
|
||||
sw.WriteLine( "# Dump on {0:f}", DateTime.UtcNow );
|
||||
sw.WriteLine( "# Core profiling for " + Core.ProfileTime );
|
||||
|
||||
sw.WriteLine( "# Packet send" );
|
||||
|
|
@ -169,7 +169,7 @@ namespace Server.Commands
|
|||
items.Sort( new CountSorter() );
|
||||
mobiles.Sort( new CountSorter() );
|
||||
|
||||
op.WriteLine( "# Object count table generated on {0}", DateTime.Now );
|
||||
op.WriteLine( "# Object count table generated on {0}", DateTime.UtcNow );
|
||||
op.WriteLine();
|
||||
op.WriteLine();
|
||||
|
||||
|
|
@ -388,7 +388,7 @@ namespace Server.Commands
|
|||
using ( StreamWriter op = new StreamWriter( opFile ) )
|
||||
{
|
||||
op.WriteLine( "# Profile of world {0}", type );
|
||||
op.WriteLine( "# Generated on {0}", DateTime.Now );
|
||||
op.WriteLine( "# Generated on {0}", DateTime.UtcNow );
|
||||
op.WriteLine();
|
||||
op.WriteLine();
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ namespace Server.Commands
|
|||
[Description( "Returns the server's local time." )]
|
||||
private static void Time_OnCommand( CommandEventArgs e )
|
||||
{
|
||||
e.Mobile.SendMessage( DateTime.Now.ToString() );
|
||||
e.Mobile.SendMessage( DateTime.UtcNow.ToString() );
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue