mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 21:08:42 +00:00
3b531de670
* Implement mii:u and mii:e entirely Co-authored-by: AcK77 <Acoustik666@gmail.com> This commit implement the mii service accurately. This is based on Ac_k work but was polished and updated to 7.x. Please note that the following calls are partially implemented: - Convert: Used to convert from old console format (Wii/Wii U/3ds) - Import and Export: this is shouldn't be accesible in production mode. * Remove some debug leftovers * Make it possible to load an arbitrary mii database from a Switch * Address gdk's comments * Reduce visibility of all the Mii code * Address Ac_K's comments * Remove the StructLayout of DatabaseSessionMetadata * Add a missing line return in DatabaseSessionMetadata * Misc fixes and style changes * Fix some issues from last commit * Fix database server metadata UpdateCounter in MarkDirty (Thanks Moose for the catch) * MountCounter should only be incremented when no error is reported * Fix FixDatabase Co-authored-by: Alex Barney <thealexbarney@gmail.com>
116 lines
3 KiB
C#
116 lines
3 KiB
C#
using Ryujinx.HLE.HOS.Services.Account.Acc;
|
|
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.SystemState
|
|
{
|
|
public class SystemStateMgr
|
|
{
|
|
public static readonly UserId DefaultUserId = new UserId("00000000000000010000000000000000");
|
|
|
|
internal static string[] LanguageCodes = new string[]
|
|
{
|
|
"ja",
|
|
"en-US",
|
|
"fr",
|
|
"de",
|
|
"it",
|
|
"es",
|
|
"zh-CN",
|
|
"ko",
|
|
"nl",
|
|
"pt",
|
|
"ru",
|
|
"zh-TW",
|
|
"en-GB",
|
|
"fr-CA",
|
|
"es-419",
|
|
"zh-Hans",
|
|
"zh-Hant"
|
|
};
|
|
|
|
internal static string[] AudioOutputs = new string[]
|
|
{
|
|
"AudioTvOutput",
|
|
"AudioStereoJackOutput",
|
|
"AudioBuiltInSpeakerOutput"
|
|
};
|
|
|
|
internal long DesiredLanguageCode { get; private set; }
|
|
|
|
public TitleLanguage DesiredTitleLanguage { get; private set; }
|
|
|
|
internal string ActiveAudioOutput { get; private set; }
|
|
|
|
public bool DockedMode { get; set; }
|
|
|
|
public ColorSet ThemeColor { get; set; }
|
|
|
|
public bool InstallContents { get; set; }
|
|
|
|
public AccountUtils Account { get; private set; }
|
|
|
|
public SystemStateMgr()
|
|
{
|
|
SetAudioOutputAsBuiltInSpeaker();
|
|
|
|
Account = new AccountUtils();
|
|
|
|
Account.AddUser(DefaultUserId, "Player");
|
|
Account.OpenUser(DefaultUserId);
|
|
}
|
|
|
|
public void SetLanguage(SystemLanguage language)
|
|
{
|
|
DesiredLanguageCode = GetLanguageCode((int)language);
|
|
|
|
switch (language)
|
|
{
|
|
case SystemLanguage.Taiwanese:
|
|
case SystemLanguage.TraditionalChinese:
|
|
DesiredTitleLanguage = TitleLanguage.Taiwanese;
|
|
break;
|
|
case SystemLanguage.Chinese:
|
|
case SystemLanguage.SimplifiedChinese:
|
|
DesiredTitleLanguage = TitleLanguage.Chinese;
|
|
break;
|
|
default:
|
|
DesiredTitleLanguage = Enum.Parse<TitleLanguage>(Enum.GetName(typeof(SystemLanguage), language));
|
|
break;
|
|
}
|
|
}
|
|
|
|
public void SetAudioOutputAsTv()
|
|
{
|
|
ActiveAudioOutput = AudioOutputs[0];
|
|
}
|
|
|
|
public void SetAudioOutputAsStereoJack()
|
|
{
|
|
ActiveAudioOutput = AudioOutputs[1];
|
|
}
|
|
|
|
public void SetAudioOutputAsBuiltInSpeaker()
|
|
{
|
|
ActiveAudioOutput = AudioOutputs[2];
|
|
}
|
|
|
|
internal static long GetLanguageCode(int index)
|
|
{
|
|
if ((uint)index >= LanguageCodes.Length)
|
|
{
|
|
throw new ArgumentOutOfRangeException(nameof(index));
|
|
}
|
|
|
|
long code = 0;
|
|
int shift = 0;
|
|
|
|
foreach (char chr in LanguageCodes[index])
|
|
{
|
|
code |= (long)(byte)chr << shift++ * 8;
|
|
}
|
|
|
|
return code;
|
|
}
|
|
}
|
|
}
|