2009-08-12 12:12:16 +02:00
|
|
|
#region --- License ---
|
2009-02-22 11:43:35 +01:00
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
* See license.txt for license info
|
|
|
|
*/
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Diagnostics;
|
2009-08-17 14:28:22 +02:00
|
|
|
using System.IO;
|
2009-10-27 23:37:05 +01:00
|
|
|
using System.Linq;
|
2009-02-22 11:43:35 +01:00
|
|
|
using System.Text.RegularExpressions;
|
2009-05-29 17:57:01 +02:00
|
|
|
using System.Xml.XPath;
|
2009-08-17 14:28:22 +02:00
|
|
|
using Bind.Structures;
|
2009-08-21 22:28:14 +02:00
|
|
|
using Delegate=Bind.Structures.Delegate;
|
|
|
|
using Enum=Bind.Structures.Enum;
|
|
|
|
using Type=Bind.Structures.Type;
|
2009-02-22 11:43:35 +01:00
|
|
|
|
|
|
|
namespace Bind.GL2
|
|
|
|
{
|
|
|
|
class Generator : IBind
|
|
|
|
{
|
2010-12-02 22:36:05 +01:00
|
|
|
#region Fields
|
2009-02-22 11:43:35 +01:00
|
|
|
|
2009-03-08 19:08:35 +01:00
|
|
|
protected static string glTypemap = "GL2/gl.tm";
|
2011-12-02 14:12:53 +01:00
|
|
|
protected static string csTypemap = Settings.LanguageTypeMapFile;
|
2009-03-08 19:08:35 +01:00
|
|
|
protected static string enumSpec = "GL2/enum.spec";
|
|
|
|
protected static string enumSpecExt = "GL2/enumext.spec";
|
|
|
|
protected static string glSpec = "GL2/gl.spec";
|
2009-02-22 11:43:35 +01:00
|
|
|
protected static string glSpecExt = "";
|
2009-02-28 20:29:34 +01:00
|
|
|
|
2009-02-22 11:43:35 +01:00
|
|
|
protected static string loadAllFuncName = "LoadAll";
|
|
|
|
|
|
|
|
protected static Regex enumToDotNet = new Regex("_[a-z|A-Z]?", RegexOptions.Compiled);
|
|
|
|
|
2009-03-21 22:44:07 +01:00
|
|
|
protected static readonly char[] numbers = "0123456789".ToCharArray();
|
|
|
|
//protected static readonly Dictionary<string, string> doc_replacements;
|
2010-12-02 22:36:05 +01:00
|
|
|
|
2010-12-03 10:02:55 +01:00
|
|
|
protected ISpecReader SpecReader = new XmlSpecReader();
|
2010-12-02 22:36:05 +01:00
|
|
|
|
2009-02-22 11:43:35 +01:00
|
|
|
#endregion
|
|
|
|
|
2010-12-02 22:36:05 +01:00
|
|
|
#region Constructors
|
2009-02-22 11:43:35 +01:00
|
|
|
|
|
|
|
public Generator()
|
|
|
|
{
|
|
|
|
if (Settings.Compatibility == Settings.Legacy.Tao)
|
|
|
|
{
|
|
|
|
Settings.OutputNamespace = "Tao.OpenGl";
|
|
|
|
Settings.OutputClass = "Gl";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Defaults
|
|
|
|
}
|
2010-12-02 22:58:49 +01:00
|
|
|
|
|
|
|
Settings.ImportsFile = "GLCore.cs";
|
|
|
|
Settings.DelegatesFile = "GLDelegates.cs";
|
|
|
|
Settings.EnumsFile = "GLEnums.cs";
|
|
|
|
Settings.WrappersFile = "GL.cs";
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2010-12-03 11:21:50 +01:00
|
|
|
#region IBind Members
|
|
|
|
|
|
|
|
public DelegateCollection Delegates { get; private set; }
|
|
|
|
public EnumCollection Enums { get; private set; }
|
|
|
|
public FunctionCollection Wrappers { get; private set; }
|
2009-02-22 11:43:35 +01:00
|
|
|
|
|
|
|
public virtual void Process()
|
|
|
|
{
|
2010-12-06 15:34:16 +01:00
|
|
|
string overrides = Path.Combine(Settings.InputPath, Settings.OverridesFile);
|
|
|
|
Type.GLTypes = SpecReader.ReadTypeMap(Path.Combine(Settings.InputPath, glTypemap));
|
|
|
|
Type.CSTypes = SpecReader.ReadCSTypeMap(Path.Combine(Settings.InputPath, csTypemap));
|
|
|
|
Enums = SpecReader.ReadEnums(Path.Combine(Settings.InputPath, enumSpec));
|
|
|
|
Utilities.Merge(Enums, SpecReader.ReadEnums(overrides));
|
|
|
|
Delegates = SpecReader.ReadDelegates(Path.Combine(Settings.InputPath, glSpec));
|
|
|
|
Utilities.Merge(Delegates, SpecReader.ReadDelegates(overrides));
|
|
|
|
|
|
|
|
Enums = new EnumProcessor(overrides).Process(Enums);
|
|
|
|
Wrappers = new FuncProcessor(overrides).Process(Delegates, Enums);
|
2009-02-28 20:29:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
2009-02-22 11:43:35 +01:00
|
|
|
}
|
|
|
|
}
|