2018-06-11 00:46:42 +00:00
|
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
2018-02-25 04:34:16 +00:00
|
|
|
using System.Collections.Generic;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-06-11 00:46:42 +00:00
|
|
|
namespace Ryujinx.HLE.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 },
|
2018-06-13 13:08:11 +00:00
|
|
|
{ 3, GetAvailableLanguageCodeCount },
|
|
|
|
{ 5, GetAvailableLanguageCodes2 }
|
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-06-13 13:08:11 +00:00
|
|
|
{
|
2018-06-13 13:12:03 +00:00
|
|
|
GetAvailableLanguagesCodesMethod(Context.Request.RecvListBuff[0].Position, Context.Request.RecvListBuff[0].Size, Context);
|
2018-06-13 13:08:11 +00:00
|
|
|
|
2018-06-13 13:12:03 +00:00
|
|
|
return 0;
|
2018-06-13 13:08:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static long GetAvailableLanguageCodeCount(ServiceCtx Context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-06-13 13:08:11 +00:00
|
|
|
Context.ResponseData.Write(SystemStateMgr.LanguageCodes.Length);
|
2018-04-05 00:01:36 +00:00
|
|
|
|
2018-06-13 13:08:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static long GetAvailableLanguageCodes2(ServiceCtx Context)
|
|
|
|
{
|
2018-06-13 13:12:03 +00:00
|
|
|
GetAvailableLanguagesCodesMethod(Context.Request.ReceiveBuff[0].Position, Context.Request.ReceiveBuff[0].Size, Context);
|
2018-06-13 13:08:11 +00:00
|
|
|
|
2018-06-13 13:12:03 +00:00
|
|
|
return 0;
|
2018-06-13 13:08:11 +00:00
|
|
|
}
|
|
|
|
|
2018-06-13 13:12:03 +00:00
|
|
|
public static long GetAvailableLanguagesCodesMethod(long Position, long Size, ServiceCtx Context)
|
|
|
|
{
|
2018-06-04 05:09:41 +00:00
|
|
|
int Count = (int)(Size / 8);
|
2018-04-05 00:01:36 +00:00
|
|
|
|
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-06-13 13:08:11 +00:00
|
|
|
|
2018-06-13 13:12:03 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
2018-06-13 13:08:11 +00:00
|
|
|
}
|