2018-07-24 21:38:44 +00:00
|
|
|
using ChocolArm64.Memory;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-12-18 05:33:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
2018-09-23 18:11:46 +00:00
|
|
|
using System;
|
2018-02-04 23:08:20 +00:00
|
|
|
using System.IO;
|
2018-07-24 21:38:44 +00:00
|
|
|
using System.Text;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-02-15 04:47:40 +00:00
|
|
|
using static Ryujinx.HLE.HOS.ErrorCode;
|
2018-08-16 23:47:36 +00:00
|
|
|
using static Ryujinx.HLE.HOS.Services.Android.Parcel;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Vi
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class IApplicationDisplayService : IpcService
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
private IdDictionary _displays;
|
2018-03-12 04:04:52 +00:00
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
public IApplicationDisplayService()
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_displays = new IdDictionary();
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(100)]
|
|
|
|
// GetRelayService() -> object<nns::hosbinder::IHOSBinderDriver>
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetRelayService(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
MakeObject(context, new IHOSBinderDriver(
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Device.System,
|
|
|
|
context.Device.Gpu.Renderer));
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(101)]
|
|
|
|
// GetSystemDisplayService() -> object<nn::visrv::sf::ISystemDisplayService>
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetSystemDisplayService(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-01-05 21:26:16 +00:00
|
|
|
MakeObject(context, new ISystemDisplayService(this));
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(102)]
|
|
|
|
// GetManagerDisplayService() -> object<nn::visrv::sf::IManagerDisplayService>
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetManagerDisplayService(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-04-25 22:57:18 +00:00
|
|
|
MakeObject(context, new IManagerDisplayService(this));
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(103)] // 2.0.0+
|
|
|
|
// GetIndirectDisplayTransactionService() -> object<nns::hosbinder::IHOSBinderDriver>
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetIndirectDisplayTransactionService(ServiceCtx context)
|
2018-02-06 23:28:32 +00:00
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
MakeObject(context, new IHOSBinderDriver(
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Device.System,
|
|
|
|
context.Device.Gpu.Renderer));
|
2018-02-06 23:28:32 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(1000)]
|
|
|
|
// ListDisplays() -> (u64, buffer<nn::vi::DisplayInfo, 6>)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long ListDisplays(ServiceCtx context)
|
2018-07-24 21:38:44 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long recBuffPtr = context.Request.ReceiveBuff[0].Position;
|
2018-07-24 21:38:44 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
MemoryHelper.FillWithZeros(context.Memory, recBuffPtr, 0x60);
|
2018-07-24 21:38:44 +00:00
|
|
|
|
2019-07-02 02:39:22 +00:00
|
|
|
// Add only the default display to buffer
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Memory.WriteBytes(recBuffPtr, Encoding.ASCII.GetBytes("Default"));
|
|
|
|
context.Memory.WriteInt64(recBuffPtr + 0x40, 0x1L);
|
|
|
|
context.Memory.WriteInt64(recBuffPtr + 0x48, 0x1L);
|
|
|
|
context.Memory.WriteInt64(recBuffPtr + 0x50, 1920L);
|
|
|
|
context.Memory.WriteInt64(recBuffPtr + 0x58, 1080L);
|
2018-07-24 21:38:44 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(1L);
|
2018-07-24 21:38:44 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(1010)]
|
|
|
|
// OpenDisplay(nn::vi::DisplayName) -> u64
|
2018-12-06 11:16:24 +00:00
|
|
|
public long OpenDisplay(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
string name = GetDisplayName(context);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
long displayId = _displays.Add(new Display(name));
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(displayId);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(1020)]
|
|
|
|
// CloseDisplay(u64)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long CloseDisplay(ServiceCtx context)
|
2018-03-06 13:25:26 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int displayId = context.RequestData.ReadInt32();
|
2018-03-06 13:25:26 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
_displays.Delete(displayId);
|
2018-03-06 13:25:26 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(1102)]
|
|
|
|
// GetDisplayResolution(u64) -> (u64, u64)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetDisplayResolution(ServiceCtx context)
|
2018-04-04 22:16:59 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long displayId = context.RequestData.ReadInt32();
|
2018-04-04 22:16:59 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(1280);
|
|
|
|
context.ResponseData.Write(720);
|
2018-04-04 22:16:59 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(2020)]
|
|
|
|
// OpenLayer(nn::vi::DisplayName, u64, nn::applet::AppletResourceUserId, pid) -> (u64, buffer<bytes, 6>)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long OpenLayer(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long layerId = context.RequestData.ReadInt64();
|
|
|
|
long userId = context.RequestData.ReadInt64();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
long parcelPtr = context.Request.ReceiveBuff[0].Position;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
byte[] parcel = MakeIGraphicsBufferProducer(parcelPtr);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Memory.WriteBytes(parcelPtr, parcel);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write((long)parcel.Length);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(2021)]
|
|
|
|
// CloseLayer(u64)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long CloseLayer(ServiceCtx context)
|
2018-03-06 20:27:50 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long layerId = context.RequestData.ReadInt64();
|
2018-03-12 04:04:52 +00:00
|
|
|
|
2018-03-06 20:27:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(2030)]
|
|
|
|
// CreateStrayLayer(u32, u64) -> (u64, u64, buffer<bytes, 6>)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long CreateStrayLayer(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long layerFlags = context.RequestData.ReadInt64();
|
|
|
|
long displayId = context.RequestData.ReadInt64();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
long parcelPtr = context.Request.ReceiveBuff[0].Position;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
Display disp = _displays.GetData<Display>((int)displayId);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
byte[] parcel = MakeIGraphicsBufferProducer(parcelPtr);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Memory.WriteBytes(parcelPtr, parcel);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(0L);
|
|
|
|
context.ResponseData.Write((long)parcel.Length);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(2031)]
|
|
|
|
// DestroyStrayLayer(u64)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long DestroyStrayLayer(ServiceCtx context)
|
2018-03-12 04:04:52 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(2101)]
|
|
|
|
// SetLayerScalingMode(u32, u64)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long SetLayerScalingMode(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int scalingMode = context.RequestData.ReadInt32();
|
|
|
|
long unknown = context.RequestData.ReadInt64();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(2102)] // 5.0.0+
|
|
|
|
// ConvertScalingMode(unknown) -> unknown
|
2019-02-15 04:47:40 +00:00
|
|
|
public long ConvertScalingMode(ServiceCtx context)
|
|
|
|
{
|
2019-02-19 00:12:53 +00:00
|
|
|
SrcScalingMode scalingMode = (SrcScalingMode)context.RequestData.ReadInt32();
|
2019-02-15 04:47:40 +00:00
|
|
|
|
2019-02-19 00:12:53 +00:00
|
|
|
DstScalingMode? convertedScalingMode = ConvertScalingMode(scalingMode);
|
|
|
|
|
|
|
|
if (!convertedScalingMode.HasValue)
|
2019-02-15 04:47:40 +00:00
|
|
|
{
|
2019-07-02 02:39:22 +00:00
|
|
|
// Scaling mode out of the range of valid values.
|
2019-02-15 04:47:40 +00:00
|
|
|
return MakeError(ErrorModule.Vi, 1);
|
|
|
|
}
|
|
|
|
|
2019-02-19 00:12:53 +00:00
|
|
|
if (scalingMode != SrcScalingMode.ScaleToWindow &&
|
|
|
|
scalingMode != SrcScalingMode.PreserveAspectRatio)
|
|
|
|
{
|
2019-07-02 02:39:22 +00:00
|
|
|
// Invalid scaling mode specified.
|
2019-02-19 00:12:53 +00:00
|
|
|
return MakeError(ErrorModule.Vi, 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
context.ResponseData.Write((ulong)convertedScalingMode);
|
2019-02-15 04:47:40 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-02-19 00:12:53 +00:00
|
|
|
private DstScalingMode? ConvertScalingMode(SrcScalingMode source)
|
2019-02-15 04:47:40 +00:00
|
|
|
{
|
2019-02-19 00:12:53 +00:00
|
|
|
switch (source)
|
2019-02-15 04:47:40 +00:00
|
|
|
{
|
|
|
|
case SrcScalingMode.None: return DstScalingMode.None;
|
|
|
|
case SrcScalingMode.Freeze: return DstScalingMode.Freeze;
|
|
|
|
case SrcScalingMode.ScaleAndCrop: return DstScalingMode.ScaleAndCrop;
|
|
|
|
case SrcScalingMode.ScaleToWindow: return DstScalingMode.ScaleToWindow;
|
|
|
|
case SrcScalingMode.PreserveAspectRatio: return DstScalingMode.PreserveAspectRatio;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(5202)]
|
|
|
|
// GetDisplayVsyncEvent(u64) -> handle<copy>
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetDisplayVSyncEvent(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
string name = GetDisplayName(context);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(context.Device.System.VsyncEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 18:11:46 +00:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private byte[] MakeIGraphicsBufferProducer(long basePtr)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long id = 0x20;
|
|
|
|
long cookiePtr = 0L;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
using (MemoryStream ms = new MemoryStream())
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
BinaryWriter writer = new BinaryWriter(ms);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-07-02 02:39:22 +00:00
|
|
|
// flat_binder_object (size is 0x28)
|
2018-12-06 11:16:24 +00:00
|
|
|
writer.Write(2); //Type (BINDER_TYPE_WEAK_BINDER)
|
|
|
|
writer.Write(0); //Flags
|
|
|
|
writer.Write((int)(id >> 0));
|
|
|
|
writer.Write((int)(id >> 32));
|
|
|
|
writer.Write((int)(cookiePtr >> 0));
|
|
|
|
writer.Write((int)(cookiePtr >> 32));
|
|
|
|
writer.Write((byte)'d');
|
|
|
|
writer.Write((byte)'i');
|
|
|
|
writer.Write((byte)'s');
|
|
|
|
writer.Write((byte)'p');
|
|
|
|
writer.Write((byte)'d');
|
|
|
|
writer.Write((byte)'r');
|
|
|
|
writer.Write((byte)'v');
|
|
|
|
writer.Write((byte)'\0');
|
|
|
|
writer.Write(0L); //Pad
|
|
|
|
|
|
|
|
return MakeParcel(ms.ToArray(), new byte[] { 0, 0, 0, 0 });
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private string GetDisplayName(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
string name = string.Empty;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
for (int index = 0; index < 8 &&
|
|
|
|
context.RequestData.BaseStream.Position <
|
|
|
|
context.RequestData.BaseStream.Length; index++)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
byte chr = context.RequestData.ReadByte();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
if (chr >= 0x20 && chr < 0x7f)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
name += (char)chr;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
return name;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|