Rename services with the official interface names
This commit is contained in:
parent
f15b1c76a1
commit
69e32e5bbc
29 changed files with 236 additions and 196 deletions
|
@ -1,81 +0,0 @@
|
|||
using Ryujinx.Core.OsHle.Ipc;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Ryujinx.Core.OsHle.Services.Set
|
||||
{
|
||||
class ServiceSet : IpcService
|
||||
{
|
||||
private 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"
|
||||
};
|
||||
|
||||
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
||||
|
||||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||||
|
||||
public ServiceSet()
|
||||
{
|
||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||
{
|
||||
{ 1, GetAvailableLanguageCodes },
|
||||
{ 3, GetAvailableLanguageCodeCount }
|
||||
};
|
||||
}
|
||||
|
||||
public static long GetAvailableLanguageCodes(ServiceCtx Context)
|
||||
{
|
||||
long Position = Context.Request.RecvListBuff[0].Position;
|
||||
short Size = Context.Request.RecvListBuff[0].Size;
|
||||
|
||||
int Count = (int)((uint)Size / 8);
|
||||
|
||||
if (Count > LanguageCodes.Length)
|
||||
{
|
||||
Count = LanguageCodes.Length;
|
||||
}
|
||||
|
||||
for (int Index = 0; Index < Count; Index++)
|
||||
{
|
||||
string LanguageCode = LanguageCodes[Index];
|
||||
|
||||
foreach (char Chr in LanguageCode)
|
||||
{
|
||||
Context.Memory.WriteByte(Position++, (byte)Chr);
|
||||
}
|
||||
|
||||
for (int Offs = 0; Offs < (8 - LanguageCode.Length); Offs++)
|
||||
{
|
||||
Context.Memory.WriteByte(Position++, 0);
|
||||
}
|
||||
}
|
||||
|
||||
Context.ResponseData.Write(Count);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static long GetAvailableLanguageCodeCount(ServiceCtx Context)
|
||||
{
|
||||
Context.ResponseData.Write(LanguageCodes.Length);
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue