2019-06-16 17:17:37 -04:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 19:47:36 -04:00
|
|
|
using Ryujinx.HLE.HOS.SystemState;
|
2019-06-16 17:17:37 -04:00
|
|
|
using System;
|
2018-02-04 18:08:20 -05:00
|
|
|
|
2019-09-18 20:45:11 -04:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Settings
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
2019-07-10 11:59:54 -04:00
|
|
|
[Service("set")]
|
2018-04-06 00:01:52 -04:00
|
|
|
class ISettingsServer : IpcService
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
2019-07-11 21:13:43 -04:00
|
|
|
public ISettingsServer(ServiceCtx context) { }
|
2018-02-24 23:34:16 -05:00
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(0)]
|
2019-06-16 17:17:37 -04:00
|
|
|
// GetLanguageCode() -> nn::settings::LanguageCode
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode GetLanguageCode(ServiceCtx context)
|
2018-04-21 19:04:43 -04:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
context.ResponseData.Write(context.Device.System.State.DesiredLanguageCode);
|
2018-04-21 19:04:43 -04:00
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.Success;
|
2018-04-21 19:04:43 -04:00
|
|
|
}
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(1)]
|
2019-06-16 17:17:37 -04:00
|
|
|
// GetAvailableLanguageCodes() -> (u32, buffer<nn::settings::LanguageCode, 0xa>)
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode GetAvailableLanguageCodes(ServiceCtx context)
|
2018-07-03 20:45:12 -04:00
|
|
|
{
|
2019-06-16 17:17:37 -04:00
|
|
|
return GetAvailableLanguagesCodesImpl(
|
|
|
|
context,
|
|
|
|
context.Request.RecvListBuff[0].Position,
|
|
|
|
context.Request.RecvListBuff[0].Size,
|
|
|
|
0xF);
|
|
|
|
}
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(2)] // 4.0.0+
|
2019-06-16 17:17:37 -04:00
|
|
|
// MakeLanguageCode(nn::settings::Language language_index) -> nn::settings::LanguageCode
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode MakeLanguageCode(ServiceCtx context)
|
2019-06-16 17:17:37 -04:00
|
|
|
{
|
|
|
|
int languageIndex = context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
if ((uint)languageIndex >= (uint)SystemStateMgr.LanguageCodes.Length)
|
|
|
|
{
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.LanguageOutOfRange;
|
2019-06-16 17:17:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
context.ResponseData.Write(SystemStateMgr.GetLanguageCode(languageIndex));
|
2018-07-03 20:45:12 -04:00
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.Success;
|
2018-06-13 09:08:11 -04:00
|
|
|
}
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(3)]
|
2019-06-16 17:17:37 -04:00
|
|
|
// GetAvailableLanguageCodeCount() -> u32
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode GetAvailableLanguageCodeCount(ServiceCtx context)
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
2019-06-16 17:17:37 -04:00
|
|
|
context.ResponseData.Write(Math.Min(SystemStateMgr.LanguageCodes.Length, 0xF));
|
2018-04-04 20:01:36 -04:00
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.Success;
|
2018-06-13 09:08:11 -04:00
|
|
|
}
|
2018-07-03 20:45:12 -04:00
|
|
|
|
2020-03-19 18:37:55 -04:00
|
|
|
[Command(4)]
|
|
|
|
// GetRegionCode() -> u32 nn::settings::RegionCode
|
|
|
|
public ResultCode GetRegionCode(ServiceCtx context)
|
|
|
|
{
|
|
|
|
// NOTE: Service mount 0x8000000000000050 savedata and read the region code here.
|
|
|
|
|
|
|
|
SystemRegion regionCode = (SystemRegion)context.Device.System.State.DesiredRegionCode;
|
|
|
|
|
|
|
|
if (regionCode < SystemRegion.Min || regionCode > SystemRegion.Max)
|
|
|
|
{
|
|
|
|
regionCode = SystemRegion.USA;
|
|
|
|
}
|
|
|
|
|
|
|
|
context.ResponseData.Write((uint)regionCode);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(5)]
|
2019-06-16 17:17:37 -04:00
|
|
|
// GetAvailableLanguageCodes2() -> (u32, buffer<nn::settings::LanguageCode, 6>)
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode GetAvailableLanguageCodes2(ServiceCtx context)
|
2018-06-13 09:08:11 -04:00
|
|
|
{
|
2019-06-16 17:17:37 -04:00
|
|
|
return GetAvailableLanguagesCodesImpl(
|
|
|
|
context,
|
|
|
|
context.Request.ReceiveBuff[0].Position,
|
|
|
|
context.Request.ReceiveBuff[0].Size,
|
|
|
|
SystemStateMgr.LanguageCodes.Length);
|
|
|
|
}
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(6)]
|
2019-06-16 17:17:37 -04:00
|
|
|
// GetAvailableLanguageCodeCount2() -> u32
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode GetAvailableLanguageCodeCount2(ServiceCtx context)
|
2019-06-16 17:17:37 -04:00
|
|
|
{
|
|
|
|
context.ResponseData.Write(SystemStateMgr.LanguageCodes.Length);
|
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.Success;
|
2019-06-16 17:17:37 -04:00
|
|
|
}
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(8)] // 5.0.0+
|
2019-06-16 17:17:37 -04:00
|
|
|
// GetQuestFlag() -> bool
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode GetQuestFlag(ServiceCtx context)
|
2019-06-16 17:17:37 -04:00
|
|
|
{
|
|
|
|
context.ResponseData.Write(false);
|
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceSet);
|
2018-07-03 20:45:12 -04:00
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.Success;
|
2018-06-13 09:08:11 -04:00
|
|
|
}
|
2018-07-03 20:45:12 -04:00
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode GetAvailableLanguagesCodesImpl(ServiceCtx context, long position, long size, int maxSize)
|
2018-07-03 20:45:12 -04:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
int count = (int)(size / 8);
|
2018-04-04 20:01:36 -04:00
|
|
|
|
2019-06-16 17:17:37 -04:00
|
|
|
if (count > maxSize)
|
2018-04-04 20:01:36 -04:00
|
|
|
{
|
2019-06-16 17:17:37 -04:00
|
|
|
count = maxSize;
|
2018-04-04 20:01:36 -04:00
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
for (int index = 0; index < count; index++)
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
2020-05-03 18:54:50 -04:00
|
|
|
context.Memory.Write((ulong)position, SystemStateMgr.GetLanguageCode(index));
|
2018-02-04 18:08:20 -05:00
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
position += 8;
|
2018-02-04 18:08:20 -05:00
|
|
|
}
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
context.ResponseData.Write(count);
|
2018-07-03 20:45:12 -04:00
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.Success;
|
2018-07-03 20:45:12 -04:00
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
}
|
2019-07-11 21:13:43 -04:00
|
|
|
}
|