2018-02-20 21:09:23 +01:00
|
|
|
using Ryujinx.Core.OsHle.Ipc;
|
2018-02-10 01:14:55 +01:00
|
|
|
using System.Collections.Generic;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System.IO;
|
|
|
|
|
2018-03-20 21:00:00 +01:00
|
|
|
namespace Ryujinx.Core.OsHle.Services.Am
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class IApplicationFunctions : IpcService
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-10 01:14:55 +01:00
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
|
|
|
public IApplicationFunctions()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
|
|
|
{ 1, PopLaunchParameter },
|
|
|
|
{ 20, EnsureSaveData },
|
|
|
|
{ 21, GetDesiredLanguage },
|
2018-02-25 19:58:16 +01:00
|
|
|
{ 22, SetTerminateResult },
|
2018-02-10 01:14:55 +01:00
|
|
|
{ 40, NotifyRunning }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
private const uint LaunchParamsMagic = 0xc79497ca;
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
public long PopLaunchParameter(ServiceCtx Context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
//Only the first 0x18 bytes of the Data seems to be actually used.
|
2018-02-10 01:14:55 +01:00
|
|
|
MakeObject(Context, new IStorage(MakeLaunchParams()));
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
public long EnsureSaveData(ServiceCtx Context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
long UIdLow = Context.RequestData.ReadInt64();
|
|
|
|
long UIdHigh = Context.RequestData.ReadInt64();
|
|
|
|
|
|
|
|
Context.ResponseData.Write(0L);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
public long GetDesiredLanguage(ServiceCtx Context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
//This is an enumerator where each number is a differnet language.
|
|
|
|
//0 is Japanese and 1 is English, need to figure out the other codes.
|
|
|
|
Context.ResponseData.Write(1L);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-25 19:58:16 +01:00
|
|
|
public long SetTerminateResult(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int ErrorCode = Context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
int Module = ErrorCode & 0xFF;
|
|
|
|
int Description = (ErrorCode >> 9) & 0xFFF;
|
|
|
|
|
|
|
|
Logging.Info($"({(ErrorModule)Module}){2000 + Module}-{Description}");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
public long NotifyRunning(ServiceCtx Context)
|
2018-02-07 00:28:32 +01:00
|
|
|
{
|
|
|
|
Context.ResponseData.Write(1);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
private byte[] MakeLaunchParams()
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
//Size needs to be at least 0x88 bytes otherwise application errors.
|
|
|
|
using (MemoryStream MS = new MemoryStream())
|
|
|
|
{
|
|
|
|
BinaryWriter Writer = new BinaryWriter(MS);
|
|
|
|
|
|
|
|
MS.SetLength(0x88);
|
|
|
|
|
|
|
|
Writer.Write(LaunchParamsMagic);
|
|
|
|
Writer.Write(1); //IsAccountSelected? Only lower 8 bits actually used.
|
|
|
|
Writer.Write(1L); //User Id Low (note: User Id needs to be != 0)
|
|
|
|
Writer.Write(0L); //User Id High
|
|
|
|
|
|
|
|
return MS.ToArray();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|