2009-06-02 17:49:39 +02:00
|
|
|
#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
|
|
|
|
|
2009-02-22 11:43:35 +01:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2013-10-01 22:01:27 +02:00
|
|
|
using System.Diagnostics;
|
2009-02-22 11:43:35 +01:00
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace OpenTK.Platform
|
|
|
|
{
|
|
|
|
using Graphics;
|
|
|
|
|
2009-07-24 23:52:01 +02:00
|
|
|
sealed class Factory : IPlatformFactory
|
2009-02-22 11:43:35 +01:00
|
|
|
{
|
2009-06-02 17:49:39 +02:00
|
|
|
#region Fields
|
|
|
|
|
2013-10-01 22:01:27 +02:00
|
|
|
bool disposed;
|
2009-08-13 13:52:51 +02:00
|
|
|
static IPlatformFactory default_implementation, embedded_implementation;
|
2009-02-22 11:43:35 +01:00
|
|
|
|
2009-06-02 17:49:39 +02:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Constructors
|
|
|
|
|
2009-02-22 11:43:35 +01:00
|
|
|
static Factory()
|
|
|
|
{
|
2013-09-27 14:41:37 +02:00
|
|
|
if (Configuration.Sdl2Supported) Default = new SDL2.Sdl2Factory();
|
|
|
|
else if (Configuration.RunningOnWindows) Default = new Windows.WinFactory();
|
2009-08-13 13:52:51 +02:00
|
|
|
else if (Configuration.RunningOnMacOS) Default = new MacOS.MacOSFactory();
|
2009-11-06 18:58:35 +01:00
|
|
|
else if (Configuration.RunningOnX11) Default = new X11.X11Factory();
|
2009-08-13 13:52:51 +02:00
|
|
|
else Default = new UnsupportedPlatform();
|
|
|
|
|
2013-10-03 11:17:21 +02:00
|
|
|
if (Configuration.Sdl2Supported)
|
|
|
|
{
|
|
|
|
Embedded = new Egl.EglSdl2PlatformFactory();
|
|
|
|
}
|
|
|
|
else if (Egl.Egl.IsSupported)
|
2009-08-13 13:52:51 +02:00
|
|
|
{
|
|
|
|
if (Configuration.RunningOnWindows) Embedded = new Egl.EglWinPlatformFactory();
|
|
|
|
else if (Configuration.RunningOnMacOS) Embedded = new Egl.EglMacPlatformFactory();
|
2009-11-06 18:58:35 +01:00
|
|
|
else if (Configuration.RunningOnX11) Embedded = new Egl.EglX11PlatformFactory();
|
2009-08-13 13:52:51 +02:00
|
|
|
else Embedded = new UnsupportedPlatform();
|
|
|
|
}
|
2013-10-03 11:17:21 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
Embedded = new UnsupportedPlatform();
|
|
|
|
}
|
2009-08-13 13:52:51 +02:00
|
|
|
|
|
|
|
if (Default is UnsupportedPlatform && !(Embedded is UnsupportedPlatform))
|
|
|
|
Default = Embedded;
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
|
|
|
|
2009-06-02 17:49:39 +02:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Public Members
|
|
|
|
|
|
|
|
public static IPlatformFactory Default
|
2009-02-22 11:43:35 +01:00
|
|
|
{
|
2009-08-13 13:52:51 +02:00
|
|
|
get { return default_implementation; }
|
|
|
|
private set { default_implementation = value; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public static IPlatformFactory Embedded
|
|
|
|
{
|
|
|
|
get { return embedded_implementation; }
|
|
|
|
private set { embedded_implementation = value; }
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
|
|
|
|
2009-06-02 17:49:39 +02:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region IPlatformFactory Members
|
|
|
|
|
|
|
|
public INativeWindow CreateNativeWindow(int x, int y, int width, int height, string title,
|
|
|
|
GraphicsMode mode, GameWindowFlags options, DisplayDevice device)
|
|
|
|
{
|
2009-08-13 13:52:51 +02:00
|
|
|
return default_implementation.CreateNativeWindow(x, y, width, height, title, mode, options, device);
|
2009-06-02 17:49:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public IDisplayDeviceDriver CreateDisplayDeviceDriver()
|
2009-02-22 11:43:35 +01:00
|
|
|
{
|
2009-08-13 13:52:51 +02:00
|
|
|
return default_implementation.CreateDisplayDeviceDriver();
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
|
|
|
|
2009-06-02 17:49:39 +02:00
|
|
|
public IGraphicsContext CreateGLContext(GraphicsMode mode, IWindowInfo window, IGraphicsContext shareContext, bool directRendering, int major, int minor, GraphicsContextFlags flags)
|
2009-02-22 11:43:35 +01:00
|
|
|
{
|
2009-08-13 13:52:51 +02:00
|
|
|
return default_implementation.CreateGLContext(mode, window, shareContext, directRendering, major, minor, flags);
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
|
|
|
|
2009-11-04 17:49:56 +01:00
|
|
|
public IGraphicsContext CreateGLContext(ContextHandle handle, IWindowInfo window, IGraphicsContext shareContext, bool directRendering, int major, int minor, GraphicsContextFlags flags)
|
|
|
|
{
|
|
|
|
return default_implementation.CreateGLContext(handle, window, shareContext, directRendering, major, minor, flags);
|
|
|
|
}
|
|
|
|
|
2009-06-02 17:49:39 +02:00
|
|
|
public GraphicsContext.GetCurrentContextDelegate CreateGetCurrentGraphicsContext()
|
2009-05-30 21:27:52 +02:00
|
|
|
{
|
2009-08-13 13:52:51 +02:00
|
|
|
return default_implementation.CreateGetCurrentGraphicsContext();
|
2009-05-30 21:27:52 +02:00
|
|
|
}
|
2009-06-02 17:49:39 +02:00
|
|
|
|
|
|
|
public IGraphicsMode CreateGraphicsMode()
|
2009-02-22 11:43:35 +01:00
|
|
|
{
|
2009-08-13 13:52:51 +02:00
|
|
|
return default_implementation.CreateGraphicsMode();
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
2009-07-19 19:49:51 +02:00
|
|
|
|
2010-10-29 13:27:40 +02:00
|
|
|
public OpenTK.Input.IKeyboardDriver2 CreateKeyboardDriver()
|
2009-07-19 19:49:51 +02:00
|
|
|
{
|
2009-08-13 13:52:51 +02:00
|
|
|
return default_implementation.CreateKeyboardDriver();
|
2009-07-19 19:49:51 +02:00
|
|
|
}
|
2009-02-22 11:43:35 +01:00
|
|
|
|
2010-10-29 13:27:40 +02:00
|
|
|
public OpenTK.Input.IMouseDriver2 CreateMouseDriver()
|
2010-10-20 16:58:38 +02:00
|
|
|
{
|
|
|
|
return default_implementation.CreateMouseDriver();
|
|
|
|
}
|
|
|
|
|
2013-01-17 02:56:31 +01:00
|
|
|
public OpenTK.Input.IGamePadDriver CreateGamePadDriver()
|
|
|
|
{
|
|
|
|
return default_implementation.CreateGamePadDriver();
|
|
|
|
}
|
|
|
|
|
2009-02-22 11:43:35 +01:00
|
|
|
class UnsupportedPlatform : IPlatformFactory
|
|
|
|
{
|
2009-07-19 19:49:51 +02:00
|
|
|
#region Fields
|
2013-10-01 22:01:27 +02:00
|
|
|
|
|
|
|
bool disposed;
|
2009-07-19 19:49:51 +02:00
|
|
|
static readonly string error_string = "Please, refer to http://www.opentk.com for more information.";
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2009-02-22 11:43:35 +01:00
|
|
|
#region IPlatformFactory Members
|
|
|
|
|
2009-06-02 17:49:39 +02:00
|
|
|
public INativeWindow CreateNativeWindow(int x, int y, int width, int height, string title, GraphicsMode mode, GameWindowFlags options, DisplayDevice device)
|
|
|
|
{
|
2009-07-19 19:49:51 +02:00
|
|
|
throw new PlatformNotSupportedException(error_string);
|
2009-06-02 17:49:39 +02:00
|
|
|
}
|
|
|
|
|
2009-02-22 11:43:35 +01:00
|
|
|
public IDisplayDeviceDriver CreateDisplayDeviceDriver()
|
|
|
|
{
|
2009-07-19 19:49:51 +02:00
|
|
|
throw new PlatformNotSupportedException(error_string);
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
|
|
|
|
2009-07-24 23:52:01 +02:00
|
|
|
public IGraphicsContext CreateGLContext(GraphicsMode mode, IWindowInfo window, IGraphicsContext shareContext, bool directRendering, int major, int minor, GraphicsContextFlags flags)
|
2009-11-04 17:49:56 +01:00
|
|
|
{
|
|
|
|
throw new PlatformNotSupportedException(error_string);
|
|
|
|
}
|
|
|
|
|
|
|
|
public IGraphicsContext CreateGLContext(ContextHandle handle, IWindowInfo window, IGraphicsContext shareContext, bool directRendering, int major, int minor, GraphicsContextFlags flags)
|
2009-07-24 23:52:01 +02:00
|
|
|
{
|
|
|
|
throw new PlatformNotSupportedException(error_string);
|
|
|
|
}
|
|
|
|
|
|
|
|
public IGraphicsContext CreateESContext(GraphicsMode mode, IWindowInfo window, IGraphicsContext shareContext, int major, int minor, GraphicsContextFlags flags)
|
2009-02-22 11:43:35 +01:00
|
|
|
{
|
2009-07-19 19:49:51 +02:00
|
|
|
throw new PlatformNotSupportedException(error_string);
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
|
|
|
|
2009-05-30 21:27:52 +02:00
|
|
|
public GraphicsContext.GetCurrentContextDelegate CreateGetCurrentGraphicsContext()
|
|
|
|
{
|
2009-07-19 19:49:51 +02:00
|
|
|
throw new PlatformNotSupportedException(error_string);
|
2009-05-30 21:27:52 +02:00
|
|
|
}
|
|
|
|
|
2009-02-22 11:43:35 +01:00
|
|
|
public IGraphicsMode CreateGraphicsMode()
|
|
|
|
{
|
2009-07-19 19:49:51 +02:00
|
|
|
throw new PlatformNotSupportedException(error_string);
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
|
|
|
|
2010-10-29 13:27:40 +02:00
|
|
|
public OpenTK.Input.IKeyboardDriver2 CreateKeyboardDriver()
|
2009-07-19 19:49:51 +02:00
|
|
|
{
|
|
|
|
throw new PlatformNotSupportedException(error_string);
|
|
|
|
}
|
2010-10-20 16:58:38 +02:00
|
|
|
|
2010-10-29 13:27:40 +02:00
|
|
|
public OpenTK.Input.IMouseDriver2 CreateMouseDriver()
|
2010-10-20 16:58:38 +02:00
|
|
|
{
|
|
|
|
throw new PlatformNotSupportedException(error_string);
|
|
|
|
}
|
2013-01-17 02:56:31 +01:00
|
|
|
|
|
|
|
public OpenTK.Input.IGamePadDriver CreateGamePadDriver()
|
|
|
|
{
|
|
|
|
throw new PlatformNotSupportedException(error_string);
|
|
|
|
}
|
|
|
|
|
2009-02-22 11:43:35 +01:00
|
|
|
#endregion
|
2013-10-01 22:01:27 +02:00
|
|
|
|
|
|
|
#region IDisposable Members
|
|
|
|
|
|
|
|
void Dispose(bool manual)
|
|
|
|
{
|
|
|
|
if (!disposed)
|
|
|
|
{
|
|
|
|
if (manual)
|
|
|
|
{
|
|
|
|
// nothing to do
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Debug.Print("{0} leaked, did you forget to call Dispose()?", GetType());
|
|
|
|
}
|
|
|
|
disposed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
~UnsupportedPlatform()
|
|
|
|
{
|
|
|
|
Dispose(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region IDisposable Members
|
|
|
|
|
|
|
|
void Dispose(bool manual)
|
|
|
|
{
|
|
|
|
if (!disposed)
|
|
|
|
{
|
|
|
|
if (manual)
|
|
|
|
{
|
|
|
|
Default.Dispose();
|
|
|
|
if (Embedded != Default)
|
|
|
|
{
|
|
|
|
Embedded.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Debug.Print("{0} leaked, did you forget to call Dispose()?", GetType());
|
|
|
|
}
|
|
|
|
disposed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
~Factory()
|
|
|
|
{
|
|
|
|
Dispose(false);
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
2009-06-02 17:49:39 +02:00
|
|
|
|
|
|
|
#endregion
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
|
|
|
}
|