Merge pull request #524 from HouraiTeahouse/public-lobby-chat

Implement #523: Make Lobby.SendChatBytes public.
This commit is contained in:
Garry Newman 2021-04-08 16:14:02 +01:00 committed by GitHub
commit 1bae585602
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -140,17 +140,23 @@ namespace Steamworks.Data
/// <summary> /// <summary>
/// Sends bytes the the chat room /// Sends bytes the the chat room
/// this isn't exposed because there's no way to read raw bytes atm,
/// and I figure people can send json if they want something more advanced
/// </summary> /// </summary>
internal unsafe bool SendChatBytes( byte[] data ) public unsafe bool SendChatBytes( byte[] data )
{ {
fixed ( byte* ptr = data ) fixed ( byte* ptr = data )
{ {
return SteamMatchmaking.Internal.SendLobbyChatMsg( Id, (IntPtr)ptr, data.Length ); return SendChatBytesUnsafe( ptr, data.Length );
} }
} }
/// <summary>
/// Sends bytes the the chat room from a unsafe buffer
/// </summary>
public unsafe bool SendChatBytesUnsafe( byte* ptr, int length )
{
return SteamMatchmaking.Internal.SendLobbyChatMsg( Id, (IntPtr)ptr, length );
}
/// <summary> /// <summary>
/// Refreshes metadata for a lobby you're not necessarily in right now /// Refreshes metadata for a lobby you're not necessarily in right now
/// you never do this for lobbies you're a member of, only if your /// you never do this for lobbies you're a member of, only if your