diff --git a/Source/OpenTK/Configuration.cs b/Source/OpenTK/Configuration.cs index 214f2f24..4ee7bb5f 100644 --- a/Source/OpenTK/Configuration.cs +++ b/Source/OpenTK/Configuration.cs @@ -174,17 +174,17 @@ namespace OpenTK // Detect whether SDL2 is supported try { - if (OpenTK.Platform.SDL2.SDL.SDL_WasInit(0) == 0) + if (!OpenTK.Platform.SDL2.SDL.WasInit(0)) { - var flags = OpenTK.Platform.SDL2.SDL.SDL_INIT_EVERYTHING; - flags &= ~OpenTK.Platform.SDL2.SDL.SDL_INIT_AUDIO; - if (OpenTK.Platform.SDL2.SDL.SDL_Init((uint)flags) == 0) + var flags = OpenTK.Platform.SDL2.SystemFlags.EVERYTHING; + flags &= ~OpenTK.Platform.SDL2.SystemFlags.AUDIO; + if (OpenTK.Platform.SDL2.SDL.Init(flags) == 0) { supported = true; } else { - Debug.Print("SDL2 init failed with error: {0}", OpenTK.Platform.SDL2.SDL.SDL_GetError()); + Debug.Print("SDL2 init failed with error: {0}", OpenTK.Platform.SDL2.SDL.GetError()); } } else diff --git a/Source/OpenTK/Platform/SDL2/Sdl2.cs b/Source/OpenTK/Platform/SDL2/Sdl2.cs index 1f394c5b..3ce00158 100644 --- a/Source/OpenTK/Platform/SDL2/Sdl2.cs +++ b/Source/OpenTK/Platform/SDL2/Sdl2.cs @@ -26,26 +26,1203 @@ #endregion using System; +using System.Security; +using System.Runtime.InteropServices; namespace OpenTK.Platform.SDL2 { + partial class SDL { -#if ANDROID - const string nativeLibName = "libSDL2.so"; -#elif IPHONE - const string nativeLibName = "__Internal"; -#else - const string nativeLibName = "SDL2.dll"; -#endif + #if ANDROID + const string lib = "libSDL2.so"; + #elif IPHONE + const string lib = "__Internal"; + #else + const string lib = "SDL2.dll"; + #endif public readonly static object Sync = new object(); - public readonly static SDL_version Version; + public readonly static Version Version; - static SDL() - { - SDL.SDL_GetVersion(out Version); - } + static SDL() + { + GetVersion(out Version); + } + + #region Functions + + static string IntPtrToString(IntPtr ptr) + { + return Marshal.PtrToStringAnsi(ptr); + //int strlen = 0; + //while (Marshal.ReadByte(ptr) != 0) + // strlen++; + } + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_AddEventWatch", ExactSpelling = true)] + public static extern void AddEventWatch(EventFilter filter, IntPtr userdata); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_CreateRGBSurfaceFrom", ExactSpelling = true)] + public static extern IntPtr CreateRGBSurfaceFrom(IntPtr pixels, + int width, int height, int depth, int pitch, + uint Rmask, uint Gmask, uint Bmask, uint Amask); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_CreateWindow", ExactSpelling = true)] + public static extern IntPtr CreateWindow(string title, int x, int y, int w, int h, WindowFlags flags); + //public static extern IntPtr SDL_CreateWindow(string title, int x, int y, int w, int h, WindowFlags flags); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_CreateWindowFrom", ExactSpelling = true)] + public static extern IntPtr CreateWindowFrom(IntPtr data); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_DelEventWatch", ExactSpelling = true)] + public static extern void DelEventWatch(EventFilter filter, IntPtr userdata); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_DestroyWindow", ExactSpelling = true)] + public static extern void DestroyWindow(IntPtr window); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_FreeSurface", ExactSpelling = true)] + public static extern void FreeSurface(IntPtr surface); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetCurrentDisplayMode", ExactSpelling = true)] + public static extern int GetCurrentDisplayMode(int displayIndex, out DisplayMode mode); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetDisplayBounds", ExactSpelling = true)] + public static extern int GetDisplayBounds(int displayIndex, out Rect rect); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetDisplayMode", ExactSpelling = true)] + public static extern int GetDisplayMode(int displayIndex, int modeIndex, out DisplayMode mode); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetError", ExactSpelling = true)] + static extern IntPtr GetErrorInternal(); + public static string GetError() + { + return IntPtrToString(GetErrorInternal()); + } + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetModState", ExactSpelling = true)] + public static extern Keymod GetModState(); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetNumDisplayModes", ExactSpelling = true)] + public static extern int GetNumDisplayModes(int displayIndex); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetNumVideoDisplays", ExactSpelling = true)] + public static extern int GetNumVideoDisplays(); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetScancodeFromKey", ExactSpelling = true)] + public static extern Scancode GetScancodeFromKey(Keycode key); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetVersion", ExactSpelling = true)] + public static extern void GetVersion(out Version version); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetWindowID", ExactSpelling = true)] + public static extern uint GetWindowID(IntPtr window); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetWindowPosition", ExactSpelling = true)] + public static extern void GetWindowPosition(IntPtr window, out int x, out int y); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetWindowSize", ExactSpelling = true)] + public static extern void GetWindowSize(IntPtr window, out int w, out int h); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GetWindowTitle", ExactSpelling = true)] + static extern IntPtr GetWindowTitlePrivate(IntPtr window); + public static string GetWindowTitle(IntPtr window) + { + return Marshal.PtrToStringAnsi(GetWindowTitlePrivate(window)); + } + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_HideWindow", ExactSpelling = true)] + public static extern void HideWindow(IntPtr window); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_Init", ExactSpelling = true)] + public static extern int Init(SystemFlags flags); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickClose", ExactSpelling = true)] + public static extern void JoystickClose(IntPtr joystick); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickGetAxis", ExactSpelling = true)] + public static extern short JoystickGetAxis(IntPtr joystick, int axis); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickGetButton", ExactSpelling = true)] + public static extern byte JoystickGetButton(IntPtr joystick, int button); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickName", ExactSpelling = true)] + public static extern string JoystickName(IntPtr joystick); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickNumAxes", ExactSpelling = true)] + public static extern int JoystickNumAxes(IntPtr joystick); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickNumBalls", ExactSpelling = true)] + public static extern int JoystickNumBalls(IntPtr joystick); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickNumButtons", ExactSpelling = true)] + public static extern int JoystickNumButtons(IntPtr joystick); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickNumHats", ExactSpelling = true)] + public static extern int JoystickNumHats(IntPtr joystick); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickOpen", ExactSpelling = true)] + public static extern IntPtr JoystickOpen(int device_index); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickUpdate", ExactSpelling = true)] + public static extern void JoystickUpdate(); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_MaximizeWindow", ExactSpelling = true)] + public static extern void MaximizeWindow(IntPtr window); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_MinimizeWindow", ExactSpelling = true)] + public static extern void MinimizeWindow(IntPtr window); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_NumJoysticks", ExactSpelling = true)] + public static extern int NumJoysticks(); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_PixelFormatEnumToMasks", ExactSpelling = true)] + public static extern bool PixelFormatEnumToMasks(uint format, out int bpp, + out uint rmask, out uint gmask, out uint bmask, out uint amask); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_PumpEvents", ExactSpelling = true)] + public static extern void PumpEvents(); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_PushEvent", ExactSpelling = true)] + public static extern int PushEvent(ref Event @event); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_RaiseWindow", ExactSpelling = true)] + public static extern void RaiseWindow(IntPtr window); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_RestoreWindow", ExactSpelling = true)] + public static extern void RestoreWindow(IntPtr window); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_SetRelativeMouseMode", ExactSpelling = true)] + public static extern int SetRelativeMouseMode(bool enabled); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_SetWindowBordered", ExactSpelling = true)] + public static extern void SetWindowBordered(IntPtr window, bool bordered); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_SetWindowFullscreen", ExactSpelling = true)] + public static extern int SetWindowFullscreen(IntPtr window, uint flags); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_SetWindowGrab", ExactSpelling = true)] + public static extern void SetWindowGrab(IntPtr window, bool grabbed); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_SetWindowIcon", ExactSpelling = true)] + public static extern void SetWindowIcon(IntPtr window, IntPtr icon); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_SetWindowPosition", ExactSpelling = true)] + public static extern void SetWindowPosition(IntPtr window, int x, int y); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_SetWindowSize", ExactSpelling = true)] + public static extern void SetWindowSize(IntPtr window, int x, int y); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_SetWindowTitle", ExactSpelling = true)] + public static extern void SetWindowTitle(IntPtr window, string title); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_ShowCursor", ExactSpelling = true)] + public static extern int ShowCursor(bool toggle); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_ShowWindow", ExactSpelling = true)] + public static extern void ShowWindow(IntPtr window); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_WasInit", ExactSpelling = true)] + public static extern bool WasInit(SystemFlags flags); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_WarpMouseInWindow", ExactSpelling = true)] + public static extern void WarpMouseInWindow(IntPtr window, int x, int y); + + public partial class GL + { + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GL_CreateContext", ExactSpelling = true)] + public static extern IntPtr CreateContext(IntPtr window); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GL_DeleteContext", ExactSpelling = true)] + public static extern void DeleteContext(IntPtr context); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GL_GetDrawableSize", ExactSpelling = true)] + public static extern void GetDrawableSize(IntPtr window, out int w, out int h); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GL_GetProcAddress", ExactSpelling = true)] + static extern IntPtr GetProcAddress(IntPtr proc); + public static IntPtr GetProcAddress(string proc) + { + IntPtr p = Marshal.StringToHGlobalAnsi(proc); + try + { + return GetProcAddress(p); + } + finally + { + Marshal.FreeHGlobal(p); + } + } + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GL_GetSwapInterval", ExactSpelling = true)] + public static extern int GetSwapInterval(); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GL_MakeCurrent", ExactSpelling = true)] + public static extern int MakeCurrent(IntPtr window, IntPtr context); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GL_SetAttribute", ExactSpelling = true)] + public static extern int SetAttribute(ContextAttribute attr, int value); + public static int SetAttribute(ContextAttribute attr, ContextFlags value) + { + return SetAttribute(attr, (int)value); + } + public static int SetAttribute(ContextAttribute attr, ContextProfileFlags value) + { + return SetAttribute(attr, (int)value); + } + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GL_SetSwapInterval", ExactSpelling = true)] + public static extern int SetSwapInterval(int interval); + + [SuppressUnmanagedCodeSecurity] + [DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_GL_SwapWindow", ExactSpelling = true)] + public static extern void SwapWindow(IntPtr window); + } + + #endregion } + + #region Delegates + + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + internal delegate int EventFilter(IntPtr userdata, IntPtr @event); + + #endregion + + #region Enums + + enum Button : byte + { + Left = 1, + Middle, + Right, + X1, + X2 + } + + [Flags] + enum ButtonFlags + { + Left = 1 << (Button.Left - 1), + Middle = 1 << (Button.Middle - 1), + Right = 1 << (Button.Right - 1), + X1 = 1 << (Button.X1 - 1), + X2 = 1 << (Button.X2 - 1), + } + + enum ContextAttribute + { + RED_SIZE, + GREEN_SIZE, + BLUE_SIZE, + ALPHA_SIZE, + BUFFER_SIZE, + DOUBLEBUFFER, + DEPTH_SIZE, + STENCIL_SIZE, + ACCUM_RED_SIZE, + ACCUM_GREEN_SIZE, + ACCUM_BLUE_SIZE, + ACCUM_ALPHA_SIZE, + STEREO, + MULTISAMPLEBUFFERS, + MULTISAMPLESAMPLES, + ACCELERATED_VISUAL, + RETAINED_BACKING, + CONTEXT_MAJOR_VERSION, + CONTEXT_MINOR_VERSION, + CONTEXT_EGL, + CONTEXT_FLAGS, + CONTEXT_PROFILE_MASK, + SHARE_WITH_CURRENT_CONTEXT + } + + [Flags] + enum ContextFlags + { + DEBUG = 0x0001, + FORWARD_COMPATIBLE = 0x0002, + ROBUST_ACCESS = 0x0004, + RESET_ISOLATION = 0x0008 + } + + [Flags] + enum ContextProfileFlags + { + CORE = 0x0001, + COMPATIBILITY = 0x0002, + ES = 0x0004 + } + + enum EventType + { + FIRSTEVENT = 0, + QUIT = 0x100, + WINDOWEVENT = 0x200, + SYSWMEVENT, + KEYDOWN = 0x300, + KEYUP, + TEXTEDITING, + TEXTINPUT, + MOUSEMOTION = 0x400, + MOUSEBUTTONDOWN, + MOUSEBUTTONUP, + MOUSEWHEEL, + JOYAXISMOTION = 0x600, + JOYBALLMOTION, + JOYHATMOTION, + JOYBUTTONDOWN, + JOYBUTTONUP, + JOYDEVICEADDED, + JOYDEVICEREMOVED, + CONTROLLERAXISMOTION = 0x650, + CONTROLLERBUTTONDOWN, + CONTROLLERBUTTONUP, + CONTROLLERDEVICEADDED, + CONTROLLERDEVICEREMOVED, + CONTROLLERDEVICEREMAPPED, + FINGERDOWN = 0x700, + FINGERUP, + FINGERMOTION, + DOLLARGESTURE = 0x800, + DOLLARRECORD, + MULTIGESTURE, + CLIPBOARDUPDATE = 0x900, + DROPFILE = 0x1000, + USEREVENT = 0x8000, + LASTEVENT = 0xFFFF + } + + enum Keycode + { + UNKNOWN = 0, + RETURN = '\r', + ESCAPE = 27, // '\033' octal + BACKSPACE = '\b', + TAB = '\t', + SPACE = ' ', + EXCLAIM = '!', + QUOTEDBL = '"', + HASH = '#', + PERCENT = '%', + DOLLAR = '$', + AMPERSAND = '&', + QUOTE = '\'', + LEFTPAREN = '(', + RIGHTPAREN = ')', + ASTERISK = '*', + PLUS = '+', + COMMA = ',', + MINUS = '-', + PERIOD = '.', + SLASH = '/', + Num0 = '0', + Num1 = '1', + Num2 = '2', + Num3 = '3', + Num4 = '4', + Num5 = '5', + Num6 = '6', + Num7 = '7', + Num8 = '8', + Num9 = '9', + COLON = ':', + SEMICOLON = ';', + LESS = '<', + EQUALS = '=', + GREATER = '>', + QUESTION = '?', + AT = '@', + LEFTBRACKET = '[', + BACKSLASH = '\\', + RIGHTBRACKET = ']', + CARET = '^', + UNDERSCORE = '_', + BACKQUOTE = '`', + a = 'a', + b = 'b', + c = 'c', + d = 'd', + e = 'e', + f = 'f', + g = 'g', + h = 'h', + i = 'i', + j = 'j', + k = 'k', + l = 'l', + m = 'm', + n = 'n', + o = 'o', + p = 'p', + q = 'q', + r = 'r', + s = 's', + t = 't', + u = 'u', + v = 'v', + w = 'w', + x = 'x', + y = 'y', + z = 'z', + CAPSLOCK = (1 << 30) | (int)Scancode.CAPSLOCK, + F1 = (1 << 30) | (int)Scancode.F1, + F2 = (1 << 30) | (int)Scancode.F2, + F3 = (1 << 30) | (int)Scancode.F3, + F4 = (1 << 30) | (int)Scancode.F4, + F5 = (1 << 30) | (int)Scancode.F5, + F6 = (1 << 30) | (int)Scancode.F6, + F7 = (1 << 30) | (int)Scancode.F7, + F8 = (1 << 30) | (int)Scancode.F8, + F9 = (1 << 30) | (int)Scancode.F9, + F10 = (1 << 30) | (int)Scancode.F10, + F11 = (1 << 30) | (int)Scancode.F11, + F12 = (1 << 30) | (int)Scancode.F12, + PRINTSCREEN = (1 << 30) | (int)Scancode.PRINTSCREEN, + SCROLLLOCK = (1 << 30) | (int)Scancode.SCROLLLOCK, + PAUSE = (1 << 30) | (int)Scancode.PAUSE, + INSERT = (1 << 30) | (int)Scancode.INSERT, + HOME = (1 << 30) | (int)Scancode.HOME, + PAGEUP = (1 << 30) | (int)Scancode.PAGEUP, + DELETE = 127, // '\177' octal + END = (1 << 30) | (int)Scancode.END, + PAGEDOWN = (1 << 30) | (int)Scancode.PAGEDOWN, + RIGHT = (1 << 30) | (int)Scancode.RIGHT, + LEFT = (1 << 30) | (int)Scancode.LEFT, + DOWN = (1 << 30) | (int)Scancode.DOWN, + UP = (1 << 30) | (int)Scancode.UP, + NUMLOCKCLEAR = (1 << 30) | (int)Scancode.NUMLOCKCLEAR, + KP_DIVIDE = (1 << 30) | (int)Scancode.KP_DIVIDE, + KP_MULTIPLY = (1 << 30) | (int)Scancode.KP_MULTIPLY, + KP_MINUS = (1 << 30) | (int)Scancode.KP_MINUS, + KP_PLUS = (1 << 30) | (int)Scancode.KP_PLUS, + KP_ENTER = (1 << 30) | (int)Scancode.KP_ENTER, + KP_1 = (1 << 30) | (int)Scancode.KP_1, + KP_2 = (1 << 30) | (int)Scancode.KP_2, + KP_3 = (1 << 30) | (int)Scancode.KP_3, + KP_4 = (1 << 30) | (int)Scancode.KP_4, + KP_5 = (1 << 30) | (int)Scancode.KP_5, + KP_6 = (1 << 30) | (int)Scancode.KP_6, + KP_7 = (1 << 30) | (int)Scancode.KP_7, + KP_8 = (1 << 30) | (int)Scancode.KP_8, + KP_9 = (1 << 30) | (int)Scancode.KP_9, + KP_0 = (1 << 30) | (int)Scancode.KP_0, + KP_PERIOD = (1 << 30) | (int)Scancode.KP_PERIOD, + APPLICATION = (1 << 30) | (int)Scancode.APPLICATION, + POWER = (1 << 30) | (int)Scancode.POWER, + KP_EQUALS = (1 << 30) | (int)Scancode.KP_EQUALS, + F13 = (1 << 30) | (int)Scancode.F13, + F14 = (1 << 30) | (int)Scancode.F14, + F15 = (1 << 30) | (int)Scancode.F15, + F16 = (1 << 30) | (int)Scancode.F16, + F17 = (1 << 30) | (int)Scancode.F17, + F18 = (1 << 30) | (int)Scancode.F18, + F19 = (1 << 30) | (int)Scancode.F19, + F20 = (1 << 30) | (int)Scancode.F20, + F21 = (1 << 30) | (int)Scancode.F21, + F22 = (1 << 30) | (int)Scancode.F22, + F23 = (1 << 30) | (int)Scancode.F23, + F24 = (1 << 30) | (int)Scancode.F24, + EXECUTE = (1 << 30) | (int)Scancode.EXECUTE, + HELP = (1 << 30) | (int)Scancode.HELP, + MENU = (1 << 30) | (int)Scancode.MENU, + SELECT = (1 << 30) | (int)Scancode.SELECT, + STOP = (1 << 30) | (int)Scancode.STOP, + AGAIN = (1 << 30) | (int)Scancode.AGAIN, + UNDO = (1 << 30) | (int)Scancode.UNDO, + CUT = (1 << 30) | (int)Scancode.CUT, + COPY = (1 << 30) | (int)Scancode.COPY, + PASTE = (1 << 30) | (int)Scancode.PASTE, + FIND = (1 << 30) | (int)Scancode.FIND, + MUTE = (1 << 30) | (int)Scancode.MUTE, + VOLUMEUP = (1 << 30) | (int)Scancode.VOLUMEUP, + VOLUMEDOWN = (1 << 30) | (int)Scancode.VOLUMEDOWN, + KP_COMMA = (1 << 30) | (int)Scancode.KP_COMMA, + KP_EQUALSAS400 = (1 << 30) | (int)Scancode.KP_EQUALSAS400, + ALTERASE = (1 << 30) | (int)Scancode.ALTERASE, + SYSREQ = (1 << 30) | (int)Scancode.SYSREQ, + CANCEL = (1 << 30) | (int)Scancode.CANCEL, + CLEAR = (1 << 30) | (int)Scancode.CLEAR, + PRIOR = (1 << 30) | (int)Scancode.PRIOR, + RETURN2 = (1 << 30) | (int)Scancode.RETURN2, + SEPARATOR = (1 << 30) | (int)Scancode.SEPARATOR, + OUT = (1 << 30) | (int)Scancode.OUT, + OPER = (1 << 30) | (int)Scancode.OPER, + CLEARAGAIN = (1 << 30) | (int)Scancode.CLEARAGAIN, + CRSEL = (1 << 30) | (int)Scancode.CRSEL, + EXSEL = (1 << 30) | (int)Scancode.EXSEL, + KP_00 = (1 << 30) | (int)Scancode.KP_00, + KP_000 = (1 << 30) | (int)Scancode.KP_000, + THOUSANDSSEPARATOR = (1 << 30) | (int)Scancode.THOUSANDSSEPARATOR, + DECIMALSEPARATOR = (1 << 30) | (int)Scancode.DECIMALSEPARATOR, + CURRENCYUNIT = (1 << 30) | (int)Scancode.CURRENCYUNIT, + CURRENCYSUBUNIT = (1 << 30) | (int)Scancode.CURRENCYSUBUNIT, + KP_LEFTPAREN = (1 << 30) | (int)Scancode.KP_LEFTPAREN, + KP_RIGHTPAREN = (1 << 30) | (int)Scancode.KP_RIGHTPAREN, + KP_LEFTBRACE = (1 << 30) | (int)Scancode.KP_LEFTBRACE, + KP_RIGHTBRACE = (1 << 30) | (int)Scancode.KP_RIGHTBRACE, + KP_TAB = (1 << 30) | (int)Scancode.KP_TAB, + KP_BACKSPACE = (1 << 30) | (int)Scancode.KP_BACKSPACE, + KP_A = (1 << 30) | (int)Scancode.KP_A, + KP_B = (1 << 30) | (int)Scancode.KP_B, + KP_C = (1 << 30) | (int)Scancode.KP_C, + KP_D = (1 << 30) | (int)Scancode.KP_D, + KP_E = (1 << 30) | (int)Scancode.KP_E, + KP_F = (1 << 30) | (int)Scancode.KP_F, + KP_XOR = (1 << 30) | (int)Scancode.KP_XOR, + KP_POWER = (1 << 30) | (int)Scancode.KP_POWER, + KP_PERCENT = (1 << 30) | (int)Scancode.KP_PERCENT, + KP_LESS = (1 << 30) | (int)Scancode.KP_LESS, + KP_GREATER = (1 << 30) | (int)Scancode.KP_GREATER, + KP_AMPERSAND = (1 << 30) | (int)Scancode.KP_AMPERSAND, + KP_DBLAMPERSAND = (1 << 30) | (int)Scancode.KP_DBLAMPERSAND, + KP_VERTICALBAR = (1 << 30) | (int)Scancode.KP_VERTICALBAR, + KP_DBLVERTICALBAR = (1 << 30) | (int)Scancode.KP_DBLVERTICALBAR, + KP_COLON = (1 << 30) | (int)Scancode.KP_COLON, + KP_HASH = (1 << 30) | (int)Scancode.KP_HASH, + KP_SPACE = (1 << 30) | (int)Scancode.KP_SPACE, + KP_AT = (1 << 30) | (int)Scancode.KP_AT, + KP_EXCLAM = (1 << 30) | (int)Scancode.KP_EXCLAM, + KP_MEMSTORE = (1 << 30) | (int)Scancode.KP_MEMSTORE, + KP_MEMRECALL = (1 << 30) | (int)Scancode.KP_MEMRECALL, + KP_MEMCLEAR = (1 << 30) | (int)Scancode.KP_MEMCLEAR, + KP_MEMADD = (1 << 30) | (int)Scancode.KP_MEMADD, + KP_MEMSUBTRACT = (1 << 30) | (int)Scancode.KP_MEMSUBTRACT, + KP_MEMMULTIPLY = (1 << 30) | (int)Scancode.KP_MEMMULTIPLY, + KP_MEMDIVIDE = (1 << 30) | (int)Scancode.KP_MEMDIVIDE, + KP_PLUSMINUS = (1 << 30) | (int)Scancode.KP_PLUSMINUS, + KP_CLEAR = (1 << 30) | (int)Scancode.KP_CLEAR, + KP_CLEARENTRY = (1 << 30) | (int)Scancode.KP_CLEARENTRY, + KP_BINARY = (1 << 30) | (int)Scancode.KP_BINARY, + KP_OCTAL = (1 << 30) | (int)Scancode.KP_OCTAL, + KP_DECIMAL = (1 << 30) | (int)Scancode.KP_DECIMAL, + KP_HEXADECIMAL = (1 << 30) | (int)Scancode.KP_HEXADECIMAL, + LCTRL = (1 << 30) | (int)Scancode.LCTRL, + LSHIFT = (1 << 30) | (int)Scancode.LSHIFT, + LALT = (1 << 30) | (int)Scancode.LALT, + LGUI = (1 << 30) | (int)Scancode.LGUI, + RCTRL = (1 << 30) | (int)Scancode.RCTRL, + RSHIFT = (1 << 30) | (int)Scancode.RSHIFT, + RALT = (1 << 30) | (int)Scancode.RALT, + RGUI = (1 << 30) | (int)Scancode.RGUI, + MODE = (1 << 30) | (int)Scancode.MODE, + AUDIONEXT = (1 << 30) | (int)Scancode.AUDIONEXT, + AUDIOPREV = (1 << 30) | (int)Scancode.AUDIOPREV, + AUDIOSTOP = (1 << 30) | (int)Scancode.AUDIOSTOP, + AUDIOPLAY = (1 << 30) | (int)Scancode.AUDIOPLAY, + AUDIOMUTE = (1 << 30) | (int)Scancode.AUDIOMUTE, + MEDIASELECT = (1 << 30) | (int)Scancode.MEDIASELECT, + WWW = (1 << 30) | (int)Scancode.WWW, + MAIL = (1 << 30) | (int)Scancode.MAIL, + CALCULATOR = (1 << 30) | (int)Scancode.CALCULATOR, + COMPUTER = (1 << 30) | (int)Scancode.COMPUTER, + AC_SEARCH = (1 << 30) | (int)Scancode.AC_SEARCH, + AC_HOME = (1 << 30) | (int)Scancode.AC_HOME, + AC_BACK = (1 << 30) | (int)Scancode.AC_BACK, + AC_FORWARD = (1 << 30) | (int)Scancode.AC_FORWARD, + AC_STOP = (1 << 30) | (int)Scancode.AC_STOP, + AC_REFRESH = (1 << 30) | (int)Scancode.AC_REFRESH, + AC_BOOKMARKS = (1 << 30) | (int)Scancode.AC_BOOKMARKS, + BRIGHTNESSDOWN = (1 << 30) | (int)Scancode.BRIGHTNESSDOWN, + BRIGHTNESSUP = (1 << 30) | (int)Scancode.BRIGHTNESSUP, + DISPLAYSWITCH = (1 << 30) | (int)Scancode.DISPLAYSWITCH, + KBDILLUMTOGGLE = (1 << 30) | (int)Scancode.KBDILLUMTOGGLE, + KBDILLUMDOWN = (1 << 30) | (int)Scancode.KBDILLUMDOWN, + KBDILLUMUP = (1 << 30) | (int)Scancode.KBDILLUMUP, + EJECT = (1 << 30) | (int)Scancode.EJECT, + SLEEP = (1 << 30) | (int)Scancode.SLEEP + } + + [Flags] + enum Keymod : ushort + { + NONE = 0x0000, + LSHIFT = 0x0001, + RSHIFT = 0x0002, + LCTRL = 0x0040, + RCTRL = 0x0080, + LALT = 0x0100, + RALT = 0x0200, + LGUI = 0x0400, + RGUI = 0x0800, + NUM = 0x1000, + CAPS = 0x2000, + MODE = 0x4000, + RESERVED = 0x8000, + CTRL = (LCTRL | RCTRL), + SHIFT = (LSHIFT | RSHIFT), + ALT = (LALT | RALT), + GUI = (LGUI | RGUI) + } + + enum Scancode + { + UNKNOWN = 0, + A = 4, + B = 5, + C = 6, + D = 7, + E = 8, + F = 9, + G = 10, + H = 11, + I = 12, + J = 13, + K = 14, + L = 15, + M = 16, + N = 17, + O = 18, + P = 19, + Q = 20, + R = 21, + S = 22, + T = 23, + U = 24, + V = 25, + W = 26, + X = 27, + Y = 28, + Z = 29, + Num1 = 30, + Num2 = 31, + Num3 = 32, + Num4 = 33, + Num5 = 34, + Num6 = 35, + Num7 = 36, + Num8 = 37, + Num9 = 38, + Num0 = 39, + RETURN = 40, + ESCAPE = 41, + BACKSPACE = 42, + TAB = 43, + SPACE = 44, + MINUS = 45, + EQUALS = 46, + LEFTBRACKET = 47, + RIGHTBRACKET = 48, + BACKSLASH = 49, + NONUSHASH = 50, + SEMICOLON = 51, + APOSTROPHE = 52, + GRAVE = 53, + COMMA = 54, + PERIOD = 55, + SLASH = 56, + CAPSLOCK = 57, + F1 = 58, + F2 = 59, + F3 = 60, + F4 = 61, + F5 = 62, + F6 = 63, + F7 = 64, + F8 = 65, + F9 = 66, + F10 = 67, + F11 = 68, + F12 = 69, + PRINTSCREEN = 70, + SCROLLLOCK = 71, + PAUSE = 72, + INSERT = 73, + HOME = 74, + PAGEUP = 75, + DELETE = 76, + END = 77, + PAGEDOWN = 78, + RIGHT = 79, + LEFT = 80, + DOWN = 81, + UP = 82, + NUMLOCKCLEAR = 83, + KP_DIVIDE = 84, + KP_MULTIPLY = 85, + KP_MINUS = 86, + KP_PLUS = 87, + KP_ENTER = 88, + KP_1 = 89, + KP_2 = 90, + KP_3 = 91, + KP_4 = 92, + KP_5 = 93, + KP_6 = 94, + KP_7 = 95, + KP_8 = 96, + KP_9 = 97, + KP_0 = 98, + KP_PERIOD = 99, + NONUSBACKSLASH = 100, + APPLICATION = 101, + POWER = 102, + KP_EQUALS = 103, + F13 = 104, + F14 = 105, + F15 = 106, + F16 = 107, + F17 = 108, + F18 = 109, + F19 = 110, + F20 = 111, + F21 = 112, + F22 = 113, + F23 = 114, + F24 = 115, + EXECUTE = 116, + HELP = 117, + MENU = 118, + SELECT = 119, + STOP = 120, + AGAIN = 121, + UNDO = 122, + CUT = 123, + COPY = 124, + PASTE = 125, + FIND = 126, + MUTE = 127, + VOLUMEUP = 128, + VOLUMEDOWN = 129, + // not sure whether there's a reason to enable these + // LOCKINGCAPSLOCK = 130, + // LOCKINGNUMLOCK = 131, + // LOCKINGSCROLLLOCK = 132, + KP_COMMA = 133, + KP_EQUALSAS400 = 134, + INTERNATIONAL1 = 135, + INTERNATIONAL2 = 136, + INTERNATIONAL3 = 137, + INTERNATIONAL4 = 138, + INTERNATIONAL5 = 139, + INTERNATIONAL6 = 140, + INTERNATIONAL7 = 141, + INTERNATIONAL8 = 142, + INTERNATIONAL9 = 143, + LANG1 = 144, + LANG2 = 145, + LANG3 = 146, + LANG4 = 147, + LANG5 = 148, + LANG6 = 149, + LANG7 = 150, + LANG8 = 151, + LANG9 = 152, + ALTERASE = 153, + SYSREQ = 154, + CANCEL = 155, + CLEAR = 156, + PRIOR = 157, + RETURN2 = 158, + SEPARATOR = 159, + OUT = 160, + OPER = 161, + CLEARAGAIN = 162, + CRSEL = 163, + EXSEL = 164, + KP_00 = 176, + KP_000 = 177, + THOUSANDSSEPARATOR = 178, + DECIMALSEPARATOR = 179, + CURRENCYUNIT = 180, + CURRENCYSUBUNIT = 181, + KP_LEFTPAREN = 182, + KP_RIGHTPAREN = 183, + KP_LEFTBRACE = 184, + KP_RIGHTBRACE = 185, + KP_TAB = 186, + KP_BACKSPACE = 187, + KP_A = 188, + KP_B = 189, + KP_C = 190, + KP_D = 191, + KP_E = 192, + KP_F = 193, + KP_XOR = 194, + KP_POWER = 195, + KP_PERCENT = 196, + KP_LESS = 197, + KP_GREATER = 198, + KP_AMPERSAND = 199, + KP_DBLAMPERSAND = 200, + KP_VERTICALBAR = 201, + KP_DBLVERTICALBAR = 202, + KP_COLON = 203, + KP_HASH = 204, + KP_SPACE = 205, + KP_AT = 206, + KP_EXCLAM = 207, + KP_MEMSTORE = 208, + KP_MEMRECALL = 209, + KP_MEMCLEAR = 210, + KP_MEMADD = 211, + KP_MEMSUBTRACT = 212, + KP_MEMMULTIPLY = 213, + KP_MEMDIVIDE = 214, + KP_PLUSMINUS = 215, + KP_CLEAR = 216, + KP_CLEARENTRY = 217, + KP_BINARY = 218, + KP_OCTAL = 219, + KP_DECIMAL = 220, + KP_HEXADECIMAL = 221, + LCTRL = 224, + LSHIFT = 225, + LALT = 226, + LGUI = 227, + RCTRL = 228, + RSHIFT = 229, + RALT = 230, + RGUI = 231, + MODE = 257, + // These come from the USB consumer page (0x0C) + AUDIONEXT = 258, + AUDIOPREV = 259, + AUDIOSTOP = 260, + AUDIOPLAY = 261, + AUDIOMUTE = 262, + MEDIASELECT = 263, + WWW = 264, + MAIL = 265, + CALCULATOR = 266, + COMPUTER = 267, + AC_SEARCH = 268, + AC_HOME = 269, + AC_BACK = 270, + AC_FORWARD = 271, + AC_STOP = 272, + AC_REFRESH = 273, + AC_BOOKMARKS = 274, + // These come from other sources, and are mostly mac related + BRIGHTNESSDOWN = 275, + BRIGHTNESSUP = 276, + DISPLAYSWITCH = 277, + KBDILLUMTOGGLE = 278, + KBDILLUMDOWN = 279, + KBDILLUMUP = 280, + EJECT = 281, + SLEEP = 282, + APP1 = 283, + APP2 = 284, + // This is not a key, simply marks the number of scancodes + // so that you know how big to make your arrays. + SDL_NUM_SCANCODES = 512 + } + + enum State : byte + { + Released = 0, + Pressed = 1 + } + + [Flags] + enum SystemFlags : uint + { + Default = 0, + TIMER = 0x00000001, + AUDIO = 0x00000010, + VIDEO = 0x00000020, + JOYSTICK = 0x00000200, + HAPTIC = 0x00001000, + GAMECONTROLLER = 0x00002000, + NOPARACHUTE = 0x00100000, + EVERYTHING = TIMER | AUDIO | VIDEO | + JOYSTICK | HAPTIC | GAMECONTROLLER + } + + enum WindowEventID : byte + { + NONE, + SHOWN, + HIDDEN, + EXPOSED, + MOVED, + RESIZED, + SIZE_CHANGED, + MINIMIZED, + MAXIMIZED, + RESTORED, + ENTER, + LEAVE, + FOCUS_GAINED, + FOCUS_LOST, + CLOSE, + } + + enum WindowFlags + { + Default = 0, + FULLSCREEN = 0x00000001, + OPENGL = 0x00000002, + SHOWN = 0x00000004, + HIDDEN = 0x00000008, + BORDERLESS = 0x00000010, + RESIZABLE = 0x00000020, + MINIMIZED = 0x00000040, + MAXIMIZED = 0x00000080, + INPUT_GRABBED = 0x00000100, + INPUT_FOCUS = 0x00000200, + MOUSE_FOCUS = 0x00000400, + FULLSCREEN_DESKTOP = (FULLSCREEN | 0x00001000), + FOREIGN = 0x00000800, + ALLOW_HIGHDPI = 0x00002000, + } + + #endregion + + #region Structs + + struct DisplayMode + { + public uint Format; + public int Width; + public int Height; + public int RefreshRate; + public IntPtr DriverData; + } + + [StructLayout(LayoutKind.Explicit)] + struct Event + { + [FieldOffset(0)] + public EventType Type; + [FieldOffset(0)] + public WindowEvent Window; + [FieldOffset(0)] + public KeyboardEvent Key; + [FieldOffset(0)] + public TextEditingEvent Edit; + [FieldOffset(0)] + public TextInputEvent Text; + [FieldOffset(0)] + public MouseMotionEvent Motion; + [FieldOffset(0)] + public MouseButtonEvent Button; + [FieldOffset(0)] + public MouseWheelEvent Wheel; + [FieldOffset(0)] + public JoyAxisEvent JoyAxis; +#if false + [FieldOffset(0)] + public JoyBallEvent jball; + [FieldOffset(0)] + public JoyHatEvent jhat; + [FieldOffset(0)] + public JoyButtonEvent jbutton; + [FieldOffset(0)] + public JoyDeviceEvent jdevice; + [FieldOffset(0)] + public ControllerAxisEvent caxis; + [FieldOffset(0)] + public ControllerButtonEvent cbutton; + [FieldOffset(0)] + public ControllerDeviceEvent cdevice; + [FieldOffset(0)] + public QuitEvent quit; + [FieldOffset(0)] + public UserEvent user; + [FieldOffset(0)] + public SysWMEvent syswm; + [FieldOffset(0)] + public TouchFingerEvent tfinger; + [FieldOffset(0)] + public MultiGestureEvent mgesture; + [FieldOffset(0)] + public DollarGestureEvent dgesture; + [FieldOffset(0)] + public DropEvent drop; +#endif + } + + struct JoyAxisEvent + { + public EventType Type; + public UInt32 Timestamp; + public Int32 Which; // SDL_JoystickID + public byte Axis; + byte padding1; + byte padding2; + byte padding3; + public Int16 Value; + UInt16 padding4; + } + + struct KeyboardEvent + { + public EventType Type; + public uint Timestamp; + public uint WindowID; + public State State; + public byte Repeat; + byte padding2; + byte padding3; + public Keysym Keysym; + } + + struct Keysym + { + public Scancode Scancode; + public Keycode Sym; + public Keymod Mod; + [Obsolete] + public uint Unicode; + } + + struct MouseButtonEvent + { + public EventType Type; + public UInt32 Timestamp; + public UInt32 WindowID; + public UInt32 Which; + public Button Button; + public State State; + byte padding1; + byte padding2; + public Int32 X; + public Int32 Y; + } + + struct MouseMotionEvent + { + public EventType Type; + public uint Timestamp; + public uint WindowID; + public uint Which; + public State State; + byte padding1; + byte padding2; + byte padding3; + public Int32 X; + public Int32 Y; + public Int32 Xrel; + public Int32 Yrel; + } + + struct MouseWheelEvent + { + public EventType Type; + public uint Timestamp; + public uint WindowID; + public uint Which; + public int X; + public int Y; + } + + struct Rect + { + public int X; + public int Y; + public int Width; + public int Height; + } + + struct TextEditingEvent + { + public const int TextSize = 32; + + public EventType Type; + public UInt32 Timestamp; + public UInt32 WindowID; + public unsafe fixed byte Text[TextSize]; + public Int32 Start; + public Int32 Length; + } + + struct TextInputEvent + { + public const int TextSize = 32; + + public EventType Type; + public UInt32 Timestamp; + public UInt32 WindowID; + public unsafe fixed byte Text[TextSize]; + } + + struct Version + { + public byte Major; + public byte Minor; + public byte Patch; + + public int Number + { + get { return 1000 * Major + 100 * Minor + Patch; } + } + } + + struct WindowEvent + { + public EventType Type; + public UInt32 Timestamp; + public UInt32 WindowID; + public WindowEventID Event; + byte padding1; + byte padding2; + byte padding3; + public Int32 Data1; + public Int32 Data2; + } + + #endregion } diff --git a/Source/OpenTK/Platform/SDL2/Sdl2DisplayDeviceDriver.cs b/Source/OpenTK/Platform/SDL2/Sdl2DisplayDeviceDriver.cs index 3b3104b0..5bd34689 100644 --- a/Source/OpenTK/Platform/SDL2/Sdl2DisplayDeviceDriver.cs +++ b/Source/OpenTK/Platform/SDL2/Sdl2DisplayDeviceDriver.cs @@ -36,33 +36,33 @@ namespace OpenTK.Platform.SDL2 { public Sdl2DisplayDeviceDriver() { - int displays = SDL.SDL_GetNumVideoDisplays(); + int displays = SDL.GetNumVideoDisplays(); for (int d = 0; d < displays; d++) { - SDL.SDL_Rect bounds; - SDL.SDL_GetDisplayBounds(d, out bounds); + Rect bounds; + SDL.GetDisplayBounds(d, out bounds); - SDL.SDL_DisplayMode current_mode; - SDL.SDL_GetCurrentDisplayMode(d, out current_mode); + DisplayMode current_mode; + SDL.GetCurrentDisplayMode(d, out current_mode); var mode_list = new List(); - int num_modes = SDL.SDL_GetNumDisplayModes(d); + int num_modes = SDL.GetNumDisplayModes(d); for (int m = 0; m < num_modes; m++) { - SDL.SDL_DisplayMode sdl_mode; - SDL.SDL_GetDisplayMode(d, m, out sdl_mode); + DisplayMode sdl_mode; + SDL.GetDisplayMode(d, m, out sdl_mode); mode_list.Add(new DisplayResolution( - bounds.x, bounds.y, - sdl_mode.w, sdl_mode.h, - TranslateFormat(sdl_mode.format), - sdl_mode.refresh_rate)); + bounds.X, bounds.Y, + sdl_mode.Width, sdl_mode.Height, + TranslateFormat(sdl_mode.Format), + sdl_mode.RefreshRate)); } var current_resolution = new DisplayResolution( - bounds.x, bounds.y, - current_mode.w, current_mode.h, - TranslateFormat(current_mode.format), - current_mode.refresh_rate); + bounds.X, bounds.Y, + current_mode.Width, current_mode.Height, + TranslateFormat(current_mode.Format), + current_mode.RefreshRate); var device = new DisplayDevice( current_resolution, d == 0, mode_list, TranslateBounds(bounds), d); @@ -79,13 +79,13 @@ namespace OpenTK.Platform.SDL2 { int bpp; uint a, r, g, b; - SDL.SDL_PixelFormatEnumToMasks(format, out bpp, out r, out g, out b, out a); + SDL.PixelFormatEnumToMasks(format, out bpp, out r, out g, out b, out a); return bpp; } - Rectangle TranslateBounds(SDL.SDL_Rect rect) + Rectangle TranslateBounds(Rect rect) { - return new Rectangle(rect.x, rect.y, rect.w, rect.h); + return new Rectangle(rect.X, rect.Y, rect.Width, rect.Height); } #endregion diff --git a/Source/OpenTK/Platform/SDL2/Sdl2GraphicsContext.cs b/Source/OpenTK/Platform/SDL2/Sdl2GraphicsContext.cs index 7bd759bb..5b117d28 100644 --- a/Source/OpenTK/Platform/SDL2/Sdl2GraphicsContext.cs +++ b/Source/OpenTK/Platform/SDL2/Sdl2GraphicsContext.cs @@ -50,7 +50,7 @@ namespace OpenTK.Platform.SDL2 else { Window = new Sdl2WindowInfo( - SDL.SDL_CreateWindowFrom(window.Handle), + SDL.CreateWindowFrom(window.Handle), null); } } @@ -64,11 +64,11 @@ namespace OpenTK.Platform.SDL2 lock (SDL.Sync) { SetGLAttributes(mode, shareContext, major, minor, flags); - SdlContext = new ContextHandle(SDL.SDL_GL_CreateContext(Window.Handle)); + SdlContext = new ContextHandle(SDL.GL.CreateContext(Window.Handle)); } if (SdlContext == ContextHandle.Zero) { - var error = SDL.SDL_GetError(); + var error = SDL.GetError(); Debug.Print("SDL2 failed to create OpenGL context: {0}", error); throw new GraphicsContextException(error); } @@ -84,85 +84,93 @@ namespace OpenTK.Platform.SDL2 { if (mode.AccumulatorFormat.BitsPerPixel > 0) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_ACCUM_ALPHA_SIZE, mode.AccumulatorFormat.Alpha); - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_ACCUM_RED_SIZE, mode.AccumulatorFormat.Red); - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_ACCUM_GREEN_SIZE, mode.AccumulatorFormat.Green); - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_ACCUM_BLUE_SIZE, mode.AccumulatorFormat.Blue); + SDL.GL.SetAttribute(ContextAttribute.ACCUM_ALPHA_SIZE, mode.AccumulatorFormat.Alpha); + SDL.GL.SetAttribute(ContextAttribute.ACCUM_RED_SIZE, mode.AccumulatorFormat.Red); + SDL.GL.SetAttribute(ContextAttribute.ACCUM_GREEN_SIZE, mode.AccumulatorFormat.Green); + SDL.GL.SetAttribute(ContextAttribute.ACCUM_BLUE_SIZE, mode.AccumulatorFormat.Blue); } if (mode.Buffers > 0) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_DOUBLEBUFFER, mode.Buffers > 1 ? 1 : 0); + SDL.GL.SetAttribute(ContextAttribute.DOUBLEBUFFER, mode.Buffers > 1 ? 1 : 0); } if (mode.ColorFormat > 0) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_ALPHA_SIZE, mode.ColorFormat.Alpha); - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_RED_SIZE, mode.ColorFormat.Red); - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_GREEN_SIZE, mode.ColorFormat.Green); - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_BLUE_SIZE, mode.ColorFormat.Blue); + SDL.GL.SetAttribute(ContextAttribute.ALPHA_SIZE, mode.ColorFormat.Alpha); + SDL.GL.SetAttribute(ContextAttribute.RED_SIZE, mode.ColorFormat.Red); + SDL.GL.SetAttribute(ContextAttribute.GREEN_SIZE, mode.ColorFormat.Green); + SDL.GL.SetAttribute(ContextAttribute.BLUE_SIZE, mode.ColorFormat.Blue); } if (mode.Depth > 0) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_DEPTH_SIZE, mode.Depth); + SDL.GL.SetAttribute(ContextAttribute.DEPTH_SIZE, mode.Depth); } if (mode.Samples > 0) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_MULTISAMPLEBUFFERS, 1); - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_MULTISAMPLESAMPLES, mode.Samples); + SDL.GL.SetAttribute(ContextAttribute.MULTISAMPLEBUFFERS, 1); + SDL.GL.SetAttribute(ContextAttribute.MULTISAMPLESAMPLES, mode.Samples); } if (mode.Stencil > 0) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_STENCIL_SIZE, mode.Stereo ? 1 : 0); + SDL.GL.SetAttribute(ContextAttribute.STENCIL_SIZE, mode.Stereo ? 1 : 0); } if (mode.Stereo) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_STEREO, 1); + SDL.GL.SetAttribute(ContextAttribute.STEREO, 1); } if (major > 0) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_CONTEXT_MAJOR_VERSION, major); - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_CONTEXT_MINOR_VERSION, minor); + SDL.GL.SetAttribute(ContextAttribute.CONTEXT_MAJOR_VERSION, major); + SDL.GL.SetAttribute(ContextAttribute.CONTEXT_MINOR_VERSION, minor); } if ((flags & GraphicsContextFlags.Debug) != 0) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_CONTEXT_FLAGS, (int)SDL.SDL_GLcontext.SDL_GL_CONTEXT_DEBUG_FLAG); - } - - if ((flags & GraphicsContextFlags.Embedded) != 0) - { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_CONTEXT_EGL, 1); - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_CONTEXT_PROFILE_MASK, (int)SDL.SDL_GLprofile.SDL_GL_CONTEXT_PROFILE_ES); - } - - if ((flags & GraphicsContextFlags.ForwardCompatible) != 0) - { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_CONTEXT_PROFILE_MASK, (int)SDL.SDL_GLprofile.SDL_GL_CONTEXT_PROFILE_CORE); + SDL.GL.SetAttribute(ContextAttribute.CONTEXT_FLAGS, ContextFlags.DEBUG); } /* if ((flags & GraphicsContextFlags.Robust) != 0) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_CONTEXT_FLAGS, (int)SDL.SDL_GLcontext.SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG); + SDL.GL.SetAttribute(ContextAttribute.CONTEXT_FLAGS, ContextFlags.ROBUST_ACCESS_FLAG); } if ((flags & GraphicsContextFlags.ResetIsolation) != 0) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_CONTEXT_FLAGS, (int)SDL.SDL_GLcontext.SDL_GL_CONTEXT_RESET_ISOLATION_FLAG); + SDL.GL.SetAttribute(ContextAttribute.CONTEXT_FLAGS, ContextFlags.RESET_ISOLATION_FLAG); } */ + { + ContextProfileFlags cpflags = 0; + if ((flags & GraphicsContextFlags.Embedded) != 0) + { + cpflags |= ContextProfileFlags.ES; + SDL.GL.SetAttribute(ContextAttribute.CONTEXT_EGL, 1); + } + + if ((flags & GraphicsContextFlags.ForwardCompatible) != 0) + { + cpflags |= ContextProfileFlags.CORE; + } + + if (cpflags != 0) + { + SDL.GL.SetAttribute(ContextAttribute.CONTEXT_PROFILE_MASK, cpflags); + } + } + if (shareContext != null) { if (shareContext.IsCurrent) { - SDL.SDL_GL_SetAttribute(SDL.SDL_GLattr.SDL_GL_SHARE_WITH_CURRENT_CONTEXT, 1); + SDL.GL.SetAttribute(ContextAttribute.SHARE_WITH_CURRENT_CONTEXT, 1); } else { @@ -177,7 +185,7 @@ namespace OpenTK.Platform.SDL2 public override void SwapBuffers() { - SDL.SDL_GL_SwapWindow(Window.Handle); + SDL.GL.SwapWindow(Window.Handle); } public override void MakeCurrent(IWindowInfo window) @@ -185,22 +193,22 @@ namespace OpenTK.Platform.SDL2 int result = 0; if (window != null) { - result = SDL.SDL_GL_MakeCurrent(window.Handle, SdlContext.Handle); + result = SDL.GL.MakeCurrent(window.Handle, SdlContext.Handle); } else { - result = SDL.SDL_GL_MakeCurrent(IntPtr.Zero, IntPtr.Zero); + result = SDL.GL.MakeCurrent(IntPtr.Zero, IntPtr.Zero); } if (result < 0) { - Debug.Print("SDL2 MakeCurrent failed with: {0}", SDL.SDL_GetError()); + Debug.Print("SDL2 MakeCurrent failed with: {0}", SDL.GetError()); } } public override IntPtr GetAddress(string function) { - return SDL.SDL_GL_GetProcAddress(function); + return SDL.GL.GetProcAddress(function); } public override bool IsCurrent @@ -215,13 +223,13 @@ namespace OpenTK.Platform.SDL2 { get { - return SDL.SDL_GL_GetSwapInterval(); + return SDL.GL.GetSwapInterval(); } set { - if (SDL.SDL_GL_SetSwapInterval(value) < 0) + if (SDL.GL.SetSwapInterval(value) < 0) { - Debug.Print("SDL2 failed to set swap interval: {0}", SDL.SDL_GetError()); + Debug.Print("SDL2 failed to set swap interval: {0}", SDL.GetError()); } } } @@ -239,7 +247,7 @@ namespace OpenTK.Platform.SDL2 Debug.Print("Disposing {0}", GetType()); lock (SDL.Sync) { - SDL.SDL_GL_DeleteContext(SdlContext.Handle); + SDL.GL.DeleteContext(SdlContext.Handle); } } else diff --git a/Source/OpenTK/Platform/SDL2/Sdl2InputDriver.cs b/Source/OpenTK/Platform/SDL2/Sdl2InputDriver.cs index 16c8c354..6c9bb529 100644 --- a/Source/OpenTK/Platform/SDL2/Sdl2InputDriver.cs +++ b/Source/OpenTK/Platform/SDL2/Sdl2InputDriver.cs @@ -45,22 +45,18 @@ namespace OpenTK.Platform.SDL2 readonly Sdl2Mouse mouse_driver = new Sdl2Mouse(); readonly Sdl2JoystickDriver joystick_driver = new Sdl2JoystickDriver(); - readonly SDL.SDL_EventFilter EventFilterDelegate = FilterInputEvents; - readonly IntPtr EventFilterPointer; + readonly EventFilter EventFilterDelegate = FilterInputEvents; static int count; bool disposed; public Sdl2InputDriver() { - EventFilterPointer = Marshal.GetFunctionPointerForDelegate( - EventFilterDelegate); - lock (SDL.Sync) { driver_handle = new IntPtr(count++); DriverHandles.Add(driver_handle, this); - SDL.SDL_AddEventWatch(EventFilterPointer, driver_handle); + SDL.AddEventWatch(EventFilterDelegate, driver_handle); } } @@ -70,29 +66,29 @@ namespace OpenTK.Platform.SDL2 { try { - SDL.SDL_Event ev = *(SDL.SDL_Event*)e; + Event ev = *(Event*)e; Sdl2InputDriver driver; if (DriverHandles.TryGetValue(driver_handle, out driver)) { - switch (ev.type) + switch (ev.Type) { - case SDL.SDL_EventType.SDL_KEYDOWN: - case SDL.SDL_EventType.SDL_KEYUP: - driver.keyboard_driver.ProcessKeyboardEvent(ev.key); + case EventType.KEYDOWN: + case EventType.KEYUP: + driver.keyboard_driver.ProcessKeyboardEvent(ev.Key); break; - case SDL.SDL_EventType.SDL_MOUSEBUTTONDOWN: - case SDL.SDL_EventType.SDL_MOUSEBUTTONUP: - driver.mouse_driver.ProcessMouseEvent(ev.button); + case EventType.MOUSEBUTTONDOWN: + case EventType.MOUSEBUTTONUP: + driver.mouse_driver.ProcessMouseEvent(ev.Button); break; - case SDL.SDL_EventType.SDL_MOUSEMOTION: - driver.mouse_driver.ProcessMouseEvent(ev.motion); + case EventType.MOUSEMOTION: + driver.mouse_driver.ProcessMouseEvent(ev.Motion); break; - case SDL.SDL_EventType.SDL_MOUSEWHEEL: - driver.mouse_driver.ProcessWheelEvent(ev.wheel); + case EventType.MOUSEWHEEL: + driver.mouse_driver.ProcessWheelEvent(ev.Wheel); break; } } @@ -192,7 +188,7 @@ namespace OpenTK.Platform.SDL2 joystick_driver.Dispose(); lock (SDL.Sync) { - SDL.SDL_DelEventWatch(EventFilterPointer, IntPtr.Zero); + SDL.DelEventWatch(EventFilterDelegate, IntPtr.Zero); } DriverHandles.Remove(driver_handle); } diff --git a/Source/OpenTK/Platform/SDL2/Sdl2JoystickDriver.cs b/Source/OpenTK/Platform/SDL2/Sdl2JoystickDriver.cs index a0741d11..729cee13 100644 --- a/Source/OpenTK/Platform/SDL2/Sdl2JoystickDriver.cs +++ b/Source/OpenTK/Platform/SDL2/Sdl2JoystickDriver.cs @@ -60,7 +60,7 @@ namespace OpenTK.Platform.SDL2 { joysticks.Clear(); - int count = SDL.SDL_NumJoysticks(); + int count = SDL.NumJoysticks(); for (int i = 0; i < count; i++) { JoystickDevice joystick = null; @@ -69,16 +69,16 @@ namespace OpenTK.Platform.SDL2 int num_hats = 0; int num_balls = 0; - IntPtr handle = SDL.SDL_JoystickOpen(i); + IntPtr handle = SDL.JoystickOpen(i); if (handle != IntPtr.Zero) { - num_axes = SDL.SDL_JoystickNumAxes(handle); - num_buttons = SDL.SDL_JoystickNumButtons(handle); - num_hats = SDL.SDL_JoystickNumHats(handle); - num_balls = SDL.SDL_JoystickNumBalls(handle); + num_axes = SDL.JoystickNumAxes(handle); + num_buttons = SDL.JoystickNumButtons(handle); + num_hats = SDL.JoystickNumHats(handle); + num_balls = SDL.JoystickNumBalls(handle); joystick = new JoystickDevice(i, num_axes, num_buttons); - joystick.Description = SDL.SDL_JoystickName(handle); + joystick.Description = SDL.JoystickName(handle); joystick.Details.Handle = handle; joystick.Details.HatCount = num_hats; joystick.Details.BallCount = num_balls; @@ -101,7 +101,7 @@ namespace OpenTK.Platform.SDL2 public void Poll() { - SDL.SDL_JoystickUpdate(); + SDL.JoystickUpdate(); foreach (var j in joysticks) { var joystick = (JoystickDevice)j; @@ -110,13 +110,13 @@ namespace OpenTK.Platform.SDL2 for (int i = 0; i < joystick.Axis.Count; i++) { var axis = JoystickAxis.Axis0 + i; - joystick.SetAxis(axis, SDL.SDL_JoystickGetAxis(handle, i) * joystick.Details.RangeMultiplier); + joystick.SetAxis(axis, SDL.JoystickGetAxis(handle, i) * joystick.Details.RangeMultiplier); } for (int i = 0; i < joystick.Button.Count; i++) { var button = JoystickButton.Button0 + i; - joystick.SetButton(button, SDL.SDL_JoystickGetButton(handle, i) != 0); + joystick.SetButton(button, SDL.JoystickGetButton(handle, i) != 0); } } } @@ -161,7 +161,7 @@ namespace OpenTK.Platform.SDL2 { var joystick = (JoystickDevice)j; IntPtr handle = joystick.Details.Handle; - SDL.SDL_JoystickClose(handle); + SDL.JoystickClose(handle); } joysticks.Clear(); diff --git a/Source/OpenTK/Platform/SDL2/Sdl2KeyMap.cs b/Source/OpenTK/Platform/SDL2/Sdl2KeyMap.cs index a86c6d9b..9b01b2f4 100644 --- a/Source/OpenTK/Platform/SDL2/Sdl2KeyMap.cs +++ b/Source/OpenTK/Platform/SDL2/Sdl2KeyMap.cs @@ -31,93 +31,93 @@ using OpenTK.Input; namespace OpenTK.Platform.SDL2 { - using Code = SDL.SDL_Scancode; + using Code = Scancode; - class Sdl2KeyMap : Dictionary + class Sdl2KeyMap : Dictionary { public Sdl2KeyMap() { - Add(Code.SDL_SCANCODE_ESCAPE, Key.Escape); + Add(Code.ESCAPE, Key.Escape); // Function keys for (int i = 0; i < 12; i++) { - Add(Code.SDL_SCANCODE_F1 + i, Key.F1 + i); + Add(Code.F1 + i, Key.F1 + i); } // Number keys (0-9) - Add(Code.SDL_SCANCODE_0, Key.Number0); + Add(Code.Num0, Key.Number0); for (int i = 0; i < 9; i++) { - Add(Code.SDL_SCANCODE_1 + i, Key.Number1 + i); + Add(Code.Num1 + i, Key.Number1 + i); } // Letters (A-Z) for (int i = 0; i < 26; i++) { - Add(Code.SDL_SCANCODE_A + i, Key.A + i); + Add(Code.A + i, Key.A + i); } - Add(Code.SDL_SCANCODE_TAB, Key.Tab); - Add(Code.SDL_SCANCODE_CAPSLOCK, Key.CapsLock); - Add(Code.SDL_SCANCODE_LCTRL, Key.ControlLeft); - Add(Code.SDL_SCANCODE_LSHIFT, Key.ShiftLeft); - Add(Code.SDL_SCANCODE_LALT, Key.WinLeft); - Add(Code.SDL_SCANCODE_MENU, Key.AltLeft); - Add(Code.SDL_SCANCODE_SPACE, Key.Space); - Add(Code.SDL_SCANCODE_RALT, Key.AltRight); + Add(Code.TAB, Key.Tab); + Add(Code.CAPSLOCK, Key.CapsLock); + Add(Code.LCTRL, Key.ControlLeft); + Add(Code.LSHIFT, Key.ShiftLeft); + Add(Code.LALT, Key.WinLeft); + Add(Code.MENU, Key.AltLeft); + Add(Code.SPACE, Key.Space); + Add(Code.RALT, Key.AltRight); //Add(Code., Key.WinRight); - Add(Code.SDL_SCANCODE_APPLICATION, Key.Menu); - Add(Code.SDL_SCANCODE_RCTRL, Key.ControlRight); - Add(Code.SDL_SCANCODE_RSHIFT, Key.ShiftRight); - Add(Code.SDL_SCANCODE_RETURN, Key.Enter); - Add(Code.SDL_SCANCODE_BACKSPACE, Key.BackSpace); + Add(Code.APPLICATION, Key.Menu); + Add(Code.RCTRL, Key.ControlRight); + Add(Code.RSHIFT, Key.ShiftRight); + Add(Code.RETURN, Key.Enter); + Add(Code.BACKSPACE, Key.BackSpace); - Add(Code.SDL_SCANCODE_SEMICOLON, Key.Semicolon); // Varies by keyboard, ;: on Win2K/US - Add(Code.SDL_SCANCODE_SLASH, Key.Slash); // Varies by keyboard, /? on Win2K/US - Add(Code.SDL_SCANCODE_GRAVE, Key.Tilde); // Varies by keyboard, `~ on Win2K/US - Add(Code.SDL_SCANCODE_LEFTBRACKET, Key.BracketLeft); // Varies by keyboard, [{ on Win2K/US - Add(Code.SDL_SCANCODE_BACKSLASH, Key.BackSlash); // Varies by keyboard, \| on Win2K/US - Add(Code.SDL_SCANCODE_RIGHTBRACKET, Key.BracketRight); // Varies by keyboard, ]} on Win2K/US - Add(Code.SDL_SCANCODE_APOSTROPHE, Key.Quote); // Varies by keyboard, '" on Win2K/US - Add(Code.SDL_SCANCODE_EQUALS, Key.Plus); - Add(Code.SDL_SCANCODE_COMMA, Key.Comma); // Invariant: , - Add(Code.SDL_SCANCODE_MINUS, Key.Minus); // Invariant: - - Add(Code.SDL_SCANCODE_PERIOD, Key.Period); // Invariant: . + Add(Code.SEMICOLON, Key.Semicolon); // Varies by keyboard, ;: on Win2K/US + Add(Code.SLASH, Key.Slash); // Varies by keyboard, /? on Win2K/US + Add(Code.GRAVE, Key.Tilde); // Varies by keyboard, `~ on Win2K/US + Add(Code.LEFTBRACKET, Key.BracketLeft); // Varies by keyboard, [{ on Win2K/US + Add(Code.BACKSLASH, Key.BackSlash); // Varies by keyboard, \| on Win2K/US + Add(Code.RIGHTBRACKET, Key.BracketRight); // Varies by keyboard, ]} on Win2K/US + Add(Code.APOSTROPHE, Key.Quote); // Varies by keyboard, '" on Win2K/US + Add(Code.EQUALS, Key.Plus); + Add(Code.COMMA, Key.Comma); // Invariant: , + Add(Code.MINUS, Key.Minus); // Invariant: - + Add(Code.PERIOD, Key.Period); // Invariant: . - Add(Code.SDL_SCANCODE_HOME, Key.Home); - Add(Code.SDL_SCANCODE_END, Key.End); - Add(Code.SDL_SCANCODE_DELETE, Key.Delete); - Add(Code.SDL_SCANCODE_PAGEUP, Key.PageUp); - Add(Code.SDL_SCANCODE_PAGEDOWN, Key.PageDown); - Add(Code.SDL_SCANCODE_PAUSE, Key.Pause); - Add(Code.SDL_SCANCODE_NUMLOCKCLEAR, Key.NumLock); + Add(Code.HOME, Key.Home); + Add(Code.END, Key.End); + Add(Code.DELETE, Key.Delete); + Add(Code.PAGEUP, Key.PageUp); + Add(Code.PAGEDOWN, Key.PageDown); + Add(Code.PAUSE, Key.Pause); + Add(Code.NUMLOCKCLEAR, Key.NumLock); - Add(Code.SDL_SCANCODE_SCROLLLOCK, Key.ScrollLock); - Add(Code.SDL_SCANCODE_PRINTSCREEN, Key.PrintScreen); - Add(Code.SDL_SCANCODE_CLEAR, Key.Clear); - Add(Code.SDL_SCANCODE_INSERT, Key.Insert); + Add(Code.SCROLLLOCK, Key.ScrollLock); + Add(Code.PRINTSCREEN, Key.PrintScreen); + Add(Code.CLEAR, Key.Clear); + Add(Code.INSERT, Key.Insert); - Add(Code.SDL_SCANCODE_SLEEP, Key.Sleep); + Add(Code.SLEEP, Key.Sleep); // Keypad for (int i = 0; i < 9; i++) { - Add(Code.SDL_SCANCODE_KP_1 + i, Key.Keypad1 + i); + Add(Code.KP_1 + i, Key.Keypad1 + i); } - Add(Code.SDL_SCANCODE_KP_0, Key.Keypad0); // Note: SDL2 goes KP_1..KP_9, then KP_0 + Add(Code.KP_0, Key.Keypad0); // Note: SDL2 goes KP_1..KP_9, then KP_0 - Add(Code.SDL_SCANCODE_KP_DECIMAL, Key.KeypadDecimal); - Add(Code.SDL_SCANCODE_KP_PLUS, Key.KeypadAdd); - Add(Code.SDL_SCANCODE_KP_MINUS, Key.KeypadSubtract); - Add(Code.SDL_SCANCODE_KP_DIVIDE, Key.KeypadDivide); - Add(Code.SDL_SCANCODE_KP_MULTIPLY, Key.KeypadMultiply); + Add(Code.KP_DECIMAL, Key.KeypadDecimal); + Add(Code.KP_PLUS, Key.KeypadAdd); + Add(Code.KP_MINUS, Key.KeypadSubtract); + Add(Code.KP_DIVIDE, Key.KeypadDivide); + Add(Code.KP_MULTIPLY, Key.KeypadMultiply); // Navigation - Add(Code.SDL_SCANCODE_UP, Key.Up); - Add(Code.SDL_SCANCODE_DOWN, Key.Down); - Add(Code.SDL_SCANCODE_LEFT, Key.Left); - Add(Code.SDL_SCANCODE_RIGHT, Key.Right); + Add(Code.UP, Key.Up); + Add(Code.DOWN, Key.Down); + Add(Code.LEFT, Key.Left); + Add(Code.RIGHT, Key.Right); } } } diff --git a/Source/OpenTK/Platform/SDL2/Sdl2Keyboard.cs b/Source/OpenTK/Platform/SDL2/Sdl2Keyboard.cs index 5bc9c7a7..99a1055d 100644 --- a/Source/OpenTK/Platform/SDL2/Sdl2Keyboard.cs +++ b/Source/OpenTK/Platform/SDL2/Sdl2Keyboard.cs @@ -64,29 +64,29 @@ namespace OpenTK.Platform.SDL2 // Fixme: this does not appear to work as expected. void UpdateModifiers() { - SDL.SDL_Keymod mod = SDL.SDL_GetModState(); + Keymod mod = SDL.GetModState(); - state.SetKeyState(Key.LAlt, (byte)SDL.SDL_Scancode.SDL_SCANCODE_LALT, (mod & SDL.SDL_Keymod.KMOD_LALT) != 0); - state.SetKeyState(Key.RAlt, (byte)SDL.SDL_Scancode.SDL_SCANCODE_RALT, (mod & SDL.SDL_Keymod.KMOD_RALT) != 0); - state.SetKeyState(Key.LControl, (byte)SDL.SDL_Scancode.SDL_SCANCODE_LCTRL, (mod & SDL.SDL_Keymod.KMOD_LCTRL) != 0); - state.SetKeyState(Key.RControl, (byte)SDL.SDL_Scancode.SDL_SCANCODE_RCTRL, (mod & SDL.SDL_Keymod.KMOD_RCTRL) != 0); - state.SetKeyState(Key.LShift, (byte)SDL.SDL_Scancode.SDL_SCANCODE_LSHIFT, (mod & SDL.SDL_Keymod.KMOD_LSHIFT) != 0); - state.SetKeyState(Key.RShift, (byte)SDL.SDL_Scancode.SDL_SCANCODE_RSHIFT, (mod & SDL.SDL_Keymod.KMOD_RSHIFT) != 0); - state.SetKeyState(Key.Menu, (byte)SDL.SDL_Scancode.SDL_SCANCODE_APPLICATION, (mod & SDL.SDL_Keymod.KMOD_GUI) != 0); - state.SetKeyState(Key.CapsLock, (byte)SDL.SDL_Scancode.SDL_SCANCODE_CAPSLOCK, (mod & SDL.SDL_Keymod.KMOD_CAPS) != 0); - state.SetKeyState(Key.NumLock, (byte)SDL.SDL_Scancode.SDL_SCANCODE_NUMLOCKCLEAR, (mod & SDL.SDL_Keymod.KMOD_NUM) != 0); - //state.SetKeyState(Key., (byte)SDL.SDL_Scancode.SDL_SCANCODE_MODE, (mod & SDL.SDL_Keymod.KMOD_MODE) != 0); + state.SetKeyState(Key.LAlt, (byte)Scancode.LALT, (mod & Keymod.LALT) != 0); + state.SetKeyState(Key.RAlt, (byte)Scancode.RALT, (mod & Keymod.RALT) != 0); + state.SetKeyState(Key.LControl, (byte)Scancode.LCTRL, (mod & Keymod.LCTRL) != 0); + state.SetKeyState(Key.RControl, (byte)Scancode.RCTRL, (mod & Keymod.CTRL) != 0); + state.SetKeyState(Key.LShift, (byte)Scancode.LSHIFT, (mod & Keymod.LSHIFT) != 0); + state.SetKeyState(Key.RShift, (byte)Scancode.RSHIFT, (mod & Keymod.RSHIFT) != 0); + state.SetKeyState(Key.Menu, (byte)Scancode.APPLICATION, (mod & Keymod.GUI) != 0); + state.SetKeyState(Key.CapsLock, (byte)Scancode.CAPSLOCK, (mod & Keymod.CAPS) != 0); + state.SetKeyState(Key.NumLock, (byte)Scancode.NUMLOCKCLEAR, (mod & Keymod.NUM) != 0); + //state.SetKeyState(Key., (byte)Scancode.MODE, (mod & Keymod.MODE) != 0); } #endregion #region Internal Members - internal void ProcessKeyboardEvent(SDL.SDL_KeyboardEvent e) + internal void ProcessKeyboardEvent(KeyboardEvent e) { Key key; - bool pressed = e.state != 0; - var scancode = e.keysym.scancode; + bool pressed = e.State != 0; + var scancode = e.Keysym.Scancode; if (KeyMap.TryGetValue(scancode, out key)) { state.SetKeyState(key, (byte)scancode, pressed); diff --git a/Source/OpenTK/Platform/SDL2/Sdl2Mouse.cs b/Source/OpenTK/Platform/SDL2/Sdl2Mouse.cs index 31d70729..ffd8cc38 100644 --- a/Source/OpenTK/Platform/SDL2/Sdl2Mouse.cs +++ b/Source/OpenTK/Platform/SDL2/Sdl2Mouse.cs @@ -54,23 +54,23 @@ namespace OpenTK.Platform.SDL2 #region Private Members - MouseButton TranslateButton(uint button) + MouseButton TranslateButton(Button button) { switch (button) { - case SDL.SDL_BUTTON_LEFT: + case Button.Left: return MouseButton.Left; - case SDL.SDL_BUTTON_RIGHT: + case Button.Right: return MouseButton.Right; - case SDL.SDL_BUTTON_MIDDLE: + case Button.Middle: return MouseButton.Middle; - case SDL.SDL_BUTTON_X1: + case Button.X1: return MouseButton.Button1; - case SDL.SDL_BUTTON_X2: + case Button.X2: return MouseButton.Button2; default: @@ -95,24 +95,24 @@ namespace OpenTK.Platform.SDL2 #region Public Members - public void ProcessWheelEvent(SDL.SDL_MouseWheelEvent wheel) + public void ProcessWheelEvent(MouseWheelEvent wheel) { - state.WheelPrecise += wheel.y; - mice[0].WheelPrecise += wheel.y; + state.WheelPrecise += wheel.Y; + mice[0].WheelPrecise += wheel.Y; } - public void ProcessMouseEvent(SDL.SDL_MouseMotionEvent motion) + public void ProcessMouseEvent(MouseMotionEvent motion) { - state.X += motion.xrel; - state.Y += motion.yrel; - mice[0].Position = new Point(motion.x, motion.y); + state.X += motion.Xrel; + state.Y += motion.Yrel; + mice[0].Position = new Point(motion.X, motion.Y); } - public void ProcessMouseEvent(SDL.SDL_MouseButtonEvent button) + public void ProcessMouseEvent(MouseButtonEvent button) { - bool pressed = button.state == SDL.SDL_PRESSED; - SetButtonState(TranslateButton(button.button), pressed); - mice[0][TranslateButton(button.button)] = pressed; + bool pressed = button.State == State.Pressed; + SetButtonState(TranslateButton(button.Button), pressed); + mice[0][TranslateButton(button.Button)] = pressed; } #endregion @@ -146,7 +146,7 @@ namespace OpenTK.Platform.SDL2 public void SetPosition(double x, double y) { - SDL.SDL_WarpMouseInWindow(IntPtr.Zero, (int)x, (int)y); + SDL.WarpMouseInWindow(IntPtr.Zero, (int)x, (int)y); } #endregion diff --git a/Source/OpenTK/Platform/SDL2/Sdl2NativeWindow.cs b/Source/OpenTK/Platform/SDL2/Sdl2NativeWindow.cs index c8167039..8e0c4f12 100644 --- a/Source/OpenTK/Platform/SDL2/Sdl2NativeWindow.cs +++ b/Source/OpenTK/Platform/SDL2/Sdl2NativeWindow.cs @@ -59,7 +59,7 @@ namespace OpenTK.Platform.SDL2 readonly IInputDriver input_driver = new Sdl2InputDriver(); - readonly SDL.SDL_EventFilter EventFilterDelegate = FilterEvents; + readonly EventFilter EventFilterDelegate = FilterEvents; static readonly Dictionary windows = new Dictionary(); @@ -73,24 +73,24 @@ namespace OpenTK.Platform.SDL2 { var bounds = device.Bounds; var flags = TranslateFlags(options); - flags |= SDL.SDL_WindowFlags.SDL_WINDOW_OPENGL; - flags |= SDL.SDL_WindowFlags.SDL_WINDOW_RESIZABLE; - flags |= SDL.SDL_WindowFlags.SDL_WINDOW_HIDDEN; - flags |= SDL.SDL_WindowFlags.SDL_WINDOW_ALLOW_HIGHDPI; + flags |= WindowFlags.OPENGL; + flags |= WindowFlags.RESIZABLE; + flags |= WindowFlags.HIDDEN; + flags |= WindowFlags.ALLOW_HIGHDPI; - if ((flags & SDL.SDL_WindowFlags.SDL_WINDOW_FULLSCREEN_DESKTOP) != 0 || - (flags & SDL.SDL_WindowFlags.SDL_WINDOW_FULLSCREEN) != 0) + if ((flags & WindowFlags.FULLSCREEN_DESKTOP) != 0 || + (flags & WindowFlags.FULLSCREEN) != 0) window_state = WindowState.Fullscreen; IntPtr handle; lock (SDL.Sync) { - handle = SDL.SDL_CreateWindow(title, bounds.Left + x, bounds.Top + y, width, height, flags); - SDL.SDL_AddEventWatch(EventFilterDelegate, handle); - SDL.SDL_PumpEvents(); + handle = SDL.CreateWindow(title, bounds.Left + x, bounds.Top + y, width, height, flags); + SDL.AddEventWatch(EventFilterDelegate, handle); + SDL.PumpEvents(); } window = new Sdl2WindowInfo(handle, null); - window_id = SDL.SDL_GetWindowID(handle); + window_id = SDL.GetWindowID(handle); windows.Add(window_id, this); window_title = title; @@ -100,19 +100,19 @@ namespace OpenTK.Platform.SDL2 #region Private Members - static SDL.SDL_WindowFlags TranslateFlags(GameWindowFlags flags) + static WindowFlags TranslateFlags(GameWindowFlags flags) { switch (flags) { case GameWindowFlags.Fullscreen: - return SDL.SDL_WindowFlags.SDL_WINDOW_FULLSCREEN_DESKTOP; + return WindowFlags.FULLSCREEN_DESKTOP; default: - return (SDL.SDL_WindowFlags)0; + return WindowFlags.Default; } } - static Key TranslateKey(SDL.SDL_Scancode scan) + static Key TranslateKey(Scancode scan) { Key result = Key.Unknown; if (map.ContainsKey(scan)) @@ -122,9 +122,9 @@ namespace OpenTK.Platform.SDL2 return result; } - static Key TranslateKey(SDL.SDL_Keycode key) + static Key TranslateKey(Keycode key) { - SDL.SDL_Scancode scan = SDL.SDL_GetScancodeFromKey(key); + Scancode scan = SDL.GetScancodeFromKey(key); return TranslateKey(scan); } @@ -135,53 +135,53 @@ namespace OpenTK.Platform.SDL2 try { Sdl2NativeWindow window = null; - SDL.SDL_Event ev = *(SDL.SDL_Event*)e; + Event ev = *(Event*)e; - switch (ev.type) + switch (ev.Type) { - case SDL.SDL_EventType.SDL_WINDOWEVENT: - if (windows.TryGetValue(ev.window.windowID, out window)) + case EventType.WINDOWEVENT: + if (windows.TryGetValue(ev.Window.WindowID, out window)) { - ProcessWindowEvent(window, ev.window); + ProcessWindowEvent(window, ev.Window); processed = true; } break; - case SDL.SDL_EventType.SDL_KEYDOWN: - case SDL.SDL_EventType.SDL_KEYUP: - if (windows.TryGetValue(ev.key.windowID, out window)) + case EventType.KEYDOWN: + case EventType.KEYUP: + if (windows.TryGetValue(ev.Key.WindowID, out window)) { ProcessKeyEvent(window, ev); processed = true; } break; - case SDL.SDL_EventType.SDL_MOUSEBUTTONDOWN: - case SDL.SDL_EventType.SDL_MOUSEBUTTONUP: - if (windows.TryGetValue(ev.button.windowID, out window)) + case EventType.MOUSEBUTTONDOWN: + case EventType.MOUSEBUTTONUP: + if (windows.TryGetValue(ev.Button.WindowID, out window)) { ProcessButtonEvent(window, ev); processed = true; } break; - case SDL.SDL_EventType.SDL_MOUSEMOTION: - if (windows.TryGetValue(ev.motion.windowID, out window)) + case EventType.MOUSEMOTION: + if (windows.TryGetValue(ev.Motion.WindowID, out window)) { ProcessMotionEvent(window, ev); processed = true; } break; - case SDL.SDL_EventType.SDL_MOUSEWHEEL: - if (windows.TryGetValue(ev.wheel.windowID, out window)) + case EventType.MOUSEWHEEL: + if (windows.TryGetValue(ev.Wheel.WindowID, out window)) { ProcessWheelEvent(window, ev); processed = true; } break; - case SDL.SDL_EventType.SDL_QUIT: + case EventType.QUIT: Debug.WriteLine("Sdl2 application quit"); break; } @@ -194,68 +194,43 @@ namespace OpenTK.Platform.SDL2 return processed ? 0 : 1; } - static void ProcessButtonEvent(Sdl2NativeWindow window, SDL.SDL_Event ev) + static void ProcessButtonEvent(Sdl2NativeWindow window, Event ev) { - bool button_pressed = ev.button.state == SDL.SDL_PRESSED; + bool button_pressed = ev.Button.State == State.Pressed; // We need MouseUp events to be reported even if they occur // outside the window. SetWindowGrab ensures we get them. if (window.CursorVisible) { - SDL.SDL_SetWindowGrab(window.window.Handle, - button_pressed ? SDL.SDL_bool.SDL_TRUE : SDL.SDL_bool.SDL_FALSE); - } - - switch (ev.button.button) - {/* - - case (byte)SDL.SDL_BUTTON_LEFT: - window.mouse[MouseButton.Left] = button_pressed; - break; - - case (byte)SDL.SDL_BUTTON_MIDDLE: - window.mouse[MouseButton.Middle] = button_pressed; - break; - - case (byte)SDL.SDL_BUTTON_RIGHT: - window.mouse[MouseButton.Right] = button_pressed; - break; - - case (byte)SDL.SDL_BUTTON_X1: - window.mouse[MouseButton.Button1] = button_pressed; - break; - - case (byte)SDL.SDL_BUTTON_X2: - window.mouse[MouseButton.Button2] = button_pressed; - break; - */ + SDL.SetWindowGrab(window.window.Handle, + button_pressed ? true : false); } } - static void ProcessKeyEvent(Sdl2NativeWindow window, SDL.SDL_Event ev) + static void ProcessKeyEvent(Sdl2NativeWindow window, Event ev) { - bool key_pressed = ev.key.state == SDL.SDL_PRESSED; - var key = ev.key.keysym; + bool key_pressed = ev.Key.State == State.Pressed; + var key = ev.Key.Keysym; //window.keyboard.SetKey(TranslateKey(key.scancode), (uint)key.scancode, key_pressed); } - static void ProcessMotionEvent(Sdl2NativeWindow window, SDL.SDL_Event ev) + static void ProcessMotionEvent(Sdl2NativeWindow window, Event ev) { float scale = window.ClientSize.Width / (float)window.Size.Width; //window.mouse.Position = new Point( // (int)(ev.motion.x * scale), (int)(ev.motion.y * scale)); } - static void ProcessWheelEvent(Sdl2NativeWindow window, SDL.SDL_Event ev) + static void ProcessWheelEvent(Sdl2NativeWindow window, Event ev) { //window.mouse.Wheel += ev.wheel.y; } - static void ProcessWindowEvent(Sdl2NativeWindow window, SDL.SDL_WindowEvent e) + static void ProcessWindowEvent(Sdl2NativeWindow window, WindowEvent e) { - switch (e.windowEvent) + switch (e.Event) { - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_CLOSE: + case WindowEventID.CLOSE: var close_args = new System.ComponentModel.CancelEventArgs(); window.Closing(window, close_args); if (!close_args.Cancel) @@ -265,66 +240,66 @@ namespace OpenTK.Platform.SDL2 } break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_ENTER: + case WindowEventID.ENTER: window.MouseEnter(window, EventArgs.Empty); break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_LEAVE: + case WindowEventID.LEAVE: window.MouseLeave(window, EventArgs.Empty); break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_EXPOSED: + case WindowEventID.EXPOSED: // do nothing break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_FOCUS_GAINED: + case WindowEventID.FOCUS_GAINED: window.is_focused = true; window.FocusedChanged(window, EventArgs.Empty); break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_FOCUS_LOST: + case WindowEventID.FOCUS_LOST: window.is_focused = false; window.FocusedChanged(window, EventArgs.Empty); break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_HIDDEN: + case WindowEventID.HIDDEN: window.is_visible = false; window.VisibleChanged(window, EventArgs.Empty); break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_SHOWN: + case WindowEventID.SHOWN: window.is_visible = true; window.VisibleChanged(window, EventArgs.Empty); break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_MAXIMIZED: + case WindowEventID.MAXIMIZED: window.previous_window_state = window.window_state; window.window_state = OpenTK.WindowState.Maximized; window.WindowStateChanged(window, EventArgs.Empty); break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_MINIMIZED: + case WindowEventID.MINIMIZED: window.previous_window_state = window.window_state; window.window_state = OpenTK.WindowState.Minimized; window.WindowStateChanged(window, EventArgs.Empty); break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_RESTORED: + case WindowEventID.RESTORED: window.window_state = window.previous_window_state; window.WindowStateChanged(window, EventArgs.Empty); break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_MOVED: + case WindowEventID.MOVED: window.Move(window, EventArgs.Empty); break; - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_RESIZED: - case SDL.SDL_WindowEventID.SDL_WINDOWEVENT_SIZE_CHANGED: + case WindowEventID.RESIZED: + case WindowEventID.SIZE_CHANGED: window.Resize(window, EventArgs.Empty); break; default: - Debug.Print("SDL2 unhandled event: {0}", e.type); + Debug.Print("SDL2 unhandled event: {0}", e.Type); break; } } @@ -337,12 +312,12 @@ namespace OpenTK.Platform.SDL2 { lock (SDL.Sync) { - SDL.SDL_DelEventWatch(EventFilterDelegate, window.Handle); + SDL.DelEventWatch(EventFilterDelegate, window.Handle); if (windows.ContainsKey(window_id)) { windows.Remove(window_id); } - SDL.SDL_DestroyWindow(window.Handle); + SDL.DestroyWindow(window.Handle); } } @@ -352,19 +327,17 @@ namespace OpenTK.Platform.SDL2 void GrabCursor(bool grab) { - SDL.SDL_ShowCursor(grab ? 0 : 1); - SDL.SDL_SetWindowGrab(window.Handle, - grab ? SDL.SDL_bool.SDL_TRUE : SDL.SDL_bool.SDL_FALSE); - SDL.SDL_SetRelativeMouseMode( - grab ? SDL.SDL_bool.SDL_TRUE : SDL.SDL_bool.SDL_FALSE); + SDL.ShowCursor(!grab); + SDL.SetWindowGrab(window.Handle, grab); + SDL.SetRelativeMouseMode(grab); } // Hack to force WindowState events to be pumped void HideShowWindowHack() { - SDL.SDL_HideWindow(window.Handle); + SDL.HideWindow(window.Handle); ProcessEvents(); - SDL.SDL_ShowWindow(window.Handle); + SDL.ShowWindow(window.Handle); ProcessEvents(); } @@ -376,16 +349,16 @@ namespace OpenTK.Platform.SDL2 switch (state) { case WindowState.Fullscreen: - SDL.SDL_SetWindowFullscreen(window.Handle, 0); + SDL.SetWindowFullscreen(window.Handle, 0); break; case WindowState.Maximized: - SDL.SDL_RestoreWindow(window.Handle); + SDL.RestoreWindow(window.Handle); HideShowWindowHack(); break; case WindowState.Minimized: - SDL.SDL_RestoreWindow(window.Handle); + SDL.RestoreWindow(window.Handle); break; } @@ -423,13 +396,13 @@ namespace OpenTK.Platform.SDL2 { Debug.Print("SDL2 destroying window {0}", window.Handle); - SDL.SDL_Event e = new SDL.SDL_Event(); - e.type = SDL.SDL_EventType.SDL_WINDOWEVENT; - e.window.windowEvent = SDL.SDL_WindowEventID.SDL_WINDOWEVENT_CLOSE; - e.window.windowID = window_id; + Event e = new Event(); + e.Type = EventType.WINDOWEVENT; + e.Window.Event = WindowEventID.CLOSE; + e.Window.WindowID = window_id; lock (SDL.Sync) { - SDL.SDL_PushEvent(ref e); + SDL.PushEvent(ref e); } } } @@ -441,7 +414,7 @@ namespace OpenTK.Platform.SDL2 { if (Exists) { - SDL.SDL_PumpEvents(); + SDL.PumpEvents(); } } } @@ -484,15 +457,15 @@ namespace OpenTK.Platform.SDL2 ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb); - IntPtr surface = SDL.SDL_CreateRGBSurfaceFrom( + IntPtr surface = SDL.CreateRGBSurfaceFrom( data.Scan0, data.Width, data.Height, 32, data.Stride, 0x00ff0000u, 0x0000ff00u, 0x000000ffu, 0xff000000u); // Update the window icon - SDL.SDL_SetWindowIcon(window.Handle, surface); + SDL.SetWindowIcon(window.Handle, surface); // Free the SDL surface as it is no longer needed - SDL.SDL_FreeSurface(surface); + SDL.FreeSurface(surface); bmp.UnlockBits(data); } @@ -500,7 +473,7 @@ namespace OpenTK.Platform.SDL2 else { // Clear the window icon - SDL.SDL_SetWindowIcon(window.Handle, IntPtr.Zero); + SDL.SetWindowIcon(window.Handle, IntPtr.Zero); } icon = value; @@ -518,7 +491,7 @@ namespace OpenTK.Platform.SDL2 { if (Exists) { - return SDL.SDL_GetWindowTitle(window.Handle); + return SDL.GetWindowTitle(window.Handle); } return String.Empty; } @@ -529,7 +502,7 @@ namespace OpenTK.Platform.SDL2 { if (Exists) { - SDL.SDL_SetWindowTitle(window.Handle, value); + SDL.SetWindowTitle(window.Handle, value); window_title = value; } } @@ -557,9 +530,9 @@ namespace OpenTK.Platform.SDL2 if (Exists) { if (value) - SDL.SDL_ShowWindow(window.Handle); + SDL.ShowWindow(window.Handle); else - SDL.SDL_HideWindow(window.Handle); + SDL.HideWindow(window.Handle); } } } @@ -600,14 +573,14 @@ namespace OpenTK.Platform.SDL2 { case WindowState.Fullscreen: RestoreWindow(); - if (SDL.SDL_SetWindowFullscreen(window.Handle, (uint)SDL.SDL_WindowFlags.SDL_WINDOW_FULLSCREEN_DESKTOP) < 0) + if (SDL.SetWindowFullscreen(window.Handle, (uint)WindowFlags.FULLSCREEN_DESKTOP) < 0) { - if (SDL.SDL_SetWindowFullscreen(window.Handle, (uint)SDL.SDL_WindowFlags.SDL_WINDOW_FULLSCREEN) < 0) + if (SDL.SetWindowFullscreen(window.Handle, (uint)WindowFlags.FULLSCREEN) < 0) { - Debug.Print("SDL2 failed to enter fullscreen mode: {0}", SDL.SDL_GetError()); + Debug.Print("SDL2 failed to enter fullscreen mode: {0}", SDL.GetError()); } } - SDL.SDL_RaiseWindow(window.Handle); + SDL.RaiseWindow(window.Handle); // There is no "fullscreen" message in the event loop // so we have to mark that ourselves window_state = WindowState.Fullscreen; @@ -615,12 +588,12 @@ namespace OpenTK.Platform.SDL2 case WindowState.Maximized: RestoreWindow(); - SDL.SDL_MaximizeWindow(window.Handle); + SDL.MaximizeWindow(window.Handle); HideShowWindowHack(); break; case WindowState.Minimized: - SDL.SDL_MinimizeWindow(window.Handle); + SDL.MinimizeWindow(window.Handle); break; case WindowState.Normal: @@ -654,12 +627,12 @@ namespace OpenTK.Platform.SDL2 switch (value) { case WindowBorder.Resizable: - SDL.SDL_SetWindowBordered(window.Handle, SDL.SDL_bool.SDL_TRUE); + SDL.SetWindowBordered(window.Handle, true); window_border = WindowBorder.Resizable; break; case WindowBorder.Hidden: - SDL.SDL_SetWindowBordered(window.Handle, SDL.SDL_bool.SDL_FALSE); + SDL.SetWindowBordered(window.Handle, false); window_border = WindowBorder.Hidden; break; @@ -700,7 +673,7 @@ namespace OpenTK.Platform.SDL2 if (Exists) { int x, y; - SDL.SDL_GetWindowPosition(window.Handle, out x, out y); + SDL.GetWindowPosition(window.Handle, out x, out y); return new Point(x, y); } return new Point(); @@ -712,7 +685,7 @@ namespace OpenTK.Platform.SDL2 { if (Exists) { - SDL.SDL_SetWindowPosition(window.Handle, value.X, value.Y); + SDL.SetWindowPosition(window.Handle, value.X, value.Y); } } } @@ -727,7 +700,7 @@ namespace OpenTK.Platform.SDL2 if (Exists) { int w, h; - SDL.SDL_GetWindowSize(window.Handle, out w, out h); + SDL.GetWindowSize(window.Handle, out w, out h); return new Size(w, h); } return new Size(); @@ -739,7 +712,7 @@ namespace OpenTK.Platform.SDL2 { if (Exists) { - SDL.SDL_SetWindowSize(window.Handle, value.Width, value.Height); + SDL.SetWindowSize(window.Handle, value.Width, value.Height); } } } @@ -814,11 +787,11 @@ namespace OpenTK.Platform.SDL2 { // SDL > 2.0.0 supports SDL_GL_GetDrawableSize for // hidpi windows. - SDL.SDL_GL_GetDrawableSize(window.Handle, out w, out h); + SDL.GL.GetDrawableSize(window.Handle, out w, out h); } else { - SDL.SDL_GetWindowSize(window.Handle, out w, out h); + SDL.GetWindowSize(window.Handle, out w, out h); } return new Size(w, h); } diff --git a/Source/OpenTK/Platform/Utilities.cs b/Source/OpenTK/Platform/Utilities.cs index d24d5c4f..c4372092 100644 --- a/Source/OpenTK/Platform/Utilities.cs +++ b/Source/OpenTK/Platform/Utilities.cs @@ -272,7 +272,7 @@ namespace OpenTK.Platform public static IWindowInfo CreateSdl2WindowInfo(IntPtr windowHandle) { return new OpenTK.Platform.SDL2.Sdl2WindowInfo( - SDL2.SDL.SDL_CreateWindowFrom(windowHandle), null); + SDL2.SDL.CreateWindowFrom(windowHandle), null); } #endregion