2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.SystemState;
|
2018-08-14 22:02:42 +00:00
|
|
|
using Ryujinx.HLE.Logging;
|
2018-02-10 00:14:55 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Friend
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class IFriendService : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
|
|
|
public IFriendService()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-08-14 22:02:42 +00:00
|
|
|
{ 10601, DeclareCloseOnlinePlaySession },
|
|
|
|
{ 10610, UpdateUserPresence }
|
2018-02-10 00:14:55 +00:00
|
|
|
};
|
|
|
|
}
|
2018-08-14 22:02:42 +00:00
|
|
|
|
|
|
|
public long DeclareCloseOnlinePlaySession(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
UserId Uuid = new UserId(
|
|
|
|
Context.RequestData.ReadInt64(),
|
|
|
|
Context.RequestData.ReadInt64());
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
if (Context.Device.System.State.TryGetUser(Uuid, out UserProfile Profile))
|
2018-08-14 22:02:42 +00:00
|
|
|
{
|
|
|
|
Profile.OnlinePlayState = OpenCloseState.Closed;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long UpdateUserPresence(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
UserId Uuid = new UserId(
|
|
|
|
Context.RequestData.ReadInt64(),
|
|
|
|
Context.RequestData.ReadInt64());
|
|
|
|
|
|
|
|
//TODO.
|
2018-08-16 23:47:36 +00:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceFriend, "Stubbed.");
|
2018-08-14 22:02:42 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
}
|