2018-02-25 04:34:16 +00:00
|
|
|
using Ryujinx.Core.OsHle.Ipc;
|
|
|
|
using System.Collections.Generic;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-03-20 20:00:00 +00:00
|
|
|
namespace Ryujinx.Core.OsHle.Services.Set
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-04-06 04:01:52 +00:00
|
|
|
class ISettingsServer : IpcService
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-02-25 04:34:16 +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-25 04:34:16 +00:00
|
|
|
|
2018-04-06 04:01:52 +00:00
|
|
|
public ISettingsServer()
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-04-21 23:04:43 +00:00
|
|
|
{ 0, GetLanguageCode },
|
2018-03-23 10:42:34 +00:00
|
|
|
{ 1, GetAvailableLanguageCodes },
|
|
|
|
{ 3, GetAvailableLanguageCodeCount }
|
2018-02-25 04:34:16 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-04-21 23:04:43 +00:00
|
|
|
public static long GetLanguageCode(ServiceCtx Context)
|
|
|
|
{
|
2018-04-29 23:18:46 +00:00
|
|
|
Context.ResponseData.Write(Context.Ns.Os.SystemState.DesiredLanguageCode);
|
2018-04-21 23:04:43 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-25 04:34:16 +00:00
|
|
|
public static long GetAvailableLanguageCodes(ServiceCtx Context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-04-05 00:01:36 +00:00
|
|
|
long Position = Context.Request.RecvListBuff[0].Position;
|
|
|
|
short Size = Context.Request.RecvListBuff[0].Size;
|
|
|
|
|
|
|
|
int Count = (int)((uint)Size / 8);
|
|
|
|
|
2018-04-29 23:18:46 +00:00
|
|
|
if (Count > SystemStateMgr.LanguageCodes.Length)
|
2018-04-05 00:01:36 +00:00
|
|
|
{
|
2018-04-29 23:18:46 +00:00
|
|
|
Count = SystemStateMgr.LanguageCodes.Length;
|
2018-04-05 00:01:36 +00:00
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-04-05 00:01:36 +00:00
|
|
|
for (int Index = 0; Index < Count; Index++)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-04-29 23:18:46 +00:00
|
|
|
Context.Memory.WriteInt64(Position, SystemStateMgr.GetLanguageCode(Index));
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-04-29 23:18:46 +00:00
|
|
|
Position += 8;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-04-05 00:01:36 +00:00
|
|
|
Context.ResponseData.Write(Count);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-03-23 10:42:34 +00:00
|
|
|
|
|
|
|
public static long GetAvailableLanguageCodeCount(ServiceCtx Context)
|
|
|
|
{
|
2018-04-29 23:18:46 +00:00
|
|
|
Context.ResponseData.Write(SystemStateMgr.LanguageCodes.Length);
|
2018-03-23 10:42:34 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|