mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:28:49 +00:00
9ac5583513
* Better support for user accounts * Nits * Check for invalid ids
49 lines
1.4 KiB
C#
49 lines
1.4 KiB
C#
using Ryujinx.HLE.Logging;
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
|
using Ryujinx.HLE.OsHle.SystemState;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Friend
|
|
{
|
|
class IFriendService : IpcService
|
|
{
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
public IFriendService()
|
|
{
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
{
|
|
{ 10601, DeclareCloseOnlinePlaySession },
|
|
{ 10610, UpdateUserPresence }
|
|
};
|
|
}
|
|
|
|
public long DeclareCloseOnlinePlaySession(ServiceCtx Context)
|
|
{
|
|
UserId Uuid = new UserId(
|
|
Context.RequestData.ReadInt64(),
|
|
Context.RequestData.ReadInt64());
|
|
|
|
if (Context.Ns.Os.SystemState.TryGetUser(Uuid, out UserProfile Profile))
|
|
{
|
|
Profile.OnlinePlayState = OpenCloseState.Closed;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
public long UpdateUserPresence(ServiceCtx Context)
|
|
{
|
|
UserId Uuid = new UserId(
|
|
Context.RequestData.ReadInt64(),
|
|
Context.RequestData.ReadInt64());
|
|
|
|
//TODO.
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceFriend, "Stubbed.");
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |