mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-07-06 14:40:28 -04:00
Removed NioTSO client and server
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
This commit is contained in:
parent
f12ba1502b
commit
22191ce648
591 changed files with 53264 additions and 3362 deletions
39
server/FSO.Server.Common/Epoch.cs
Executable file
39
server/FSO.Server.Common/Epoch.cs
Executable file
|
@ -0,0 +1,39 @@
|
|||
using System;
|
||||
|
||||
namespace FSO.Server.Common
|
||||
{
|
||||
public class Epoch
|
||||
{
|
||||
public static uint Now
|
||||
{
|
||||
get
|
||||
{
|
||||
uint epoch = (uint)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds;
|
||||
return epoch;
|
||||
}
|
||||
}
|
||||
|
||||
public static uint FromDate(DateTime time)
|
||||
{
|
||||
return (uint)(time.ToUniversalTime() - new DateTime(1970, 1, 1)).TotalSeconds;
|
||||
}
|
||||
|
||||
public static DateTime ToDate(uint time)
|
||||
{
|
||||
var epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
|
||||
return epoch.AddSeconds(time);
|
||||
}
|
||||
|
||||
public static string HMSRemaining(uint date)
|
||||
{
|
||||
TimeSpan span = (ToDate(date) - ToDate(Epoch.Now));
|
||||
|
||||
return String.Format("{0} hours, {1} minutes and {2} seconds", span.Hours, span.Minutes, span.Seconds);
|
||||
}
|
||||
|
||||
public static uint Default
|
||||
{
|
||||
get { return 0; }
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue