Added Steamworks.Realm

This commit is contained in:
Garry Newman 2019-05-06 15:45:01 +01:00
parent d1cc0da526
commit a0d9fdeab1
3 changed files with 52 additions and 7 deletions

View File

@ -29,7 +29,6 @@ namespace Steamworks
initialized = true;
SteamApps.InstallEvents();
SteamUtils.InstallEvents();
SteamParental.InstallEvents();
@ -143,5 +142,7 @@ namespace Steamworks
/// returns the appID of the current process
/// </summary>
public static AppId AppId { get; internal set; }
public static IDisposable Push() => Realm.Client();
}
}

View File

@ -35,7 +35,6 @@ namespace Steamworks
{
ValidateAuthTicketResponse_t.Install( x => OnValidateAuthTicketResponse?.Invoke( x.SteamID, x.OwnerSteamID, x.AuthSessionResponse ), true );
SteamServerInventory.InstallEvents();
}
/// <summary>
@ -87,10 +86,10 @@ namespace Steamworks
_internal = null;
SteamServerInventory.Shutdown();
SteamGameServer.Shutdown();
SteamNetworkingUtils.Shutdown();
SteamNetworkingSockets.Shutdown();
SteamGameServer.Shutdown();
}
@ -282,7 +281,7 @@ namespace Steamworks
/// any time a player's name or score changes. This keeps the information shown
/// to server queries up to date.
/// </summary>
public static void UpdatePlayer( ulong steamid, string name, int score )
public static void UpdatePlayer( SteamId steamid, string name, int score )
{
Internal.BUpdateUserData( steamid, name, (uint)score );
}
@ -315,7 +314,7 @@ namespace Steamworks
/// <summary>
/// Start authorizing a ticket. This user isn't authorized yet. Wait for a call to OnAuthChange.
/// </summary>
public static unsafe bool BeginAuthSession( byte[] data, ulong steamid )
public static unsafe bool BeginAuthSession( byte[] data, SteamId steamid )
{
fixed ( byte* p = data )
{
@ -331,7 +330,7 @@ namespace Steamworks
/// <summary>
/// Forget this guy. They're no longer in the game.
/// </summary>
public static void EndSession( ulong steamid )
public static void EndSession( SteamId steamid )
{
Internal.EndAuthSession( steamid );
}
@ -374,5 +373,7 @@ namespace Steamworks
Internal.HandleIncomingPacket( (IntPtr)ptr, size, address, port );
}
}
public static IDisposable Push() => Realm.Server();
}
}

View File

@ -0,0 +1,43 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
namespace Steamworks
{
public static class Realm
{
//
// true = serverside
//
static Stack<bool> _stack = new Stack<bool>();
public static bool IsServer => _stack.Count > 0 && _stack.Peek();
public static bool IsClient => _stack.Count == 0 || !_stack.Peek();
static public IDisposable Server()
{
_stack.Push( true );
return new StackPopper();
}
static public IDisposable Client()
{
_stack.Push( false );
return new StackPopper();
}
public struct StackPopper : IDisposable
{
public void Dispose()
{
_stack.Pop();
}
}
}
}