2019-06-16 21:17:37 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.SystemState;
|
2019-06-16 21:17:37 +00:00
|
|
|
using System;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-06-16 21:17:37 +00:00
|
|
|
using static Ryujinx.HLE.HOS.ErrorCode;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Set
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
[Service("set")]
|
2018-04-06 04:01:52 +00:00
|
|
|
class ISettingsServer : IpcService
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
public ISettingsServer(ServiceCtx context) { }
|
2018-02-25 04:34:16 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(0)]
|
2019-06-16 21:17:37 +00:00
|
|
|
// GetLanguageCode() -> nn::settings::LanguageCode
|
2018-12-06 11:16:24 +00:00
|
|
|
public static long GetLanguageCode(ServiceCtx context)
|
2018-04-21 23:04:43 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(context.Device.System.State.DesiredLanguageCode);
|
2018-04-21 23:04:43 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(1)]
|
2019-06-16 21:17:37 +00:00
|
|
|
// GetAvailableLanguageCodes() -> (u32, buffer<nn::settings::LanguageCode, 0xa>)
|
2018-12-06 11:16:24 +00:00
|
|
|
public static long GetAvailableLanguageCodes(ServiceCtx context)
|
2018-07-04 00:45:12 +00:00
|
|
|
{
|
2019-06-16 21:17:37 +00:00
|
|
|
return GetAvailableLanguagesCodesImpl(
|
|
|
|
context,
|
|
|
|
context.Request.RecvListBuff[0].Position,
|
|
|
|
context.Request.RecvListBuff[0].Size,
|
|
|
|
0xF);
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(2)] // 4.0.0+
|
2019-06-16 21:17:37 +00:00
|
|
|
// MakeLanguageCode(nn::settings::Language language_index) -> nn::settings::LanguageCode
|
|
|
|
public static long MakeLanguageCode(ServiceCtx context)
|
|
|
|
{
|
|
|
|
int languageIndex = context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
if ((uint)languageIndex >= (uint)SystemStateMgr.LanguageCodes.Length)
|
|
|
|
{
|
|
|
|
return MakeError(ErrorModule.Settings, SettingsError.LanguageOutOfRange);
|
|
|
|
}
|
|
|
|
|
|
|
|
context.ResponseData.Write(SystemStateMgr.GetLanguageCode(languageIndex));
|
2018-07-04 00:45:12 +00:00
|
|
|
|
|
|
|
return 0;
|
2018-06-13 13:08:11 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(3)]
|
2019-06-16 21:17:37 +00:00
|
|
|
// GetAvailableLanguageCodeCount() -> u32
|
2018-12-06 11:16:24 +00:00
|
|
|
public static long GetAvailableLanguageCodeCount(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-06-16 21:17:37 +00:00
|
|
|
context.ResponseData.Write(Math.Min(SystemStateMgr.LanguageCodes.Length, 0xF));
|
2018-04-05 00:01:36 +00:00
|
|
|
|
2018-06-13 13:08:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-07-04 00:45:12 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(5)]
|
2019-06-16 21:17:37 +00:00
|
|
|
// GetAvailableLanguageCodes2() -> (u32, buffer<nn::settings::LanguageCode, 6>)
|
2018-12-06 11:16:24 +00:00
|
|
|
public static long GetAvailableLanguageCodes2(ServiceCtx context)
|
2018-06-13 13:08:11 +00:00
|
|
|
{
|
2019-06-16 21:17:37 +00:00
|
|
|
return GetAvailableLanguagesCodesImpl(
|
|
|
|
context,
|
|
|
|
context.Request.ReceiveBuff[0].Position,
|
|
|
|
context.Request.ReceiveBuff[0].Size,
|
|
|
|
SystemStateMgr.LanguageCodes.Length);
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(6)]
|
2019-06-16 21:17:37 +00:00
|
|
|
// GetAvailableLanguageCodeCount2() -> u32
|
|
|
|
public static long GetAvailableLanguageCodeCount2(ServiceCtx context)
|
|
|
|
{
|
|
|
|
context.ResponseData.Write(SystemStateMgr.LanguageCodes.Length);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(8)] // 5.0.0+
|
2019-06-16 21:17:37 +00:00
|
|
|
// GetQuestFlag() -> bool
|
|
|
|
public static long GetQuestFlag(ServiceCtx context)
|
|
|
|
{
|
|
|
|
context.ResponseData.Write(false);
|
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceSet);
|
2018-07-04 00:45:12 +00:00
|
|
|
|
|
|
|
return 0;
|
2018-06-13 13:08:11 +00:00
|
|
|
}
|
2018-07-04 00:45:12 +00:00
|
|
|
|
2019-06-16 21:17:37 +00:00
|
|
|
public static long GetAvailableLanguagesCodesImpl(ServiceCtx context, long position, long size, int maxSize)
|
2018-07-04 00:45:12 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int count = (int)(size / 8);
|
2018-04-05 00:01:36 +00:00
|
|
|
|
2019-06-16 21:17:37 +00:00
|
|
|
if (count > maxSize)
|
2018-04-05 00:01:36 +00:00
|
|
|
{
|
2019-06-16 21:17:37 +00:00
|
|
|
count = maxSize;
|
2018-04-05 00:01:36 +00:00
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
for (int index = 0; index < count; index++)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Memory.WriteInt64(position, SystemStateMgr.GetLanguageCode(index));
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
position += 8;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(count);
|
2018-07-04 00:45:12 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
2019-07-12 01:13:43 +00:00
|
|
|
}
|