2010-12-04 22:51:40 +01:00
|
|
|
|
#region License
|
|
|
|
|
//
|
|
|
|
|
// The Open Toolkit Library License
|
|
|
|
|
//
|
|
|
|
|
// Copyright (c) 2006 - 2010 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.Diagnostics;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using Bind.Structures;
|
|
|
|
|
|
|
|
|
|
namespace Bind
|
|
|
|
|
{
|
|
|
|
|
using Delegate = Bind.Structures.Delegate;
|
|
|
|
|
using Enum = Bind.Structures.Enum;
|
|
|
|
|
using Type = Bind.Structures.Type;
|
|
|
|
|
|
|
|
|
|
sealed class CppSpecWriter : ISpecWriter
|
|
|
|
|
{
|
|
|
|
|
readonly char[] numbers = "0123456789".ToCharArray();
|
2010-12-05 10:51:36 +01:00
|
|
|
|
const string AllowDeprecated = "ALLOW_DEPRECATED_GL";
|
2010-12-06 10:52:05 +01:00
|
|
|
|
const string DigitPrefix = "T"; // Prefix for identifiers that start with a digit
|
2010-12-06 23:32:47 +01:00
|
|
|
|
const string OutputFileCpp = "glcore++.cpp";
|
|
|
|
|
const string OutputFileHeader = "glcore++.h";
|
|
|
|
|
const string OutputFileHeaderCompat = "glcompat++.h";
|
|
|
|
|
const string OutputFileHeaderEnums = "glenums++.h";
|
|
|
|
|
|
|
|
|
|
BindStreamWriter sw_h = new BindStreamWriter(Path.GetTempFileName());
|
|
|
|
|
BindStreamWriter sw_cpp = new BindStreamWriter(Path.GetTempFileName());
|
|
|
|
|
BindStreamWriter sw_h_compat = new BindStreamWriter(Path.GetTempFileName());
|
|
|
|
|
BindStreamWriter sw_cpp_compat = new BindStreamWriter(Path.GetTempFileName());
|
|
|
|
|
BindStreamWriter sw_h_enums = new BindStreamWriter(Path.GetTempFileName());
|
2010-12-04 22:51:40 +01:00
|
|
|
|
|
|
|
|
|
#region WriteBindings
|
|
|
|
|
|
|
|
|
|
public void WriteBindings(IBind generator)
|
|
|
|
|
{
|
|
|
|
|
WriteBindings(generator.Delegates, generator.Wrappers, generator.Enums);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
void WriteBindings(DelegateCollection delegates, FunctionCollection wrappers, EnumCollection enums)
|
2010-12-04 22:51:40 +01:00
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Writing bindings to {0}", Settings.OutputPath);
|
|
|
|
|
if (!Directory.Exists(Settings.OutputPath))
|
|
|
|
|
Directory.CreateDirectory(Settings.OutputPath);
|
|
|
|
|
|
2010-12-05 12:32:49 +01:00
|
|
|
|
// Hack: Fix 3dfx extension category so it doesn't start with a digit
|
|
|
|
|
if (wrappers.ContainsKey("3dfx"))
|
|
|
|
|
{
|
|
|
|
|
var three_dee_fx = wrappers["3dfx"];
|
|
|
|
|
wrappers.Remove("3dfx");
|
2010-12-06 10:52:05 +01:00
|
|
|
|
wrappers.Add(DigitPrefix + "3dfx", three_dee_fx);
|
2010-12-05 12:32:49 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-05 03:20:18 +01:00
|
|
|
|
Settings.DefaultOutputNamespace = "OpenTK";
|
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
// Enums
|
|
|
|
|
using (var sw = sw_h_enums)
|
|
|
|
|
{
|
|
|
|
|
WriteEnums(sw, enums);
|
|
|
|
|
sw.Flush();
|
|
|
|
|
sw.Close();
|
|
|
|
|
}
|
2010-12-04 22:51:40 +01:00
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
// Core definitions
|
|
|
|
|
using (var sw = sw_h)
|
2010-12-04 22:51:40 +01:00
|
|
|
|
{
|
2010-12-06 23:32:47 +01:00
|
|
|
|
WriteDefinitions(sw, enums, wrappers, Type.CSTypes, false);
|
|
|
|
|
sw.Flush();
|
|
|
|
|
sw.Close();
|
|
|
|
|
}
|
2010-12-06 01:50:36 +01:00
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
// Compatibility definitions
|
|
|
|
|
using (var sw = sw_h_compat)
|
|
|
|
|
{
|
|
|
|
|
WriteDefinitions(sw, enums, wrappers, Type.CSTypes, true);
|
|
|
|
|
sw.Flush();
|
|
|
|
|
sw.Close();
|
|
|
|
|
}
|
2010-12-04 22:51:40 +01:00
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
// Core & compatibility declarations
|
|
|
|
|
using (var sw = sw_cpp)
|
|
|
|
|
{
|
|
|
|
|
WriteDeclarations(sw, wrappers, Type.CSTypes);
|
|
|
|
|
sw.Flush();
|
|
|
|
|
sw.Close();
|
|
|
|
|
}
|
2010-12-04 22:51:40 +01:00
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
string output_header = Path.Combine(Settings.OutputPath, OutputFileHeader);
|
|
|
|
|
string output_cpp = Path.Combine(Settings.OutputPath, OutputFileCpp);
|
|
|
|
|
string output_header_compat = Path.Combine(Settings.OutputPath, OutputFileHeaderCompat);
|
|
|
|
|
string output_header_enums = Path.Combine(Settings.OutputPath, OutputFileHeaderEnums);
|
2010-12-05 11:47:06 +01:00
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
Move(sw_h.File, output_header);
|
|
|
|
|
Move(sw_cpp.File, output_cpp);
|
|
|
|
|
Move(sw_h_compat.File, output_header_compat);
|
|
|
|
|
Move(sw_h_enums.File, output_header_enums);
|
|
|
|
|
}
|
2010-12-04 22:51:40 +01:00
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
void Move(string file, string dest)
|
|
|
|
|
{
|
|
|
|
|
if (File.Exists(dest))
|
|
|
|
|
File.Delete(dest);
|
|
|
|
|
File.Move(file, dest);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region WriteDefinitions
|
2010-12-06 01:50:36 +01:00
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
void WriteDefinitions(BindStreamWriter sw,
|
|
|
|
|
EnumCollection enums, FunctionCollection wrappers,
|
|
|
|
|
Dictionary<string, string> CSTypes, bool deprecated_only)
|
|
|
|
|
{
|
|
|
|
|
sw.WriteLine("#pragma once");
|
|
|
|
|
if (!deprecated_only)
|
|
|
|
|
{
|
|
|
|
|
sw.WriteLine("#ifndef GLCOREPP_H");
|
|
|
|
|
sw.WriteLine("#define GLCOREPP_H");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
sw.WriteLine("#ifndef GLCOMPATPP_H");
|
|
|
|
|
sw.WriteLine("#define GLCOMPATPP_H");
|
2010-12-04 22:51:40 +01:00
|
|
|
|
}
|
2010-12-06 23:32:47 +01:00
|
|
|
|
sw.WriteLine();
|
|
|
|
|
WriteLicense(sw);
|
|
|
|
|
|
|
|
|
|
sw.WriteLine("namespace {0}", Settings.OutputNamespace);
|
|
|
|
|
sw.WriteLine("{");
|
|
|
|
|
sw.Indent();
|
|
|
|
|
sw.WriteLine("namespace {0}", Settings.GLClass);
|
|
|
|
|
sw.WriteLine("{");
|
|
|
|
|
sw.Indent();
|
2010-12-04 22:51:40 +01:00
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
foreach (string extension in wrappers.Keys)
|
2010-12-05 10:08:57 +01:00
|
|
|
|
{
|
2010-12-06 23:32:47 +01:00
|
|
|
|
if (extension != "Core")
|
|
|
|
|
{
|
|
|
|
|
sw.WriteLine("namespace {0}", extension);
|
|
|
|
|
sw.WriteLine("{");
|
|
|
|
|
sw.Indent();
|
|
|
|
|
}
|
2010-12-05 10:08:57 +01:00
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
// Avoid multiple definitions of the same function
|
|
|
|
|
Delegate last_delegate = null;
|
|
|
|
|
|
|
|
|
|
// Write delegates
|
|
|
|
|
sw.WriteLine("namespace Delegates");
|
2010-12-05 10:08:57 +01:00
|
|
|
|
sw.WriteLine("{");
|
|
|
|
|
sw.Indent();
|
2010-12-06 23:32:47 +01:00
|
|
|
|
var functions = wrappers[extension].Where(f => f.Deprecated == deprecated_only);
|
|
|
|
|
last_delegate = null;
|
|
|
|
|
foreach (var f in functions)
|
|
|
|
|
{
|
|
|
|
|
WriteDelegate(sw, f.WrappedDelegate, ref last_delegate);
|
|
|
|
|
}
|
2010-12-05 10:08:57 +01:00
|
|
|
|
|
|
|
|
|
sw.Unindent();
|
2010-12-06 23:32:47 +01:00
|
|
|
|
sw.WriteLine("};");
|
|
|
|
|
|
|
|
|
|
// Write wrappers
|
|
|
|
|
sw.WriteLine("void Init();");
|
|
|
|
|
last_delegate = null;
|
|
|
|
|
foreach (var f in functions)
|
|
|
|
|
{
|
|
|
|
|
if (last_delegate == f.WrappedDelegate)
|
|
|
|
|
continue;
|
|
|
|
|
last_delegate = f.WrappedDelegate;
|
|
|
|
|
|
|
|
|
|
var parameters = f.WrappedDelegate.Parameters.ToString()
|
|
|
|
|
.Replace("String[]", "String*")
|
|
|
|
|
.Replace("[OutAttribute]", String.Empty);
|
|
|
|
|
sw.WriteLine("inline {0} {1}{2}", f.WrappedDelegate.ReturnType,
|
|
|
|
|
f.TrimmedName, parameters);
|
|
|
|
|
sw.WriteLine("{");
|
|
|
|
|
sw.Indent();
|
|
|
|
|
WriteMethodBody(sw, f);
|
|
|
|
|
sw.Unindent();
|
|
|
|
|
sw.WriteLine("}");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (extension != "Core")
|
|
|
|
|
{
|
|
|
|
|
sw.Unindent();
|
|
|
|
|
sw.WriteLine("};");
|
|
|
|
|
}
|
2010-12-05 10:08:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
sw.Unindent();
|
|
|
|
|
sw.WriteLine("};");
|
|
|
|
|
|
|
|
|
|
sw.Unindent();
|
|
|
|
|
sw.WriteLine("}");
|
|
|
|
|
|
|
|
|
|
sw.WriteLine("#endif");
|
2010-12-04 22:51:40 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
#region WriteDeclarations
|
2010-12-04 22:51:40 +01:00
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
void WriteDeclarations(BindStreamWriter sw, FunctionCollection wrappers,
|
|
|
|
|
Dictionary<string, string> CSTypes)
|
2010-12-04 22:51:40 +01:00
|
|
|
|
{
|
2010-12-06 23:32:47 +01:00
|
|
|
|
sw.WriteLine("#ifdef GLPP_INTERNAL_COMPILE_DECLARATIONS");
|
|
|
|
|
|
|
|
|
|
WriteLicense(sw);
|
|
|
|
|
|
|
|
|
|
sw.WriteLine("namespace {0}", Settings.OutputNamespace);
|
|
|
|
|
sw.WriteLine("{");
|
|
|
|
|
sw.Indent();
|
|
|
|
|
|
2010-12-06 10:52:05 +01:00
|
|
|
|
sw.WriteLine("using namespace Internals;");
|
|
|
|
|
|
2010-12-05 10:51:36 +01:00
|
|
|
|
// Used to avoid multiple declarations of the same function
|
|
|
|
|
Delegate last_delegate = null;
|
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
// Declare all functions (deprecated and core).
|
|
|
|
|
// This is necessary for projects that wish to move from
|
|
|
|
|
// deprecated APIs to core piece-by-piece.
|
2010-12-05 10:51:36 +01:00
|
|
|
|
foreach (var ext in wrappers.Keys)
|
|
|
|
|
{
|
|
|
|
|
last_delegate = null;
|
2010-12-06 23:32:47 +01:00
|
|
|
|
var functions = wrappers[ext];
|
|
|
|
|
foreach (var function in functions)
|
2010-12-05 10:51:36 +01:00
|
|
|
|
{
|
2010-12-06 23:32:47 +01:00
|
|
|
|
if (function.WrappedDelegate == last_delegate)
|
|
|
|
|
continue;
|
|
|
|
|
last_delegate = function.WrappedDelegate;
|
|
|
|
|
|
|
|
|
|
string path = GetNamespace(ext);
|
|
|
|
|
sw.WriteLine("{0}::Delegates::p{1} {0}::Delegates::{1} = 0;", path, function.Name);
|
2010-12-05 10:51:36 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
sw.WriteLine();
|
|
|
|
|
|
|
|
|
|
// Add Init() methods
|
2010-12-05 10:08:57 +01:00
|
|
|
|
foreach (var ext in wrappers.Keys)
|
2010-12-04 22:51:40 +01:00
|
|
|
|
{
|
2010-12-06 10:52:05 +01:00
|
|
|
|
string path = GetNamespace(ext);
|
|
|
|
|
|
2010-12-05 17:28:30 +01:00
|
|
|
|
sw.WriteLine("void {0}::Init()", path);
|
2010-12-05 10:08:57 +01:00
|
|
|
|
sw.WriteLine("{");
|
|
|
|
|
sw.Indent();
|
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
last_delegate = null;
|
|
|
|
|
var functions = wrappers[ext];
|
|
|
|
|
foreach (var function in functions)
|
2010-12-05 10:08:57 +01:00
|
|
|
|
{
|
2010-12-06 23:32:47 +01:00
|
|
|
|
if (function.WrappedDelegate == last_delegate)
|
|
|
|
|
continue;
|
|
|
|
|
last_delegate = function.WrappedDelegate;
|
|
|
|
|
|
|
|
|
|
sw.WriteLine("{0}::Delegates::{1} = ({0}::Delegates::p{1})GetAddress(\"gl{1}\");",
|
|
|
|
|
path, function.WrappedDelegate.Name);
|
2010-12-05 23:58:05 +01:00
|
|
|
|
}
|
2010-12-05 10:08:57 +01:00
|
|
|
|
sw.Unindent();
|
|
|
|
|
sw.WriteLine("}");
|
2010-12-04 22:51:40 +01:00
|
|
|
|
}
|
2010-12-06 23:32:47 +01:00
|
|
|
|
|
|
|
|
|
sw.Unindent();
|
|
|
|
|
sw.WriteLine("}");
|
|
|
|
|
|
|
|
|
|
sw.WriteLine("#endif");
|
2010-12-04 22:51:40 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-06 10:52:05 +01:00
|
|
|
|
static string GetNamespace(string ext)
|
|
|
|
|
{
|
|
|
|
|
if (ext == "Core")
|
|
|
|
|
return Settings.GLClass;
|
|
|
|
|
else
|
|
|
|
|
return String.Format("{0}::{1}", Settings.GLClass, Char.IsDigit(ext[0]) ? DigitPrefix + ext : ext);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-04 22:51:40 +01:00
|
|
|
|
#endregion
|
|
|
|
|
|
2010-12-06 23:32:47 +01:00
|
|
|
|
#region ISpecWriter Members
|
|
|
|
|
|
|
|
|
|
#region WriteEnums
|
|
|
|
|
|
|
|
|
|
public void WriteEnums(BindStreamWriter sw, EnumCollection enums)
|
|
|
|
|
{
|
|
|
|
|
sw.WriteLine("#pragma once");
|
|
|
|
|
sw.WriteLine("#ifndef GLENUMSPP_H");
|
|
|
|
|
sw.WriteLine("#define GLENUMSPP_H");
|
|
|
|
|
sw.WriteLine();
|
|
|
|
|
WriteLicense(sw);
|
|
|
|
|
|
|
|
|
|
sw.WriteLine("namespace {0}", Settings.OutputNamespace);
|
|
|
|
|
sw.WriteLine("{");
|
|
|
|
|
sw.Indent();
|
|
|
|
|
|
|
|
|
|
foreach (Enum @enum in enums.Values)
|
|
|
|
|
{
|
|
|
|
|
sw.WriteLine("struct {0} : Enumeration<{0}>", @enum.Name);
|
|
|
|
|
sw.WriteLine("{");
|
|
|
|
|
sw.Indent();
|
|
|
|
|
sw.WriteLine("inline {0}(int value) : Enumeration<{0}>(value) {{ }}", @enum.Name);
|
|
|
|
|
sw.WriteLine("enum");
|
|
|
|
|
sw.WriteLine("{");
|
|
|
|
|
sw.Indent();
|
|
|
|
|
foreach (var c in @enum.ConstantCollection.Values)
|
|
|
|
|
{
|
|
|
|
|
// C++ doesn't have the concept of "unchecked", so remove this.
|
|
|
|
|
if (!c.Unchecked)
|
|
|
|
|
sw.WriteLine("{0},", c);
|
|
|
|
|
else
|
|
|
|
|
sw.WriteLine("{0},", c.ToString().Replace("unchecked", String.Empty));
|
|
|
|
|
}
|
|
|
|
|
sw.Unindent();
|
|
|
|
|
sw.WriteLine("};");
|
|
|
|
|
sw.Unindent();
|
|
|
|
|
sw.WriteLine("};");
|
|
|
|
|
sw.WriteLine();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sw.Unindent();
|
|
|
|
|
sw.WriteLine("}");
|
|
|
|
|
|
|
|
|
|
sw.WriteLine("#endif");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region WriteTypes
|
|
|
|
|
|
|
|
|
|
public void WriteTypes(BindStreamWriter sw, Dictionary<string, string> CSTypes)
|
|
|
|
|
{
|
|
|
|
|
sw.WriteLine();
|
|
|
|
|
foreach (string s in CSTypes.Keys)
|
|
|
|
|
{
|
|
|
|
|
sw.WriteLine("typedef {0} {1};", s, CSTypes[s]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2010-12-05 10:08:57 +01:00
|
|
|
|
#region WriteDelegates
|
|
|
|
|
|
|
|
|
|
public void WriteDelegates(BindStreamWriter sw, DelegateCollection delegates)
|
|
|
|
|
{
|
2010-12-05 16:26:54 +01:00
|
|
|
|
throw new NotSupportedException();
|
2010-12-05 11:47:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void WriteDelegate(BindStreamWriter sw, Delegate d, ref Delegate last_delegate)
|
|
|
|
|
{
|
|
|
|
|
// Avoid multiple definitions of the same function
|
|
|
|
|
if (d != last_delegate)
|
|
|
|
|
{
|
|
|
|
|
last_delegate = d;
|
2010-12-05 16:33:09 +01:00
|
|
|
|
var parameters = d.Parameters.ToString()
|
2010-12-05 17:03:42 +01:00
|
|
|
|
.Replace("String[]", "String*")
|
2010-12-05 16:33:09 +01:00
|
|
|
|
.Replace("[OutAttribute]", String.Empty);
|
2010-12-07 02:26:11 +01:00
|
|
|
|
sw.WriteLine("typedef {0} (APIENTRY *p{1}){2};", d.ReturnType, d.Name, parameters);
|
2010-12-06 23:32:47 +01:00
|
|
|
|
sw.WriteLine("extern p{0} {0};", d.Name);
|
2010-12-05 11:47:06 +01:00
|
|
|
|
}
|
2010-12-05 10:08:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2010-12-04 22:51:40 +01:00
|
|
|
|
#region WriteImports
|
|
|
|
|
|
|
|
|
|
public void WriteImports(BindStreamWriter sw, DelegateCollection delegates)
|
|
|
|
|
{
|
2010-12-05 16:26:54 +01:00
|
|
|
|
throw new NotSupportedException();
|
2010-12-04 22:51:40 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region WriteWrappers
|
|
|
|
|
|
2010-12-05 10:51:36 +01:00
|
|
|
|
public void WriteWrappers(BindStreamWriter sw, FunctionCollection wrappers,
|
|
|
|
|
Dictionary<string, string> CSTypes)
|
2010-12-04 22:51:40 +01:00
|
|
|
|
{
|
2010-12-06 23:32:47 +01:00
|
|
|
|
throw new NotSupportedException();
|
2010-12-04 22:51:40 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-05 16:26:54 +01:00
|
|
|
|
static void WriteMethodBody(BindStreamWriter sw, Function f)
|
|
|
|
|
{
|
2010-12-06 23:32:47 +01:00
|
|
|
|
var callstring = f.Parameters.CallString()
|
2010-12-05 17:03:42 +01:00
|
|
|
|
.Replace("String[]", "String*");
|
2010-12-05 16:33:09 +01:00
|
|
|
|
if (f.ReturnType != null && !f.ReturnType.ToString().ToLower().Contains("void"))
|
2010-12-05 17:03:42 +01:00
|
|
|
|
sw.WriteLine("return Delegates::{0}{1};", f.WrappedDelegate.Name, callstring);
|
2010-12-05 16:26:54 +01:00
|
|
|
|
else
|
2010-12-05 17:03:42 +01:00
|
|
|
|
sw.WriteLine("Delegates::{0}{1};", f.WrappedDelegate.Name, callstring);
|
2010-12-05 16:26:54 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-04 22:51:40 +01:00
|
|
|
|
static DocProcessor processor = new DocProcessor(Path.Combine(Settings.DocPath, Settings.DocFile));
|
|
|
|
|
static Dictionary<string, string> docfiles;
|
|
|
|
|
void WriteDocumentation(BindStreamWriter sw, Function f)
|
|
|
|
|
{
|
|
|
|
|
if (docfiles == null)
|
|
|
|
|
{
|
|
|
|
|
docfiles = new Dictionary<string, string>();
|
|
|
|
|
foreach (string file in Directory.GetFiles(Settings.DocPath))
|
|
|
|
|
{
|
|
|
|
|
docfiles.Add(Path.GetFileName(file), file);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string docfile = null;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
docfile = Settings.FunctionPrefix + f.WrappedDelegate.Name + ".xml";
|
|
|
|
|
if (!docfiles.ContainsKey(docfile))
|
|
|
|
|
docfile = Settings.FunctionPrefix + f.TrimmedName + ".xml";
|
|
|
|
|
if (!docfiles.ContainsKey(docfile))
|
|
|
|
|
docfile = Settings.FunctionPrefix + f.TrimmedName.TrimEnd(numbers) + ".xml";
|
|
|
|
|
|
|
|
|
|
string doc = null;
|
|
|
|
|
if (docfiles.ContainsKey(docfile))
|
|
|
|
|
{
|
|
|
|
|
doc = processor.ProcessFile(docfiles[docfile]);
|
|
|
|
|
}
|
|
|
|
|
if (doc == null)
|
|
|
|
|
{
|
|
|
|
|
doc = "/// <summary></summary>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int summary_start = doc.IndexOf("<summary>") + "<summary>".Length;
|
|
|
|
|
string warning = "[deprecated: v{0}]";
|
|
|
|
|
string category = "[requires: {0}]";
|
|
|
|
|
if (f.Deprecated)
|
|
|
|
|
{
|
|
|
|
|
warning = String.Format(warning, f.DeprecatedVersion);
|
|
|
|
|
doc = doc.Insert(summary_start, warning);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (f.Extension != "Core" && !String.IsNullOrEmpty(f.Category))
|
|
|
|
|
{
|
|
|
|
|
category = String.Format(category, f.Category);
|
|
|
|
|
doc = doc.Insert(summary_start, category);
|
|
|
|
|
}
|
|
|
|
|
else if (!String.IsNullOrEmpty(f.Version))
|
|
|
|
|
{
|
|
|
|
|
if (f.Category.StartsWith("VERSION"))
|
|
|
|
|
category = String.Format(category, "v" + f.Version);
|
|
|
|
|
else
|
|
|
|
|
category = String.Format(category, "v" + f.Version + " and " + f.Category);
|
|
|
|
|
doc = doc.Insert(summary_start, category);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sw.WriteLine(doc);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("[Warning] Error processing file {0}: {1}", docfile, e.ToString());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region WriteLicense
|
|
|
|
|
|
|
|
|
|
public void WriteLicense(BindStreamWriter sw)
|
|
|
|
|
{
|
|
|
|
|
sw.WriteLine(File.ReadAllText(Path.Combine(Settings.InputPath, Settings.LicenseFile)));
|
|
|
|
|
sw.WriteLine();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|