Opentk/Source/Bind/Settings.cs

61 lines
2 KiB
C#
Raw Normal View History

#region --- License ---
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
* See license.txt for license info
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
2007-08-01 09:27:57 +00:00
namespace Bind
{
static class Settings
{
2007-08-12 16:14:23 +00:00
public static string InputPath = "..\\..\\..\\Source\\Bind\\Specifications";
2007-08-01 09:27:57 +00:00
public static string OutputPath = "..\\..\\..\\Source\\OpenTK\\OpenGL\\Bindings";
public static string OutputNamespace = "OpenTK.OpenGL";
2007-08-20 10:46:37 +00:00
public const string DefaultInputPath = "..\\..\\..\\Source\\Bind\\Specifications";
public const string DefaultOutputPath = "..\\..\\..\\Source\\OpenTK\\OpenGL\\Bindings";
public const string DefaultOutputNamespace = "OpenTK.OpenGL";
2007-08-20 10:46:37 +00:00
2007-08-20 12:25:48 +00:00
public static string OutputClass = "GL";
public static string FunctionPrefix = "gl";
public static string ConstantPrefix = "GL_";
// TODO: This code is too fragile.
public static string NestedEunmsClass = "Enums";
private static string normalEnumsClassOverride;
public static string NormalEnumsClass
{
get
{
if (!String.IsNullOrEmpty(normalEnumsClassOverride))
return normalEnumsClassOverride;
return OutputClass + "." + NestedEunmsClass;
}
set { normalEnumsClassOverride = value; }
}
public static string AuxEnumsClass = "GL." + NestedEunmsClass;
2007-08-01 21:14:39 +00:00
2007-08-01 09:27:57 +00:00
public static string DelegatesClass = "Delegates";
public static string ImportsClass = "Imports";
2007-08-20 12:25:48 +00:00
2007-08-01 09:27:57 +00:00
public static Legacy Compatibility = Legacy.None;
/// <summary>
/// The name of the C# enum which holds every single OpenGL enum (for compatibility purposes).
/// </summary>
public static string CompleteEnumName = "All";
2007-08-12 16:14:23 +00:00
2007-08-01 09:27:57 +00:00
public enum Legacy
{
None,
Tao,
}
2007-08-12 16:14:23 +00:00
2007-08-20 12:25:48 +00:00
public static string WindowsGDI = "OpenTK.Platform.Windows.API";
}
}