2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Font;
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-02-25 05:34:16 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Pl
|
2018-02-25 05:34:16 +01:00
|
|
|
{
|
2018-04-06 06:01:52 +02:00
|
|
|
class ISharedFontManager : IpcService
|
2018-02-25 05:34:16 +01:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-25 05:34:16 +01:00
|
|
|
|
2018-04-06 06:01:52 +02:00
|
|
|
public ISharedFontManager()
|
2018-02-25 05:34:16 +01:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-08-04 23:38:49 +02:00
|
|
|
{ 0, RequestLoad },
|
|
|
|
{ 1, GetLoadState },
|
|
|
|
{ 2, GetFontSize },
|
|
|
|
{ 3, GetSharedMemoryAddressOffset },
|
|
|
|
{ 4, GetSharedMemoryNativeHandle },
|
|
|
|
{ 5, GetSharedFontInOrderOfPriority }
|
2018-02-25 05:34:16 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-03-14 01:24:17 +01:00
|
|
|
public long RequestLoad(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
SharedFontType FontType = (SharedFontType)Context.RequestData.ReadInt32();
|
|
|
|
|
2018-08-15 20:59:51 +02:00
|
|
|
//We don't need to do anything here because we do lazy initialization
|
|
|
|
//on SharedFontManager (the font is loaded when necessary).
|
2018-03-14 01:24:17 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
public long GetLoadState(ServiceCtx Context)
|
2018-02-25 05:34:16 +01:00
|
|
|
{
|
2018-08-04 23:38:49 +02:00
|
|
|
SharedFontType FontType = (SharedFontType)Context.RequestData.ReadInt32();
|
|
|
|
|
2018-08-15 20:59:51 +02:00
|
|
|
//1 (true) indicates that the font is already loaded.
|
|
|
|
//All fonts are already loaded.
|
|
|
|
Context.ResponseData.Write(1);
|
2018-02-25 05:34:16 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
public long GetFontSize(ServiceCtx Context)
|
2018-02-25 05:34:16 +01:00
|
|
|
{
|
2018-08-04 23:38:49 +02:00
|
|
|
SharedFontType FontType = (SharedFontType)Context.RequestData.ReadInt32();
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.ResponseData.Write(Context.Device.System.Font.GetFontSize(FontType));
|
2018-02-25 05:34:16 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
public long GetSharedMemoryAddressOffset(ServiceCtx Context)
|
2018-02-25 05:34:16 +01:00
|
|
|
{
|
2018-08-04 23:38:49 +02:00
|
|
|
SharedFontType FontType = (SharedFontType)Context.RequestData.ReadInt32();
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.ResponseData.Write(Context.Device.System.Font.GetSharedMemoryAddressOffset(FontType));
|
2018-02-25 05:34:16 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
public long GetSharedMemoryNativeHandle(ServiceCtx Context)
|
2018-02-25 05:34:16 +01:00
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.Device.System.Font.EnsureInitialized();
|
2018-08-15 20:59:51 +02:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
int Handle = Context.Process.HandleTable.OpenHandle(Context.Device.System.FontSharedMem);
|
2018-03-12 05:04:52 +01:00
|
|
|
|
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
2018-02-25 05:34:16 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-08-04 23:38:49 +02:00
|
|
|
|
2018-08-15 20:59:51 +02:00
|
|
|
public long GetSharedFontInOrderOfPriority(ServiceCtx Context)
|
2018-08-04 23:38:49 +02:00
|
|
|
{
|
2018-08-15 20:59:51 +02:00
|
|
|
long LanguageCode = Context.RequestData.ReadInt64();
|
|
|
|
int LoadedCount = 0;
|
2018-08-04 23:38:49 +02:00
|
|
|
|
2018-08-15 20:59:51 +02:00
|
|
|
for (SharedFontType Type = 0; Type < SharedFontType.Count; Type++)
|
|
|
|
{
|
|
|
|
int Offset = (int)Type * 4;
|
2018-08-04 23:38:49 +02:00
|
|
|
|
2018-08-15 20:59:51 +02:00
|
|
|
if (!AddFontToOrderOfPriorityList(Context, (SharedFontType)Type, Offset))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2018-08-04 23:38:49 +02:00
|
|
|
|
2018-08-15 20:59:51 +02:00
|
|
|
LoadedCount++;
|
2018-08-04 23:38:49 +02:00
|
|
|
}
|
|
|
|
|
2018-08-15 20:59:51 +02:00
|
|
|
Context.ResponseData.Write(LoadedCount);
|
|
|
|
Context.ResponseData.Write((int)SharedFontType.Count);
|
2018-08-04 23:38:49 +02:00
|
|
|
|
2018-08-15 20:59:51 +02:00
|
|
|
return 0;
|
2018-08-04 23:38:49 +02:00
|
|
|
}
|
|
|
|
|
2018-08-15 20:59:51 +02:00
|
|
|
private bool AddFontToOrderOfPriorityList(ServiceCtx Context, SharedFontType FontType, int Offset)
|
2018-08-04 23:38:49 +02:00
|
|
|
{
|
2018-08-15 20:59:51 +02:00
|
|
|
long TypesPosition = Context.Request.ReceiveBuff[0].Position;
|
|
|
|
long TypesSize = Context.Request.ReceiveBuff[0].Size;
|
|
|
|
|
|
|
|
long OffsetsPosition = Context.Request.ReceiveBuff[1].Position;
|
|
|
|
long OffsetsSize = Context.Request.ReceiveBuff[1].Size;
|
|
|
|
|
|
|
|
long FontSizeBufferPosition = Context.Request.ReceiveBuff[2].Position;
|
|
|
|
long FontSizeBufferSize = Context.Request.ReceiveBuff[2].Size;
|
2018-08-04 23:38:49 +02:00
|
|
|
|
2018-08-15 20:59:51 +02:00
|
|
|
if ((uint)Offset + 4 > (uint)TypesSize ||
|
|
|
|
(uint)Offset + 4 > (uint)OffsetsSize ||
|
|
|
|
(uint)Offset + 4 > (uint)FontSizeBufferSize)
|
2018-08-04 23:38:49 +02:00
|
|
|
{
|
2018-08-15 20:59:51 +02:00
|
|
|
return false;
|
2018-08-04 23:38:49 +02:00
|
|
|
}
|
|
|
|
|
2018-08-15 20:59:51 +02:00
|
|
|
Context.Memory.WriteInt32(TypesPosition + Offset, (int)FontType);
|
2018-08-04 23:38:49 +02:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.Memory.WriteInt32(OffsetsPosition + Offset, Context.Device.System.Font.GetSharedMemoryAddressOffset(FontType));
|
2018-08-15 20:59:51 +02:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.Memory.WriteInt32(FontSizeBufferPosition + Offset, Context.Device.System.Font.GetFontSize(FontType));
|
2018-08-15 20:59:51 +02:00
|
|
|
|
|
|
|
return true;
|
2018-08-04 23:38:49 +02:00
|
|
|
}
|
2018-02-25 05:34:16 +01:00
|
|
|
}
|
|
|
|
}
|