mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:48:36 +00:00
97 lines
3.3 KiB
C#
97 lines
3.3 KiB
C#
|
using System;
|
||
|
using System.IO;
|
||
|
using System.Runtime.InteropServices;
|
||
|
using System.Runtime.Versioning;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace Ryujinx.Ui.Common.Helper
|
||
|
{
|
||
|
[SupportedOSPlatform("macos")]
|
||
|
public static partial class ObjectiveC
|
||
|
{
|
||
|
private const string ObjCRuntime = "/usr/lib/libobjc.A.dylib";
|
||
|
|
||
|
[LibraryImport(ObjCRuntime, StringMarshalling = StringMarshalling.Utf8)]
|
||
|
private static unsafe partial IntPtr sel_getUid(string name);
|
||
|
|
||
|
[LibraryImport(ObjCRuntime, StringMarshalling = StringMarshalling.Utf8)]
|
||
|
public static partial IntPtr objc_getClass(string name);
|
||
|
|
||
|
[LibraryImport(ObjCRuntime)]
|
||
|
public static partial void objc_msgSend(IntPtr receiver, Selector selector);
|
||
|
|
||
|
[LibraryImport(ObjCRuntime)]
|
||
|
public static partial void objc_msgSend(IntPtr receiver, Selector selector, byte value);
|
||
|
|
||
|
[LibraryImport(ObjCRuntime)]
|
||
|
public static partial void objc_msgSend(IntPtr receiver, Selector selector, IntPtr value);
|
||
|
|
||
|
[LibraryImport(ObjCRuntime)]
|
||
|
public static partial void objc_msgSend(IntPtr receiver, Selector selector, NSRect point);
|
||
|
|
||
|
[LibraryImport(ObjCRuntime)]
|
||
|
public static partial void objc_msgSend(IntPtr receiver, Selector selector, double value);
|
||
|
|
||
|
[LibraryImport(ObjCRuntime, EntryPoint = "objc_msgSend")]
|
||
|
public static partial IntPtr IntPtr_objc_msgSend(IntPtr receiver, Selector selector);
|
||
|
|
||
|
[LibraryImport(ObjCRuntime, EntryPoint = "objc_msgSend")]
|
||
|
public static partial IntPtr IntPtr_objc_msgSend(IntPtr receiver, Selector selector, IntPtr param);
|
||
|
|
||
|
[LibraryImport(ObjCRuntime, EntryPoint = "objc_msgSend", StringMarshalling = StringMarshalling.Utf8)]
|
||
|
public static partial IntPtr IntPtr_objc_msgSend(IntPtr receiver, Selector selector, string param);
|
||
|
|
||
|
[LibraryImport(ObjCRuntime, EntryPoint = "objc_msgSend")]
|
||
|
[return: MarshalAs(UnmanagedType.Bool)]
|
||
|
public static partial bool bool_objc_msgSend(IntPtr receiver, Selector selector, IntPtr param);
|
||
|
|
||
|
public struct Selector
|
||
|
{
|
||
|
public readonly IntPtr SelPtr;
|
||
|
|
||
|
public unsafe Selector(string name)
|
||
|
{
|
||
|
SelPtr = sel_getUid(name);
|
||
|
}
|
||
|
|
||
|
public static implicit operator Selector(string value) => new(value);
|
||
|
}
|
||
|
|
||
|
public struct NSString
|
||
|
{
|
||
|
public readonly IntPtr StrPtr;
|
||
|
|
||
|
public NSString(string aString)
|
||
|
{
|
||
|
IntPtr nsString = objc_getClass("NSString");
|
||
|
StrPtr = IntPtr_objc_msgSend(nsString, "stringWithUTF8String:", aString);
|
||
|
}
|
||
|
|
||
|
public static implicit operator IntPtr(NSString nsString) => nsString.StrPtr;
|
||
|
}
|
||
|
|
||
|
public readonly struct NSPoint
|
||
|
{
|
||
|
public readonly double X;
|
||
|
public readonly double Y;
|
||
|
|
||
|
public NSPoint(double x, double y)
|
||
|
{
|
||
|
X = x;
|
||
|
Y = y;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public readonly struct NSRect
|
||
|
{
|
||
|
public readonly NSPoint Pos;
|
||
|
public readonly NSPoint Size;
|
||
|
|
||
|
public NSRect(double x, double y, double width, double height)
|
||
|
{
|
||
|
Pos = new NSPoint(x, y);
|
||
|
Size = new NSPoint(width, height);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|