#region License // // The Open Toolkit Library License // // Copyright (c) 2006 - 2009 the Open Toolkit library. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights to // use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of // the Software, and to permit persons to whom the Software is furnished to do // so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR // OTHER DEALINGS IN THE SOFTWARE. // #endregion using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.IO; using System.Runtime.InteropServices; using System.Reflection; namespace OpenTK { /// /// Provides information about the underlying OS and runtime. /// You must call Toolkit.Init before accessing members /// of this class. /// public sealed class Configuration { static bool runningOnWindows, runningOnUnix, runningOnX11, runningOnMacOS, runningOnLinux; static bool runningOnMono; static bool runningOnAndroid; volatile static bool initialized; readonly static object InitLock = new object(); #region Constructors Configuration() { } #endregion #region Public Methods #region public static bool RunningOnWindows /// Gets a System.Boolean indicating whether OpenTK is running on a Windows platform. public static bool RunningOnWindows { get { return runningOnWindows; } } #endregion #region public static bool RunningOnX11 /// Gets a System.Boolean indicating whether OpenTK is running on an X11 platform. public static bool RunningOnX11 { get { return runningOnX11; } } /// /// Gets a indicating whether OpenTK is running on a Unix platform. /// public static bool RunningOnUnix { get { return runningOnUnix; } } #endregion #region RunningOnSDL2 /// /// Gets a System.Boolean indicating whether OpenTK is running on the SDL2 backend. /// public static bool RunningOnSdl2 { get; private set; } #endregion #region public static bool RunningOnLinux /// Gets a System.Boolean indicating whether OpenTK is running on an X11 platform. public static bool RunningOnLinux { get { return runningOnLinux; } } #endregion #region public static bool RunningOnMacOS /// Gets a System.Boolean indicating whether OpenTK is running on a MacOS platform. public static bool RunningOnMacOS { get { return runningOnMacOS; } } #endregion #region public static bool RunningOnMono /// /// Gets a System.Boolean indicating whether OpenTK is running on the Mono runtime. /// public static bool RunningOnMono { get { return runningOnMono; } } #endregion #region public static bool RunningOnAndroid /// /// Gets a System.Boolean indicating whether /// OpenTK is running on an Android device. /// public static bool RunningOnAndroid { get { #if ANDROID return true; #else return false; #endif } } #endregion #region --- Private Methods --- #region private static string DetectUnixKernel() [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] struct utsname { [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)] public string sysname; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)] public string nodename; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)] public string release; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)] public string version; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)] public string machine; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 1024)] public string extraJustInCase; } /// /// Detects the unix kernel by p/invoking uname (libc). /// /// private static string DetectUnixKernel() { Debug.Print("Size: {0}", Marshal.SizeOf(typeof(utsname)).ToString()); Debug.Flush(); utsname uts = new utsname(); uname(out uts); Debug.WriteLine("System:"); Debug.Indent(); Debug.WriteLine(uts.sysname); Debug.WriteLine(uts.nodename); Debug.WriteLine(uts.release); Debug.WriteLine(uts.version); Debug.WriteLine(uts.machine); Debug.Unindent(); return uts.sysname.ToString(); } [DllImport("libc")] private static extern void uname(out utsname uname_struct); static bool DetectMono() { // Detect the Mono runtime (code taken from http://mono.wikia.com/wiki/Detecting_if_program_is_running_in_Mono). Type t = Type.GetType("Mono.Runtime"); return t != null; } static bool DetectSdl2() { bool supported = false; // Detect whether SDL2 is supported try { if (!OpenTK.Platform.SDL2.SDL.WasInit(0)) { var flags = OpenTK.Platform.SDL2.SystemFlags.VIDEO | Platform.SDL2.SystemFlags.TIMER; if (OpenTK.Platform.SDL2.SDL.Init(flags) == 0) { supported = true; } else { Debug.Print("SDL2 init failed with error: {0}", OpenTK.Platform.SDL2.SDL.GetError()); } } else { supported = true; } } catch (Exception e) { Debug.Print("SDL2 init failed with exception: {0}", e); } Debug.Print("SDL2 is {0}", supported ? "supported" : "not supported"); return supported; } static void DetectUnix(out bool unix, out bool linux, out bool macos) { unix = linux = macos = false; string kernel_name = DetectUnixKernel(); switch (kernel_name) { case null: case "": throw new PlatformNotSupportedException( "Unknown platform. Please file a bug report at http://www.opentk.com"); case "Linux": linux = unix = true; break; case "Darwin": macos = unix = true; break; default: unix = true; break; } } static bool DetectWindows() { return System.Environment.OSVersion.Platform == PlatformID.Win32NT || System.Environment.OSVersion.Platform == PlatformID.Win32S || System.Environment.OSVersion.Platform == PlatformID.Win32Windows || System.Environment.OSVersion.Platform == PlatformID.WinCE; } static bool DetectX11() { // Detect whether X is present. try { return OpenTK.Platform.X11.API.DefaultDisplay != IntPtr.Zero; } catch { return false; } } #endregion #endregion #endregion #region Internal Methods // Detects the underlying OS and runtime. internal static void Init(ToolkitOptions options) { lock (InitLock) { if (!initialized) { #if ANDROID runningOnMono = true; runningOnAnroid = true; #elif IPHONE runningOnMono = true; runningOnIOS = true; #else runningOnMono = DetectMono(); runningOnWindows = DetectWindows(); if (!runningOnWindows) { DetectUnix(out runningOnUnix, out runningOnLinux, out runningOnMacOS); } if (options.Backend == PlatformBackend.Default) { RunningOnSdl2 = DetectSdl2(); } if (runningOnLinux || options.Backend == PlatformBackend.PreferX11) { runningOnX11 = DetectX11(); } initialized = true; #endif Debug.Print("Detected configuration: {0} / {1}", RunningOnWindows ? "Windows" : RunningOnLinux ? "Linux" : RunningOnMacOS ? "MacOS" : runningOnUnix ? "Unix" : RunningOnX11 ? "X11" : "Unknown Platform", RunningOnMono ? "Mono" : ".Net"); } } } #endregion } }