2013-10-01 22:01:27 +02:00
|
|
|
|
#region License
|
|
|
|
|
//
|
|
|
|
|
// The Open Toolkit Library License
|
|
|
|
|
//
|
2013-11-12 20:34:53 +01:00
|
|
|
|
// Copyright (c) 2006 - 2013 the Open Toolkit library.
|
2013-10-01 22:01:27 +02:00
|
|
|
|
//
|
|
|
|
|
// 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 OpenTK.Platform;
|
2013-11-12 20:34:53 +01:00
|
|
|
|
using System.Diagnostics;
|
2013-10-01 22:01:27 +02:00
|
|
|
|
|
|
|
|
|
namespace OpenTK
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides static methods to manage an OpenTK application.
|
|
|
|
|
/// </summary>
|
2013-11-12 20:34:53 +01:00
|
|
|
|
public sealed class Toolkit : IDisposable
|
2013-10-01 22:01:27 +02:00
|
|
|
|
{
|
2013-11-12 20:34:53 +01:00
|
|
|
|
Factory platform_factory;
|
|
|
|
|
static Toolkit toolkit;
|
2013-10-01 22:01:27 +02:00
|
|
|
|
|
|
|
|
|
volatile static bool initialized;
|
|
|
|
|
static readonly object InitLock = new object();
|
|
|
|
|
|
|
|
|
|
#region Constructors
|
|
|
|
|
|
2013-11-12 20:34:53 +01:00
|
|
|
|
Toolkit(Factory factory)
|
|
|
|
|
{
|
|
|
|
|
if (factory == null)
|
|
|
|
|
throw new ArgumentNullException("factory");
|
|
|
|
|
platform_factory = factory;
|
|
|
|
|
}
|
2013-10-01 22:01:27 +02:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Public Members
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-11-12 20:34:53 +01:00
|
|
|
|
/// Initializes OpenTK with default options.
|
2013-10-01 22:01:27 +02:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
2013-11-12 20:34:53 +01:00
|
|
|
|
/// <para>
|
|
|
|
|
/// You *must* call this method if you are combining OpenTK with a
|
|
|
|
|
/// third-party windowing toolkit (e.g. GTK#). In this case, this should be the
|
|
|
|
|
/// first method called by your application:
|
|
|
|
|
/// <code>
|
|
|
|
|
/// static void Main()
|
|
|
|
|
/// {
|
2013-11-20 13:12:42 +01:00
|
|
|
|
/// using (OpenTK.Toolkit.Init())
|
|
|
|
|
/// {
|
|
|
|
|
/// ...
|
|
|
|
|
/// }
|
|
|
|
|
/// }
|
2013-11-12 20:34:53 +01:00
|
|
|
|
/// </code>
|
|
|
|
|
/// </para>
|
|
|
|
|
/// <para>
|
|
|
|
|
/// The reason is that some toolkits do not configure the underlying platform
|
2013-10-01 22:01:27 +02:00
|
|
|
|
/// correctly or configure it in a way that is incompatible with OpenTK.
|
|
|
|
|
/// Calling this method first ensures that OpenTK is given the chance to
|
|
|
|
|
/// initialize itself and configure the platform correctly.
|
2013-11-12 20:34:53 +01:00
|
|
|
|
/// </para>
|
2013-10-01 22:01:27 +02:00
|
|
|
|
/// </remarks>
|
2013-11-12 20:34:53 +01:00
|
|
|
|
/// <returns>
|
|
|
|
|
/// An IDisposable instance that you can use to dispose of the resources
|
|
|
|
|
/// consumed by OpenTK.
|
|
|
|
|
/// </returns>
|
2013-11-20 13:12:42 +01:00
|
|
|
|
public static Toolkit Init()
|
2013-10-01 22:01:27 +02:00
|
|
|
|
{
|
2013-11-12 20:34:53 +01:00
|
|
|
|
return Init(ToolkitOptions.Default);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes OpenTK with the specified options. Use this method
|
|
|
|
|
/// to influence the OpenTK.Platform implementation that will be used.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// <para>
|
|
|
|
|
/// You *must* call this method if you are combining OpenTK with a
|
|
|
|
|
/// third-party windowing toolkit (e.g. GTK#). In this case, this should be the
|
|
|
|
|
/// first method called by your application:
|
|
|
|
|
/// <code>
|
|
|
|
|
/// static void Main()
|
|
|
|
|
/// {
|
2013-11-20 13:12:42 +01:00
|
|
|
|
/// using (OpenTK.Toolkit.Init())
|
|
|
|
|
/// {
|
|
|
|
|
/// ...
|
|
|
|
|
/// }
|
|
|
|
|
/// }
|
2013-11-12 20:34:53 +01:00
|
|
|
|
/// </code>
|
|
|
|
|
/// </para>
|
|
|
|
|
/// <para>
|
|
|
|
|
/// The reason is that some toolkits do not configure the underlying platform
|
|
|
|
|
/// correctly or configure it in a way that is incompatible with OpenTK.
|
|
|
|
|
/// Calling this method first ensures that OpenTK is given the chance to
|
|
|
|
|
/// initialize itself and configure the platform correctly.
|
|
|
|
|
/// </para>
|
|
|
|
|
/// </remarks>
|
|
|
|
|
/// <param name="options">A <c>ToolkitOptions</c> instance
|
|
|
|
|
/// containing the desired options.</param>
|
|
|
|
|
/// <returns>
|
|
|
|
|
/// An IDisposable instance that you can use to dispose of the resources
|
|
|
|
|
/// consumed by OpenTK.
|
|
|
|
|
/// </returns>
|
2013-11-20 13:12:42 +01:00
|
|
|
|
public static Toolkit Init(ToolkitOptions options)
|
2013-11-12 20:34:53 +01:00
|
|
|
|
{
|
|
|
|
|
if (options == null)
|
|
|
|
|
throw new ArgumentNullException("options");
|
|
|
|
|
|
2013-10-01 22:01:27 +02:00
|
|
|
|
lock (InitLock)
|
|
|
|
|
{
|
|
|
|
|
if (!initialized)
|
|
|
|
|
{
|
|
|
|
|
initialized = true;
|
2013-11-12 20:34:53 +01:00
|
|
|
|
Configuration.Init(options);
|
2013-12-02 22:18:16 +01:00
|
|
|
|
Options = options;
|
2013-11-12 20:34:53 +01:00
|
|
|
|
|
|
|
|
|
// The actual initialization takes place in the
|
|
|
|
|
// platform-specific factory constructors.
|
|
|
|
|
toolkit = new Toolkit(new Factory());
|
2013-10-01 22:01:27 +02:00
|
|
|
|
}
|
2013-11-12 20:34:53 +01:00
|
|
|
|
return toolkit;
|
2013-10-01 22:01:27 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2013-12-02 22:18:16 +01:00
|
|
|
|
#region Internal Members
|
|
|
|
|
|
|
|
|
|
internal static ToolkitOptions Options { get; private set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2013-11-12 20:34:53 +01:00
|
|
|
|
#region IDisposable Members
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Disposes of the resources consumed by this instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
Dispose(true);
|
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
|
}
|
2013-10-01 22:01:27 +02:00
|
|
|
|
|
2013-11-12 20:34:53 +01:00
|
|
|
|
void Dispose(bool manual)
|
|
|
|
|
{
|
|
|
|
|
if (manual)
|
|
|
|
|
{
|
|
|
|
|
lock (InitLock)
|
|
|
|
|
{
|
2014-03-11 16:00:25 +01:00
|
|
|
|
if (initialized)
|
|
|
|
|
{
|
|
|
|
|
platform_factory.Dispose();
|
|
|
|
|
platform_factory = null;
|
|
|
|
|
toolkit = null;
|
|
|
|
|
initialized = false;
|
|
|
|
|
}
|
2013-11-12 20:34:53 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-23 21:22:22 +02:00
|
|
|
|
#if DEBUG
|
2013-11-12 20:34:53 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Finalizes this instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
~Toolkit()
|
2013-10-01 22:01:27 +02:00
|
|
|
|
{
|
2014-07-23 21:22:22 +02:00
|
|
|
|
Debug.Print("[Warning] {0} leaked, did you forget to call Dispose()?");
|
|
|
|
|
// We may not Dispose() the toolkit from the finalizer thread,
|
|
|
|
|
// as that will crash on many operating systems.
|
2013-10-01 22:01:27 +02:00
|
|
|
|
}
|
2014-07-23 21:22:22 +02:00
|
|
|
|
#endif
|
2013-10-01 22:01:27 +02:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|