From edf5f15134e2eeca43272ec0b8330a264f7e12f5 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sat, 11 Nov 2023 11:16:52 -0800 Subject: [PATCH] slightly improve xlib bindings, should now in theory work for 32 bit systems --- .../KeyInput/X11KeyInput.cs | 5 +-- src/BizHawk.Common/LSB/XlibImports.cs | 34 +++++++++---------- 2 files changed, 20 insertions(+), 19 deletions(-) diff --git a/src/BizHawk.Bizware.Input/KeyInput/X11KeyInput.cs b/src/BizHawk.Bizware.Input/KeyInput/X11KeyInput.cs index 62da0a060b..6e9097608e 100644 --- a/src/BizHawk.Bizware.Input/KeyInput/X11KeyInput.cs +++ b/src/BizHawk.Bizware.Input/KeyInput/X11KeyInput.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; using System.Linq; - +using System.Runtime.InteropServices; using BizHawk.Client.Common; using BizHawk.Common; using BizHawk.Common.CollectionExtensions; @@ -113,10 +113,11 @@ namespace BizHawk.Bizware.Input if (keyboard != null) { _ = XkbGetNames(Display, 0x3FF, keyboard); + var names = Marshal.PtrToStructure(keyboard->names); for (int i = keyboard->min_key_code; i <= keyboard->max_key_code; i++) { - var name = new string(keyboard->names->keys[i].name, 0, 4); + var name = new string(names.keys[i].name, 0, 4); var key = name switch { "TLDE" => DistinctKey.OemTilde, diff --git a/src/BizHawk.Common/LSB/XlibImports.cs b/src/BizHawk.Common/LSB/XlibImports.cs index 63af36cae9..242f989e96 100644 --- a/src/BizHawk.Common/LSB/XlibImports.cs +++ b/src/BizHawk.Common/LSB/XlibImports.cs @@ -52,7 +52,7 @@ namespace BizHawk.Common public static extern unsafe int XQueryKeymap(IntPtr display, byte* keys_return); // copied from OpenTK - public enum Keysym + public enum Keysym : ulong { /* * TTY function keys, cleverly chosen to map to ASCII, for convenience of @@ -466,6 +466,7 @@ namespace BizHawk.Common } [DllImport(LIB)] + [return: MarshalAs(UnmanagedType.SysUInt)] public static extern Keysym XLookupKeysym(ref XKeyEvent key_event, int index); [DllImport(LIB)] @@ -492,22 +493,21 @@ namespace BizHawk.Common [StructLayout(LayoutKind.Sequential)] public unsafe struct XkbNamesRec { - // the ulongs here are Atom, which are actually more nuint - // they're ulong here as you can't use nuint in a fixed buffer (thanks microsoft) - // TODO: maybe make this work with 32 bit - - public ulong keycodes; - public ulong geometry; - public ulong symbols; - public ulong types; - public ulong compat; - public fixed ulong vmods[16]; - public fixed ulong indicators[32]; - public fixed ulong groups[4]; + public nuint keycodes; + public nuint geometry; + public nuint symbols; + public nuint types; + public nuint compat; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)] + public nuint[] vmods; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 32)] + public nuint[] indicators; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)] + public nuint[] groups; public XkbKeyNameRec* keys; public XkbKeyAliasRec* key_aliases; - public ulong* radio_groups; - public ulong phys_symbols; + public nuint* radio_groups; + public nuint phys_symbols; public byte num_keys; public byte num_key_aliases; @@ -515,7 +515,7 @@ namespace BizHawk.Common } [StructLayout(LayoutKind.Sequential)] - public unsafe struct XkbDescRec + public struct XkbDescRec { public IntPtr dpy; public ushort flags; @@ -527,7 +527,7 @@ namespace BizHawk.Common public IntPtr server; public IntPtr map; public IntPtr indicators; - public XkbNamesRec* names; + public IntPtr names; // XkbNamesRec* public IntPtr compat; public IntPtr geom; }