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