2009-09-03 21:01:11 +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
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
2009-10-07 12:44:45 +02:00
|
|
|
|
namespace OpenTK
|
2009-09-03 21:01:11 +02:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2009-10-07 12:44:45 +02:00
|
|
|
|
/// Provides a common foundation for all flat API bindings and implements the extension loading interface.
|
2009-09-03 21:01:11 +02:00
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract class BindingsBase
|
|
|
|
|
{
|
|
|
|
|
#region Fields
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A reflection handle to the nested type that contains the function delegates.
|
|
|
|
|
/// </summary>
|
|
|
|
|
readonly protected Type DelegatesClass;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A refection handle to the nested type that contains core functions (i.e. not extensions).
|
|
|
|
|
/// </summary>
|
|
|
|
|
readonly protected Type CoreClass;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A mapping of core function names to MethodInfo handles.
|
|
|
|
|
/// </summary>
|
|
|
|
|
readonly protected SortedList<string, MethodInfo> CoreFunctionMap = new SortedList<string, MethodInfo>();
|
|
|
|
|
|
|
|
|
|
bool rebuildExtensionList = true;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Constructors
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructs a new BindingsBase instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public BindingsBase()
|
|
|
|
|
{
|
|
|
|
|
DelegatesClass = this.GetType().GetNestedType("Delegates", BindingFlags.Static | BindingFlags.NonPublic);
|
|
|
|
|
CoreClass = this.GetType().GetNestedType("Core", BindingFlags.Static | BindingFlags.NonPublic);
|
|
|
|
|
|
2009-10-07 12:44:45 +02:00
|
|
|
|
if (CoreClass != null)
|
2009-09-03 21:01:11 +02:00
|
|
|
|
{
|
2009-10-07 12:44:45 +02:00
|
|
|
|
MethodInfo[] methods = CoreClass.GetMethods(BindingFlags.Static | BindingFlags.NonPublic);
|
|
|
|
|
CoreFunctionMap = new SortedList<string, MethodInfo>(methods.Length); // Avoid resizing
|
|
|
|
|
foreach (MethodInfo m in methods)
|
|
|
|
|
{
|
|
|
|
|
CoreFunctionMap.Add(m.Name, m);
|
|
|
|
|
}
|
2009-09-03 21:01:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Protected Members
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a <see cref="System.Boolean"/> that indicates whether the list of supported extensions may have changed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected bool RebuildExtensionList
|
|
|
|
|
{
|
|
|
|
|
get { return rebuildExtensionList; }
|
|
|
|
|
set { rebuildExtensionList = value; }
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-07 12:52:48 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieves an unmanaged function pointer to the specified function.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="funcname">
|
|
|
|
|
/// A <see cref="System.String"/> that defines the name of the function.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <returns>
|
|
|
|
|
/// A <see cref="IntPtr"/> that contains the address of funcname or IntPtr.Zero,
|
|
|
|
|
/// if the function is not supported by the drivers.
|
|
|
|
|
/// </returns>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Note: some drivers are known to return non-zero values for unsupported functions.
|
|
|
|
|
/// Typical values include 1 and 2 - inheritors are advised to check for and ignore these
|
|
|
|
|
/// values.
|
|
|
|
|
/// </remarks>
|
2009-10-07 12:44:45 +02:00
|
|
|
|
protected abstract IntPtr GetAddress(string funcname);
|
|
|
|
|
|
2009-09-03 21:01:11 +02:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Internal Members
|
|
|
|
|
|
|
|
|
|
#region LoadAll
|
|
|
|
|
|
|
|
|
|
internal void LoadAll()
|
|
|
|
|
{
|
|
|
|
|
// Using reflection is more than 3 times faster than directly loading delegates on the first
|
|
|
|
|
// run, probably due to code generation overhead. Subsequent runs are faster with direct loading
|
|
|
|
|
// than with reflection, but the first time is more significant.
|
|
|
|
|
|
|
|
|
|
int supported = 0;
|
|
|
|
|
|
|
|
|
|
FieldInfo[] delegates = DelegatesClass.GetFields(BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public);
|
|
|
|
|
if (delegates == null)
|
|
|
|
|
throw new InvalidOperationException("The specified type does not have any loadable extensions.");
|
|
|
|
|
|
2009-10-24 12:35:49 +02:00
|
|
|
|
Debug.Write("Loading extensions for " + this.GetType().FullName + "... ");
|
2009-09-03 21:01:11 +02:00
|
|
|
|
|
2009-10-24 12:35:49 +02:00
|
|
|
|
Stopwatch time = new Stopwatch();
|
2009-09-03 21:01:11 +02:00
|
|
|
|
time.Reset();
|
|
|
|
|
time.Start();
|
|
|
|
|
|
|
|
|
|
foreach (FieldInfo f in delegates)
|
|
|
|
|
{
|
|
|
|
|
Delegate d = LoadDelegate(f.Name, f.FieldType);
|
|
|
|
|
if (d != null)
|
|
|
|
|
++supported;
|
|
|
|
|
|
|
|
|
|
f.SetValue(null, d);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rebuildExtensionList = true;
|
|
|
|
|
|
|
|
|
|
time.Stop();
|
2009-10-24 12:35:49 +02:00
|
|
|
|
Debug.Print("{0} extensions loaded in {1} ms.", supported, time.Elapsed.TotalMilliseconds);
|
2009-09-03 21:01:11 +02:00
|
|
|
|
time.Reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Load
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Loads all extension and core functions.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal bool Load(string function)
|
|
|
|
|
{
|
|
|
|
|
FieldInfo f = DelegatesClass.GetField(function, BindingFlags.Static | BindingFlags.NonPublic);
|
|
|
|
|
if (f == null)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
Delegate old = f.GetValue(null) as Delegate;
|
|
|
|
|
Delegate @new = LoadDelegate(f.Name, f.FieldType);
|
|
|
|
|
if (old.Target != @new.Target)
|
|
|
|
|
{
|
|
|
|
|
f.SetValue(null, @new);
|
|
|
|
|
}
|
|
|
|
|
return @new != null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Private Members
|
|
|
|
|
|
|
|
|
|
#region LoadDelegate
|
|
|
|
|
|
2009-09-04 23:44:39 +02:00
|
|
|
|
// Tries to load the specified core or extension function.
|
2009-09-03 21:01:11 +02:00
|
|
|
|
Delegate LoadDelegate(string name, Type signature)
|
|
|
|
|
{
|
|
|
|
|
MethodInfo m;
|
|
|
|
|
return
|
|
|
|
|
GetExtensionDelegate(name, signature) ??
|
|
|
|
|
(CoreFunctionMap.TryGetValue((name.Substring(2)), out m) ?
|
|
|
|
|
Delegate.CreateDelegate(signature, m) : null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region GetExtensionDelegate
|
|
|
|
|
|
|
|
|
|
// Creates a System.Delegate that can be used to call a dynamically exported OpenGL function.
|
2009-10-07 12:44:45 +02:00
|
|
|
|
internal Delegate GetExtensionDelegate(string name, Type signature)
|
2009-09-03 21:01:11 +02:00
|
|
|
|
{
|
2009-10-07 12:44:45 +02:00
|
|
|
|
IntPtr address = GetAddress(name);
|
|
|
|
|
|
2009-09-03 21:01:11 +02:00
|
|
|
|
if (address == IntPtr.Zero ||
|
|
|
|
|
address == new IntPtr(1) || // Workaround for buggy nvidia drivers which return
|
|
|
|
|
address == new IntPtr(2)) // 1 or 2 instead of IntPtr.Zero for some extensions.
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return Marshal.GetDelegateForFunctionPointer(address, signature);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|