2013-09-27 21:07:23 +00:00
|
|
|
#region License
|
|
|
|
//
|
|
|
|
// The Open Toolkit Library License
|
|
|
|
//
|
|
|
|
// Copyright (c) 2006 - 2013 Stefanos Apostolopoulos for 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
|
|
|
|
|
2013-09-27 12:41:37 +00:00
|
|
|
using System;
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
using OpenTK.Input;
|
|
|
|
|
|
|
|
namespace OpenTK.Platform.SDL2
|
|
|
|
{
|
|
|
|
class Sdl2Factory : IPlatformFactory
|
|
|
|
{
|
2013-09-30 10:22:25 +00:00
|
|
|
readonly IInputDriver2 InputDriver = new Sdl2InputBase();
|
|
|
|
|
2013-09-27 12:41:37 +00:00
|
|
|
public Sdl2Factory()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#region IPlatformFactory implementation
|
|
|
|
|
|
|
|
public INativeWindow CreateNativeWindow(int x, int y, int width, int height, string title, GraphicsMode mode, GameWindowFlags options, DisplayDevice device)
|
|
|
|
{
|
|
|
|
return new Sdl2NativeWindow(x, y, width, height, title, options, device);
|
|
|
|
}
|
|
|
|
|
|
|
|
public IDisplayDeviceDriver CreateDisplayDeviceDriver()
|
|
|
|
{
|
|
|
|
return new Sdl2DisplayDeviceDriver();
|
|
|
|
}
|
|
|
|
|
|
|
|
public IGraphicsContext CreateGLContext(GraphicsMode mode, IWindowInfo window, IGraphicsContext shareContext, bool directRendering, int major, int minor, GraphicsContextFlags flags)
|
|
|
|
{
|
|
|
|
return new Sdl2GraphicsContext(mode, (Sdl2WindowInfo)window, shareContext, major, minor, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
public IGraphicsContext CreateGLContext(ContextHandle handle, IWindowInfo window, IGraphicsContext shareContext, bool directRendering, int major, int minor, GraphicsContextFlags flags)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
public GraphicsContext.GetCurrentContextDelegate CreateGetCurrentGraphicsContext()
|
|
|
|
{
|
|
|
|
// Unfortunately, SDL does not provide a GetContext function
|
|
|
|
// so we need to implement our own.
|
|
|
|
return (GraphicsContext.GetCurrentContextDelegate)delegate
|
|
|
|
{
|
|
|
|
IntPtr current;
|
|
|
|
if (Configuration.RunningOnWindows)
|
2013-09-27 16:55:38 +00:00
|
|
|
current = OpenTK.Platform.Windows.Wgl.Imports.GetCurrentContext();
|
2013-09-27 12:41:37 +00:00
|
|
|
else if (Configuration.RunningOnX11)
|
|
|
|
current = OpenTK.Platform.X11.Glx.GetCurrentContext();
|
|
|
|
else if (Configuration.RunningOnMacOS)
|
|
|
|
current = OpenTK.Platform.MacOS.Cgl.GetCurrentContext();
|
|
|
|
else
|
|
|
|
throw new NotSupportedException("Unknown platform, please report to http://www.opentk.com");
|
|
|
|
|
|
|
|
return new ContextHandle(current);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public IGraphicsMode CreateGraphicsMode()
|
|
|
|
{
|
|
|
|
return new Sdl2GraphicsMode();
|
|
|
|
}
|
|
|
|
|
|
|
|
public IKeyboardDriver2 CreateKeyboardDriver()
|
|
|
|
{
|
2013-09-30 10:22:25 +00:00
|
|
|
return InputDriver.KeyboardDriver;
|
2013-09-27 12:41:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public IMouseDriver2 CreateMouseDriver()
|
|
|
|
{
|
2013-09-30 10:22:25 +00:00
|
|
|
return InputDriver.MouseDriver;
|
2013-09-27 12:41:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public IGamePadDriver CreateGamePadDriver()
|
|
|
|
{
|
2013-09-30 10:22:25 +00:00
|
|
|
return InputDriver.GamePadDriver;
|
2013-09-27 12:41:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|