2018-06-11 02:46:42 +02:00
|
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
2018-02-25 05:34:16 +01:00
|
|
|
using System.Collections.Generic;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-06-11 02:46:42 +02:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Set
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-04-06 06:01:52 +02:00
|
|
|
class ISettingsServer : IpcService
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-25 05:34:16 +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-25 05:34:16 +01:00
|
|
|
|
2018-04-06 06:01:52 +02:00
|
|
|
public ISettingsServer()
|
2018-02-25 05:34:16 +01:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-04-22 01:04:43 +02:00
|
|
|
{ 0, GetLanguageCode },
|
2018-03-23 11:42:34 +01:00
|
|
|
{ 1, GetAvailableLanguageCodes },
|
2018-06-13 15:08:11 +02:00
|
|
|
{ 3, GetAvailableLanguageCodeCount },
|
|
|
|
{ 5, GetAvailableLanguageCodes2 }
|
2018-02-25 05:34:16 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-04-22 01:04:43 +02:00
|
|
|
public static long GetLanguageCode(ServiceCtx Context)
|
|
|
|
{
|
2018-04-30 01:18:46 +02:00
|
|
|
Context.ResponseData.Write(Context.Ns.Os.SystemState.DesiredLanguageCode);
|
2018-04-22 01:04:43 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-25 05:34:16 +01:00
|
|
|
public static long GetAvailableLanguageCodes(ServiceCtx Context)
|
2018-06-13 15:08:11 +02:00
|
|
|
{
|
2018-06-13 17:38:19 +02:00
|
|
|
GetAvailableLanguagesCodesMethod(Context, Context.Request.RecvListBuff[0].Position, Context.Request.RecvListBuff[0].Size);
|
2018-06-13 15:08:11 +02:00
|
|
|
|
2018-06-13 15:12:03 +02:00
|
|
|
return 0;
|
2018-06-13 15:08:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static long GetAvailableLanguageCodeCount(ServiceCtx Context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-06-13 15:08:11 +02:00
|
|
|
Context.ResponseData.Write(SystemStateMgr.LanguageCodes.Length);
|
2018-04-05 02:01:36 +02:00
|
|
|
|
2018-06-13 15:08:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static long GetAvailableLanguageCodes2(ServiceCtx Context)
|
|
|
|
{
|
2018-06-13 17:38:19 +02:00
|
|
|
GetAvailableLanguagesCodesMethod(Context, Context.Request.ReceiveBuff[0].Position, Context.Request.ReceiveBuff[0].Size);
|
2018-06-13 15:08:11 +02:00
|
|
|
|
2018-06-13 15:12:03 +02:00
|
|
|
return 0;
|
2018-06-13 15:08:11 +02:00
|
|
|
}
|
|
|
|
|
2018-06-13 17:38:19 +02:00
|
|
|
public static long GetAvailableLanguagesCodesMethod(ServiceCtx Context, long Position, long Size)
|
2018-06-13 15:12:03 +02:00
|
|
|
{
|
2018-06-04 07:09:41 +02:00
|
|
|
int Count = (int)(Size / 8);
|
2018-04-05 02:01:36 +02:00
|
|
|
|
2018-04-30 01:18:46 +02:00
|
|
|
if (Count > SystemStateMgr.LanguageCodes.Length)
|
2018-04-05 02:01:36 +02:00
|
|
|
{
|
2018-04-30 01:18:46 +02:00
|
|
|
Count = SystemStateMgr.LanguageCodes.Length;
|
2018-04-05 02:01:36 +02:00
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-04-05 02:01:36 +02:00
|
|
|
for (int Index = 0; Index < Count; Index++)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-04-30 01:18:46 +02:00
|
|
|
Context.Memory.WriteInt64(Position, SystemStateMgr.GetLanguageCode(Index));
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-04-30 01:18:46 +02:00
|
|
|
Position += 8;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-04-05 02:01:36 +02:00
|
|
|
Context.ResponseData.Write(Count);
|
2018-06-13 15:08:11 +02:00
|
|
|
|
2018-06-13 15:12:03 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
2018-06-13 15:08:11 +02:00
|
|
|
}
|