Ryujinx/Ryujinx.HLE/HOS/Services/Pl/ISharedFontManager.cs

130 lines
4.4 KiB
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Font;
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using System;
using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Pl
{
class ISharedFontManager : IpcService
{
2018-12-01 21:01:59 +01:00
private Dictionary<int, ServiceProcessRequest> _commands;
2018-12-01 21:01:59 +01:00
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
public ISharedFontManager()
{
2018-12-01 21:01:59 +01:00
_commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 0, RequestLoad },
{ 1, GetLoadState },
{ 2, GetFontSize },
{ 3, GetSharedMemoryAddressOffset },
{ 4, GetSharedMemoryNativeHandle },
{ 5, GetSharedFontInOrderOfPriority }
};
}
2018-12-01 21:01:59 +01:00
public long RequestLoad(ServiceCtx context)
{
2018-12-01 21:01:59 +01:00
SharedFontType fontType = (SharedFontType)context.RequestData.ReadInt32();
//We don't need to do anything here because we do lazy initialization
//on SharedFontManager (the font is loaded when necessary).
return 0;
}
2018-12-01 21:01:59 +01:00
public long GetLoadState(ServiceCtx context)
{
2018-12-01 21:01:59 +01:00
SharedFontType fontType = (SharedFontType)context.RequestData.ReadInt32();
//1 (true) indicates that the font is already loaded.
//All fonts are already loaded.
2018-12-01 21:01:59 +01:00
context.ResponseData.Write(1);
return 0;
}
2018-12-01 21:01:59 +01:00
public long GetFontSize(ServiceCtx context)
{
2018-12-01 21:01:59 +01:00
SharedFontType fontType = (SharedFontType)context.RequestData.ReadInt32();
2018-12-01 21:01:59 +01:00
context.ResponseData.Write(context.Device.System.Font.GetFontSize(fontType));
return 0;
}
2018-12-01 21:01:59 +01:00
public long GetSharedMemoryAddressOffset(ServiceCtx context)
{
2018-12-01 21:01:59 +01:00
SharedFontType fontType = (SharedFontType)context.RequestData.ReadInt32();
2018-12-01 21:01:59 +01:00
context.ResponseData.Write(context.Device.System.Font.GetSharedMemoryAddressOffset(fontType));
return 0;
}
2018-12-01 21:01:59 +01:00
public long GetSharedMemoryNativeHandle(ServiceCtx context)
{
2018-12-01 21:01:59 +01:00
context.Device.System.Font.EnsureInitialized(context.Device.System.ContentManager);
2018-12-01 21:01:59 +01:00
if (context.Process.HandleTable.GenerateHandle(context.Device.System.FontSharedMem, out int handle) != KernelResult.Success)
{
throw new InvalidOperationException("Out of handles!");
}
2018-12-01 21:01:59 +01:00
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
return 0;
}
2018-12-01 21:01:59 +01:00
public long GetSharedFontInOrderOfPriority(ServiceCtx context)
{
2018-12-01 21:01:59 +01:00
long languageCode = context.RequestData.ReadInt64();
int loadedCount = 0;
2018-12-01 21:01:59 +01:00
for (SharedFontType type = 0; type < SharedFontType.Count; type++)
{
2018-12-01 21:01:59 +01:00
int offset = (int)type * 4;
2018-12-01 21:01:59 +01:00
if (!AddFontToOrderOfPriorityList(context, (SharedFontType)type, offset))
{
break;
}
2018-12-01 21:01:59 +01:00
loadedCount++;
}
2018-12-01 21:01:59 +01:00
context.ResponseData.Write(loadedCount);
context.ResponseData.Write((int)SharedFontType.Count);
return 0;
}
2018-12-01 21:01:59 +01:00
private bool AddFontToOrderOfPriorityList(ServiceCtx context, SharedFontType fontType, int offset)
{
2018-12-01 21:01:59 +01:00
long typesPosition = context.Request.ReceiveBuff[0].Position;
long typesSize = context.Request.ReceiveBuff[0].Size;
2018-12-01 21:01:59 +01:00
long offsetsPosition = context.Request.ReceiveBuff[1].Position;
long offsetsSize = context.Request.ReceiveBuff[1].Size;
2018-12-01 21:01:59 +01:00
long fontSizeBufferPosition = context.Request.ReceiveBuff[2].Position;
long fontSizeBufferSize = context.Request.ReceiveBuff[2].Size;
2018-12-01 21:01:59 +01:00
if ((uint)offset + 4 > (uint)typesSize ||
(uint)offset + 4 > (uint)offsetsSize ||
(uint)offset + 4 > (uint)fontSizeBufferSize)
{
return false;
}
2018-12-01 21:01:59 +01:00
context.Memory.WriteInt32(typesPosition + offset, (int)fontType);
2018-12-01 21:01:59 +01:00
context.Memory.WriteInt32(offsetsPosition + offset, context.Device.System.Font.GetSharedMemoryAddressOffset(fontType));
2018-12-01 21:01:59 +01:00
context.Memory.WriteInt32(fontSizeBufferPosition + offset, context.Device.System.Font.GetFontSize(fontType));
return true;
}
}
}