mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 19:45:29 +00:00
Remove java/cpp code from binding generator
This commit is contained in:
parent
dc372a5bf1
commit
ab11fa4f6e
|
@ -39,7 +39,7 @@ namespace Bind
|
|||
using Enum = Bind.Structures.Enum;
|
||||
using Type = Bind.Structures.Type;
|
||||
|
||||
sealed class CSharpSpecWriter : ISpecWriter
|
||||
sealed class CSharpSpecWriter
|
||||
{
|
||||
IBind Generator { get; set; }
|
||||
Settings Settings { get { return Generator.Settings; } }
|
||||
|
|
|
@ -1,732 +0,0 @@
|
|||
#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
|
||||
{
|
||||
const string AllowDeprecated = "GLPP_COMPATIBLE";
|
||||
const string DigitPrefix = "T"; // Prefix for identifiers that start with a digit
|
||||
const string OutputFileHeader = "gl++.h";
|
||||
|
||||
IBind Generator { get; set; }
|
||||
Settings Settings { get { return Generator.Settings; } }
|
||||
|
||||
#region Verbatim parts of output file
|
||||
|
||||
const string GetAddressDefinition = @"
|
||||
namespace Internals
|
||||
{
|
||||
#if defined(_WIN32)
|
||||
extern ""C""
|
||||
{
|
||||
#define GLPP_APIENTRY __stdcall
|
||||
typedef int (*PROC)();
|
||||
extern void* __stdcall wglGetCurrentContext();
|
||||
extern PROC __stdcall wglGetProcAddress(const char *procname);
|
||||
extern void* __stdcall LoadLibraryA(const char *libname);
|
||||
extern PROC __stdcall GetProcAddress(void *module, const char *procname);
|
||||
}
|
||||
inline void*& LoadGLAddress()
|
||||
{
|
||||
static void* address = LoadLibraryA(""opengl32.dll"");
|
||||
return address;
|
||||
}
|
||||
inline void*& GetGLAddress()
|
||||
{
|
||||
static void* address = LoadGLAddress();
|
||||
return address;
|
||||
}
|
||||
inline PROC winGetAddress(const char *procname)
|
||||
{
|
||||
PROC addr = GetProcAddress(GetGLAddress(), procname);
|
||||
return addr ? addr : wglGetProcAddress(procname);
|
||||
}
|
||||
|
||||
#elif !defined(__APPLE__)
|
||||
extern ""C""
|
||||
{
|
||||
#define GLPP_APIENTRY
|
||||
extern void* glXGetCurrentContext();
|
||||
extern void (*glXGetProcAddress(const char *procname))();
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(__APPLE__)
|
||||
#define GLPP_APIENTRY
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <AvailabilityMacros.h>
|
||||
|
||||
extern ""C"" void* CGLGetCurrentContext();
|
||||
|
||||
#ifdef MAC_OS_X_VERSION_10_3
|
||||
#include <dlfcn.h>
|
||||
inline void* NSGLGetProcAddress(const char *name)
|
||||
{
|
||||
static void* image = NULL;
|
||||
if (NULL == image)
|
||||
{
|
||||
image = dlopen(""/System/Library/Frameworks/OpenGL.framework/Versions/Current/OpenGL"", RTLD_LAZY);
|
||||
}
|
||||
return image ? dlsym(image, (const char*)name) : NULL;
|
||||
}
|
||||
#else
|
||||
#include <mach-o/dyld.h>
|
||||
inline void* NSGLGetProcAddress(const char *name)
|
||||
{
|
||||
static const struct mach_header* image = NULL;
|
||||
NSSymbol symbol;
|
||||
char* symbolName;
|
||||
if (NULL == image)
|
||||
{
|
||||
image = NSAddImage(""/System/Library/Frameworks/OpenGL.framework/Versions/Current/OpenGL"", NSADDIMAGE_OPTION_RETURN_ON_ERROR);
|
||||
}
|
||||
// prepend a '_' for the Unix C symbol mangling convention
|
||||
symbolName = malloc(strlen((const char*)name) + 2);
|
||||
strcpy(symbolName+1, (const char*)name);
|
||||
symbolName[0] = '_';
|
||||
symbol = NULL;
|
||||
symbol = image ? NSLookupSymbolInImage(image, symbolName, NSLOOKUPSYMBOLINIMAGE_OPTION_BIND | NSLOOKUPSYMBOLINIMAGE_OPTION_RETURN_ON_ERROR) : NULL;
|
||||
free(symbolName);
|
||||
return symbol ? NSAddressOfSymbol(symbol) : NULL;
|
||||
}
|
||||
#endif /* MAC_OS_X_VERSION_10_3 */
|
||||
#endif /* __APPLE__ */
|
||||
|
||||
#if defined(__sgi) || defined (__sun)
|
||||
#define GLPP_APIENTRY
|
||||
#include <dlfcn.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
inline void* LoadSymbol(const char *name)
|
||||
{
|
||||
// dlopen what?
|
||||
if ((void *h = dlopen(NULL, RTLD_LAZY | RTLD_LOCAL)) == NULL) return NULL;
|
||||
return dlsym(h, ""glXGetProcAddress"");
|
||||
}
|
||||
inline void* dlGetProcAddress(const char *name)
|
||||
{
|
||||
static void* gpa = LoadSymbol(""glXGetProcAddress"");
|
||||
|
||||
if (gpa != NULL)
|
||||
return ((void*(*)(const char*))gpa)(name);
|
||||
else
|
||||
return dlsym(h, (const char*)name);
|
||||
}
|
||||
inline void* dlGetCurrentContext()
|
||||
{
|
||||
static void* gpa = LoadSymbol(""glXGetProcAddress"");
|
||||
|
||||
if (gpa != NULL)
|
||||
return ((void*(*)())gpa)();
|
||||
|
||||
return NULL;
|
||||
}
|
||||
#endif /* __sgi || __sun */
|
||||
|
||||
inline void* GetAddress(const char* name)
|
||||
{
|
||||
#if defined(_WIN32)
|
||||
return (void*)winGetAddress(name);
|
||||
#elif defined(__APPLE__)
|
||||
return (void*)NSGLGetProcAddress(name);
|
||||
#elif defined(__sgi) || defined(__sun)
|
||||
return (void*)dlGetProcAddress(name);
|
||||
#else
|
||||
return (void*)glXGetProcAddress((const char*)name);
|
||||
#endif
|
||||
}
|
||||
|
||||
inline void* GetCurrentContext()
|
||||
{
|
||||
#if defined(_WIN32)
|
||||
return wglGetCurrentContext();
|
||||
#elif defined(__APPLE__)
|
||||
return CGLGetCurrentContext();
|
||||
#elif defined(__sgi) || defined(__sun)
|
||||
return dlGetCurrentContext();
|
||||
#else
|
||||
return glXGetCurrentContext();
|
||||
#endif
|
||||
}
|
||||
}
|
||||
";
|
||||
|
||||
const string TypeDefinitions = @"
|
||||
template<typename T>
|
||||
struct Enumeration
|
||||
{
|
||||
private:
|
||||
int value;
|
||||
|
||||
public:
|
||||
inline Enumeration(int value)
|
||||
{
|
||||
this->value = value;
|
||||
}
|
||||
|
||||
inline operator int() const
|
||||
{
|
||||
return value;
|
||||
}
|
||||
};
|
||||
|
||||
typedef unsigned int GLenum;
|
||||
typedef unsigned int GLbitfield;
|
||||
typedef int GLsizei; // size_t
|
||||
typedef bool GLboolean;
|
||||
typedef signed char GLbyte;
|
||||
typedef unsigned char GLubyte;
|
||||
typedef short GLshort;
|
||||
typedef unsigned short GLushort;
|
||||
typedef int GLint;
|
||||
typedef unsigned int GLuint;
|
||||
typedef long GLlong;
|
||||
typedef unsigned long GLulong;
|
||||
typedef float GLfloat;
|
||||
typedef float GLclampf;
|
||||
typedef double GLdouble;
|
||||
typedef double GLclampd;
|
||||
typedef void GLvoid;
|
||||
typedef GLint* GLintptr;
|
||||
typedef GLsizei* GLsizeiptr;
|
||||
|
||||
typedef const char* GLstring;
|
||||
#if defined(_MSC_VER) && _MSC_VER < 1400
|
||||
typedef __int64 GLint64EXT;
|
||||
typedef unsigned __int64 GLuint64EXT;
|
||||
#else
|
||||
typedef signed long long GLint64EXT;
|
||||
typedef unsigned long long GLuint64EXT;
|
||||
#endif
|
||||
typedef GLint64EXT GLint64;
|
||||
typedef GLuint64EXT GLuint64;
|
||||
typedef struct __GLsync { } *GLsync;
|
||||
typedef struct __GLhandleARB { } *GLhandleARB;
|
||||
typedef GLintptr GLintptrARB;
|
||||
typedef GLsizeiptr GLsizeiptrARB;
|
||||
|
||||
typedef char GLchar;
|
||||
typedef void (*GLDEBUGPROCAMD)(GLuint id,
|
||||
GLenum category, GLenum severity, GLsizei length,
|
||||
const GLchar* message, GLvoid* userParam);
|
||||
|
||||
/* For ARB_debug_output */
|
||||
|
||||
typedef void (*GLDEBUGPROCARB)(GLenum source,
|
||||
GLenum type, GLuint id, GLenum severity,
|
||||
GLsizei length, const GLchar* message, GLvoid* userParam);
|
||||
|
||||
/* For GL_ARB_cl_event */
|
||||
|
||||
typedef struct cl_context *_cl_context;
|
||||
typedef struct cl_event *_cl_event;
|
||||
|
||||
//typedef GLsizei IntPtr;
|
||||
typedef void* IntPtr;
|
||||
typedef GLbyte SByte;
|
||||
typedef GLubyte Byte;
|
||||
typedef GLshort Int16;
|
||||
typedef GLushort UInt16;
|
||||
typedef GLint Int32;
|
||||
typedef GLuint UInt32;
|
||||
typedef GLlong Int64;
|
||||
typedef GLulong UInt64;
|
||||
typedef GLfloat Single;
|
||||
typedef GLdouble Double;
|
||||
typedef GLstring String;
|
||||
typedef char* StringBuilder;
|
||||
typedef GLDEBUGPROCAMD DebugProcAmd;
|
||||
typedef GLDEBUGPROCARB DebugProcArb;
|
||||
typedef struct _GLvdpauSurfaceNV *GLvdpauSurfaceNV;
|
||||
|
||||
struct Half
|
||||
{
|
||||
private:
|
||||
GLushort value;
|
||||
public:
|
||||
};
|
||||
typedef Half GLhalf;
|
||||
typedef GLhalf GLhalfNV;
|
||||
";
|
||||
|
||||
#endregion
|
||||
|
||||
BindStreamWriter sw_h = new BindStreamWriter(Path.GetTempFileName());
|
||||
|
||||
#region WriteBindings
|
||||
|
||||
public void WriteBindings(IBind generator)
|
||||
{
|
||||
Generator = generator;
|
||||
WriteBindings(generator.Delegates, generator.Wrappers, generator.Enums);
|
||||
}
|
||||
|
||||
void WriteBindings(DelegateCollection delegates, FunctionCollection wrappers, EnumCollection enums)
|
||||
{
|
||||
Console.WriteLine("Writing bindings to {0}", Settings.OutputPath);
|
||||
if (!Directory.Exists(Settings.OutputPath))
|
||||
Directory.CreateDirectory(Settings.OutputPath);
|
||||
|
||||
// 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");
|
||||
wrappers.Add(DigitPrefix + "3dfx", three_dee_fx);
|
||||
}
|
||||
|
||||
Settings.DefaultOutputNamespace = "OpenTK";
|
||||
|
||||
using (var sw = sw_h)
|
||||
{
|
||||
sw.WriteLine("#pragma once");
|
||||
sw.WriteLine("#ifndef GLPP_H");
|
||||
sw.WriteLine("#define GLPP_H");
|
||||
sw.WriteLine();
|
||||
|
||||
WriteLicense(sw);
|
||||
|
||||
sw.WriteLine("namespace {0}", Settings.OutputNamespace);
|
||||
sw.WriteLine("{");
|
||||
sw.Indent();
|
||||
|
||||
WriteGetAddress(sw);
|
||||
WriteTypes(sw);
|
||||
WriteEnums(sw, enums);
|
||||
WriteDefinitions(sw, enums, wrappers, Generator.CSTypes); // Core definitions
|
||||
|
||||
sw.Unindent();
|
||||
sw.WriteLine("}");
|
||||
|
||||
sw.WriteLine("#endif");
|
||||
|
||||
sw.Flush();
|
||||
sw.Close();
|
||||
}
|
||||
|
||||
string output_header = Path.Combine(Settings.OutputPath, OutputFileHeader);
|
||||
Move(sw_h.File, output_header);
|
||||
}
|
||||
|
||||
void Move(string file, string dest)
|
||||
{
|
||||
if (File.Exists(dest))
|
||||
File.Delete(dest);
|
||||
File.Move(file, dest);
|
||||
}
|
||||
|
||||
static Delegate WriteWrapper(Delegate last_delegate, Function f, BindStreamWriter sw)
|
||||
{
|
||||
//if (last_delegate == f.WrappedDelegate)
|
||||
// return last_delegate; // Multiple wrappers for the same delegate are not necessary in C++
|
||||
|
||||
var valid = true;
|
||||
var parameters = GenerateParameterString(f, true, out valid);
|
||||
if (!valid)
|
||||
return last_delegate;
|
||||
|
||||
last_delegate = f.WrappedDelegate;
|
||||
|
||||
sw.WriteLine("inline {0} {1}({2})", f.WrappedDelegate.ReturnType,
|
||||
f.TrimmedName, parameters);
|
||||
sw.WriteLine("{");
|
||||
sw.Indent();
|
||||
WriteMethodBody(sw, f);
|
||||
sw.Unindent();
|
||||
sw.WriteLine("}");
|
||||
return last_delegate;
|
||||
}
|
||||
|
||||
static string GenerateParameterString(Delegate d, bool check_validity, out bool valid)
|
||||
{
|
||||
if (d == null)
|
||||
throw new ArgumentNullException("d");
|
||||
|
||||
valid = true;
|
||||
var sb = new StringBuilder();
|
||||
|
||||
if (d.Parameters.Count > 0)
|
||||
{
|
||||
foreach (var p in d.Parameters)
|
||||
{
|
||||
if (p.CurrentType.ToLower() == "string[]")
|
||||
p.CurrentType = "char**";
|
||||
if (p.CurrentType.ToLower() == "string")
|
||||
p.CurrentType = "char*";
|
||||
|
||||
if (p.Reference)
|
||||
{
|
||||
if (/*check_validity &&*/ p.Generic)
|
||||
{
|
||||
// We don't need generic parameters in C++ and void& is illegal.
|
||||
valid = false;
|
||||
return String.Empty;
|
||||
}
|
||||
|
||||
if (p.Flow != FlowDirection.Out)
|
||||
sb.Append("const ");
|
||||
sb.Append(p.QualifiedType);
|
||||
sb.Append('*', p.Array);
|
||||
sb.Append("&");
|
||||
}
|
||||
else if (p.Array > 0)
|
||||
{
|
||||
// Hack: generic parameters with array types are
|
||||
// not real (i.e. they are created by the generator
|
||||
// specifically for managed languages). We don't
|
||||
// need them in C++.
|
||||
// Todo: move C#/Java-specific code to their respective
|
||||
// classes, instead of the main generator.
|
||||
// Note: the 1-dimensional array is handled through the pointer case below.
|
||||
// (C# differentiates between arrays and pointers, C++ doesn't).
|
||||
if (check_validity && (p.Generic || p.Array == 1))
|
||||
{
|
||||
valid = false;
|
||||
return String.Empty;
|
||||
}
|
||||
|
||||
if (p.Flow != FlowDirection.Out)
|
||||
sb.Append("const ");
|
||||
sb.Append(p.Generic ? "void" : p.QualifiedType); // We don't need generic parameters in C++.
|
||||
sb.Append('*', p.Array);
|
||||
}
|
||||
else if (p.Pointer > 0)
|
||||
{
|
||||
if (p.Flow != FlowDirection.Out)
|
||||
sb.Append("const ");
|
||||
sb.Append(p.Generic ? "void" : p.QualifiedType); // We don't need generic parameters in C++.
|
||||
sb.Append('*', p.Pointer);
|
||||
}
|
||||
else if (p.CurrentType == "IntPtr")
|
||||
{
|
||||
if (p.Flow != FlowDirection.Out)
|
||||
sb.Append("const ");
|
||||
sb.Append("void*");
|
||||
}
|
||||
else
|
||||
{
|
||||
sb.Append(p.QualifiedType);
|
||||
}
|
||||
|
||||
sb.Append(" ");
|
||||
sb.Append(p.Name);
|
||||
sb.Append(", ");
|
||||
}
|
||||
|
||||
if (d.Parameters.Count > 0)
|
||||
sb.Remove(sb.Length - 2, 2);
|
||||
}
|
||||
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
static Delegate WriteInitDelegate(Delegate last_delegate, BindStreamWriter sw, Function f)
|
||||
{
|
||||
if (last_delegate != f.WrappedDelegate)
|
||||
{
|
||||
sw.WriteLine("Delegates::{0}() = (Delegates::p{0})OpenTK::Internals::GetAddress(\"gl{0}\");", f.WrappedDelegate.Name);
|
||||
last_delegate = f.WrappedDelegate;
|
||||
}
|
||||
return last_delegate;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region WriteDefinitions
|
||||
|
||||
void WriteDefinitions(BindStreamWriter sw,
|
||||
EnumCollection enums, FunctionCollection wrappers,
|
||||
IDictionary<string, string> CSTypes)
|
||||
{
|
||||
sw.WriteLine("namespace {0}", Settings.GLClass);
|
||||
sw.WriteLine("{");
|
||||
sw.Indent();
|
||||
|
||||
foreach (string extension in wrappers.Keys)
|
||||
{
|
||||
if (extension != "Core")
|
||||
{
|
||||
sw.WriteLine("namespace {0}", extension);
|
||||
sw.WriteLine("{");
|
||||
sw.Indent();
|
||||
}
|
||||
|
||||
// Avoid multiple definitions of the same function
|
||||
Delegate last_delegate = null;
|
||||
|
||||
// Write delegates
|
||||
sw.WriteLine("namespace Delegates");
|
||||
sw.WriteLine("{");
|
||||
sw.Indent();
|
||||
var functions = wrappers[extension];
|
||||
last_delegate = null;
|
||||
foreach (var f in functions.Where(f => !f.Deprecated))
|
||||
{
|
||||
WriteDelegate(sw, f.WrappedDelegate, ref last_delegate);
|
||||
}
|
||||
last_delegate = null;
|
||||
sw.WriteLine("#if defined({0})", AllowDeprecated);
|
||||
foreach (var f in functions.Where(f => f.Deprecated))
|
||||
{
|
||||
WriteDelegate(sw, f.WrappedDelegate, ref last_delegate);
|
||||
}
|
||||
sw.WriteLine("#endif");
|
||||
|
||||
sw.Unindent();
|
||||
sw.WriteLine("};");
|
||||
|
||||
// Write wrappers
|
||||
sw.WriteLine("inline void Init()");
|
||||
sw.WriteLine("{");
|
||||
sw.Indent();
|
||||
last_delegate = null;
|
||||
foreach (var f in functions.Where(f => !f.Deprecated))
|
||||
{
|
||||
last_delegate = WriteInitDelegate(last_delegate, sw, f);
|
||||
}
|
||||
last_delegate = null;
|
||||
sw.WriteLine("#if defined({0})", AllowDeprecated);
|
||||
foreach (var f in functions.Where(f => f.Deprecated))
|
||||
{
|
||||
last_delegate = WriteInitDelegate(last_delegate, sw, f);
|
||||
}
|
||||
sw.WriteLine("#endif");
|
||||
sw.Unindent();
|
||||
sw.WriteLine("}");
|
||||
last_delegate = null;
|
||||
foreach (var f in functions.Where(f => !f.Deprecated))
|
||||
{
|
||||
last_delegate = WriteWrapper(last_delegate, f, sw);
|
||||
}
|
||||
sw.WriteLine("#if defined({0})", AllowDeprecated);
|
||||
foreach (var f in functions.Where(f => f.Deprecated))
|
||||
{
|
||||
last_delegate = WriteWrapper(last_delegate, f, sw);
|
||||
}
|
||||
sw.WriteLine("#endif");
|
||||
|
||||
if (extension != "Core")
|
||||
{
|
||||
sw.Unindent();
|
||||
sw.WriteLine("};");
|
||||
}
|
||||
}
|
||||
|
||||
sw.Unindent();
|
||||
sw.WriteLine("};");
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
#region WriteEnums
|
||||
|
||||
public void WriteEnums(BindStreamWriter sw, EnumCollection enums)
|
||||
{
|
||||
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)
|
||||
{
|
||||
sw.WriteLine(String.Format("{0} = {1}{2},",
|
||||
c.Name,
|
||||
!String.IsNullOrEmpty(c.Reference) ? (c.Reference + Settings.NamespaceSeparator) : "",
|
||||
!String.IsNullOrEmpty(c.Reference) ? c.Value : c.Value.ToLower()));
|
||||
}
|
||||
sw.Unindent();
|
||||
sw.WriteLine("};");
|
||||
sw.Unindent();
|
||||
sw.WriteLine("};");
|
||||
sw.WriteLine();
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region WriteTypes
|
||||
|
||||
void WriteTypes(BindStreamWriter sw)
|
||||
{
|
||||
sw.WriteLine(TypeDefinitions);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region WriteGetAddress
|
||||
|
||||
void WriteGetAddress(BindStreamWriter sw)
|
||||
{
|
||||
sw.WriteLine(GetAddressDefinition);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region WriteDelegate
|
||||
|
||||
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;
|
||||
bool valid = true;
|
||||
var parameters = GenerateParameterString(d, false, out valid);
|
||||
sw.WriteLine("typedef {0} (GLPP_APIENTRY *p{1})({2});", d.ReturnType, d.Name, parameters);
|
||||
sw.WriteLine("inline p{0}& {0}()", d.Name);
|
||||
sw.WriteLine("{");
|
||||
sw.Indent();
|
||||
sw.WriteLine("static p{0} address = 0;", d.Name);
|
||||
sw.WriteLine("return address;");
|
||||
sw.Unindent();
|
||||
sw.WriteLine("}");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region WriteWrappers
|
||||
|
||||
static void WriteMethodBody(BindStreamWriter sw, Function f)
|
||||
{
|
||||
//var callstring = f.Parameters.CallString()
|
||||
// .Replace("String[]", "String*");
|
||||
|
||||
var callstring = GenerateCallString(f);
|
||||
|
||||
if (f.ReturnType != null && !f.ReturnType.ToString().ToLower().Contains("void"))
|
||||
sw.Write("return ");
|
||||
sw.WriteLine("Delegates::{0}()({1});", f.WrappedDelegate.Name, callstring);
|
||||
}
|
||||
|
||||
static object GenerateCallString(Function f)
|
||||
{
|
||||
var sb = new StringBuilder();
|
||||
foreach (var p in f.Parameters)
|
||||
{
|
||||
if (p.Reference)
|
||||
sb.Append("&"); // Convert to pointer
|
||||
sb.Append(p.Name);
|
||||
sb.Append(", ");
|
||||
}
|
||||
if (f.Parameters.Count > 0)
|
||||
sb.Remove(sb.Length - 2, 2);
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
void WriteDocumentation(BindStreamWriter sw, Function f)
|
||||
{
|
||||
var docs = f.Documentation;
|
||||
|
||||
try
|
||||
{
|
||||
string warning = "[deprecated: v{0}]";
|
||||
string category = "[requires: {0}]";
|
||||
if (f.Deprecated)
|
||||
{
|
||||
warning = String.Format(warning, f.DeprecatedVersion);
|
||||
docs.Summary = docs.Summary.Insert(0, warning);
|
||||
}
|
||||
|
||||
if (f.Extension != "Core" && !String.IsNullOrEmpty(f.Category))
|
||||
{
|
||||
category = String.Format(category, f.Category);
|
||||
docs.Summary = docs.Summary.Insert(0, 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);
|
||||
docs.Summary = docs.Summary.Insert(0, category);
|
||||
}
|
||||
|
||||
for (int i = 0; i < f.WrappedDelegate.Parameters.Count; i++)
|
||||
{
|
||||
var param = f.WrappedDelegate.Parameters[i];
|
||||
if (param.ComputeSize != String.Empty)
|
||||
{
|
||||
docs.Parameters[i].Documentation.Insert(0,
|
||||
String.Format("[length: {0}]", param.ComputeSize));
|
||||
}
|
||||
}
|
||||
|
||||
sw.Write("/// \brief ");
|
||||
sw.WriteLine(docs.Summary);
|
||||
foreach (var p in docs.Parameters)
|
||||
{
|
||||
sw.Write(@"/// \param ");
|
||||
sw.Write(p.Name);
|
||||
sw.WriteLine(p.Documentation);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine("[Warning] Error documenting function {0}: {1}", f.WrappedDelegate.Name, e.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region WriteLicense
|
||||
|
||||
public void WriteLicense(BindStreamWriter sw)
|
||||
{
|
||||
sw.WriteLine(File.ReadAllText(Path.Combine(Settings.InputPath, Settings.LicenseFile)));
|
||||
sw.WriteLine();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
|
@ -155,7 +155,7 @@ namespace Bind
|
|||
if (String.IsNullOrEmpty(name))
|
||||
return name;
|
||||
|
||||
if (Utilities.Keywords(Settings.Language).Contains(name))
|
||||
if (Utilities.CSharpKeywords.Contains(name))
|
||||
return name;
|
||||
|
||||
if (!IsAlreadyProcessed(name))
|
||||
|
|
|
@ -694,7 +694,7 @@ namespace Bind
|
|||
}
|
||||
}
|
||||
|
||||
if (Utilities.Keywords(Settings.Language).Contains(p.Name))
|
||||
if (Utilities.CSharpKeywords.Contains(p.Name))
|
||||
p.Name = Settings.KeywordEscapeCharacter + p.Name;
|
||||
|
||||
// This causes problems with bool arrays
|
||||
|
|
|
@ -113,14 +113,12 @@
|
|||
<Compile Include="..\GlobalAssemblyInfo.cs">
|
||||
<Link>Properties\GlobalAssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="CppSpecWriter.cs" />
|
||||
<Compile Include="CSharpSpecWriter.cs" />
|
||||
<Compile Include="FuncProcessor.cs" />
|
||||
<Compile Include="GL2\GL4Generator.cs" />
|
||||
<Compile Include="IBind.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="JavaSpecWriter.cs" />
|
||||
<Compile Include="Main.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
|
@ -140,9 +138,6 @@
|
|||
<Compile Include="ISpecReader.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="ISpecWriter.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
|
@ -180,8 +175,6 @@
|
|||
<None Include="..\..\OpenTK.snk">
|
||||
<Link>OpenTK.snk</Link>
|
||||
</None>
|
||||
<None Include="Specifications\cpp.tm" />
|
||||
<None Include="Specifications\java.tm" />
|
||||
<None Include="Specifications\GL2\gl.tm" />
|
||||
<None Include="Specifications\Glx\glx.spec">
|
||||
</None>
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
#region --- License ---
|
||||
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
||||
* See license.txt for license info
|
||||
*/
|
||||
#endregion
|
||||
|
||||
using System.Collections.Generic;
|
||||
using Bind.Structures;
|
||||
|
||||
namespace Bind
|
||||
{
|
||||
interface ISpecWriter
|
||||
{
|
||||
void WriteBindings(IBind generator);
|
||||
// void WriteDelegates(BindStreamWriter sw, DelegateCollection delegates);
|
||||
// void WriteWrappers(BindStreamWriter sw, FunctionCollection wrappers, Dictionary<string, string> CSTypes);
|
||||
// void WriteEnums(BindStreamWriter sw, EnumCollection enums);
|
||||
// void WriteTypes(BindStreamWriter sw, Dictionary<string, string> CSTypes);
|
||||
// void WriteLicense(BindStreamWriter sw);
|
||||
}
|
||||
}
|
|
@ -1,381 +0,0 @@
|
|||
#region License
|
||||
//
|
||||
// The Open Toolkit Library License
|
||||
//
|
||||
// Copyright (c) 2006 - 2011 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 JavaSpecWriter : ISpecWriter
|
||||
{
|
||||
const string DigitPrefix = "T"; // Prefix for identifiers that start with a digit
|
||||
const string OutputFileHeader = "GL.java";
|
||||
|
||||
BindStreamWriter sw_h = new BindStreamWriter(Path.GetTempFileName());
|
||||
|
||||
IBind Generator { get; set; }
|
||||
Settings Settings { get { return Generator.Settings; } }
|
||||
|
||||
#region WriteBindings
|
||||
|
||||
public void WriteBindings(IBind generator)
|
||||
{
|
||||
Generator = generator;
|
||||
WriteBindings(generator.Delegates, generator.Wrappers, generator.Enums);
|
||||
}
|
||||
|
||||
void WriteBindings(DelegateCollection delegates, FunctionCollection wrappers, EnumCollection enums)
|
||||
{
|
||||
Console.WriteLine("Writing bindings to {0}", Settings.OutputPath);
|
||||
if (!Directory.Exists(Settings.OutputPath))
|
||||
Directory.CreateDirectory(Settings.OutputPath);
|
||||
|
||||
// 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");
|
||||
wrappers.Add(DigitPrefix + "3dfx", three_dee_fx);
|
||||
}
|
||||
|
||||
using (var sw = sw_h)
|
||||
{
|
||||
WriteLicense(sw);
|
||||
|
||||
sw.WriteLine("package {0}.{1};", Settings.OutputNamespace, Settings.GLClass);
|
||||
sw.WriteLine();
|
||||
sw.WriteLine("import java.nio.*;");
|
||||
sw.WriteLine();
|
||||
|
||||
WriteDefinitions(sw, enums, wrappers, Generator.CSTypes);
|
||||
|
||||
sw.Flush();
|
||||
sw.Close();
|
||||
}
|
||||
|
||||
string output_header = Path.Combine(Settings.OutputPath, OutputFileHeader);
|
||||
Move(sw_h.File, output_header);
|
||||
}
|
||||
|
||||
void Move(string file, string dest)
|
||||
{
|
||||
if (File.Exists(dest))
|
||||
File.Delete(dest);
|
||||
File.Move(file, dest);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region WriteDefinitions
|
||||
|
||||
void WriteDefinitions(BindStreamWriter sw,
|
||||
EnumCollection enums, FunctionCollection wrappers,
|
||||
IDictionary<string, string> CSTypes)
|
||||
{
|
||||
sw.WriteLine("public class {0}", Settings.GLClass);
|
||||
sw.WriteLine("{");
|
||||
sw.Indent();
|
||||
|
||||
foreach (string extension in wrappers.Keys)
|
||||
{
|
||||
if (extension != "Core")
|
||||
{
|
||||
sw.WriteLine("public static class {0}", extension);
|
||||
sw.WriteLine("{");
|
||||
sw.Indent();
|
||||
}
|
||||
|
||||
// Write wrappers
|
||||
foreach (var f in wrappers[extension])
|
||||
{
|
||||
WriteWrapper(f, sw);
|
||||
}
|
||||
|
||||
if (extension != "Core")
|
||||
{
|
||||
sw.Unindent();
|
||||
sw.WriteLine("}");
|
||||
}
|
||||
}
|
||||
|
||||
WriteEnums(sw, enums);
|
||||
|
||||
sw.Unindent();
|
||||
sw.WriteLine("}");
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region WriteEnums
|
||||
|
||||
public void WriteEnums(BindStreamWriter sw, EnumCollection enums)
|
||||
{
|
||||
foreach (Enum @enum in enums.Values)
|
||||
{
|
||||
sw.WriteLine("public enum {0}", @enum.Name);
|
||||
sw.WriteLine("{");
|
||||
sw.Indent();
|
||||
int count = @enum.ConstantCollection.Values.Count;
|
||||
if (count == 0)
|
||||
{
|
||||
// Java enums must have at least one value.
|
||||
sw.WriteLine("None;");
|
||||
}
|
||||
else
|
||||
{
|
||||
foreach (var c in @enum.ConstantCollection.Values)
|
||||
{
|
||||
sw.WriteLine(String.Format("{0}({1}{2}){3}",
|
||||
c.Name,
|
||||
!String.IsNullOrEmpty(c.Reference) ? (c.Reference + Settings.NamespaceSeparator) : "",
|
||||
!String.IsNullOrEmpty(c.Reference) ? c.Value : c.Value.ToLower(),
|
||||
--count == 0 ? ";" : ","));
|
||||
}
|
||||
sw.WriteLine();
|
||||
sw.WriteLine("{0} mValue;", @enum.Type);
|
||||
sw.WriteLine("{0}({1} value) {{ mValue = value; }}", @enum.Name, @enum.Type);
|
||||
}
|
||||
sw.Unindent();
|
||||
sw.WriteLine("}");
|
||||
sw.WriteLine();
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region WriteWrappers
|
||||
|
||||
static void WriteWrapper(Function f, BindStreamWriter sw)
|
||||
{
|
||||
var valid = true;
|
||||
var generic_parameters = GenerateGenericTypeString(f);
|
||||
var parameters = GenerateParameterString(f, out valid);
|
||||
var ret_parameter = GenerateReturnParameterString(f);
|
||||
if (!valid)
|
||||
return;
|
||||
|
||||
if (!String.IsNullOrEmpty(generic_parameters))
|
||||
sw.WriteLine("public static <{0}> {1} {2}({3})", generic_parameters,
|
||||
ret_parameter, f.TrimmedName, parameters);
|
||||
else
|
||||
sw.WriteLine("public static {0} {1}({2})", ret_parameter, f.TrimmedName,
|
||||
parameters);
|
||||
|
||||
sw.WriteLine("{");
|
||||
sw.Indent();
|
||||
WriteMethodBody(sw, f);
|
||||
sw.Unindent();
|
||||
sw.WriteLine("}");
|
||||
}
|
||||
|
||||
static void WriteMethodBody(BindStreamWriter sw, Function f)
|
||||
{
|
||||
//var callstring = f.Parameters.CallString();
|
||||
//if (f.ReturnType != null && !f.ReturnType.ToString().ToLower().Contains("void"))
|
||||
// sw.WriteLine("return GLES20.{0}{1};", f.WrappedDelegate.Name, callstring);
|
||||
//else
|
||||
// sw.WriteLine("GLES20.{0}{1};", f.WrappedDelegate.Name, callstring);
|
||||
}
|
||||
|
||||
static string GenerateParameterString(Function f, out bool valid)
|
||||
{
|
||||
if (f == null)
|
||||
throw new ArgumentNullException("f");
|
||||
|
||||
valid = true;
|
||||
var sb = new StringBuilder();
|
||||
|
||||
if (f.Parameters.Count > 0)
|
||||
{
|
||||
foreach (var p in f.Parameters)
|
||||
{
|
||||
if (p.Reference)
|
||||
{
|
||||
// Use a boxed type instead of primitives (i.e. "Byte" rather than "byte"), since
|
||||
// the former are reference types. We don't need to do anything for regular reference
|
||||
// types.
|
||||
// Hack: we do this by upper-casing the first letter of the type. This should work for
|
||||
// all primitive types, but won't work for enums and other reference types. In these
|
||||
// cases, we'll just ignore the reference overload.
|
||||
if (Char.IsLower(p.CurrentType[0]))
|
||||
{
|
||||
// Hack: Int -> Integer and Bool -> Boolean
|
||||
if (p.CurrentType == "int")
|
||||
sb.Append("Integer");
|
||||
else if (p.CurrentType == "bool")
|
||||
sb.Append("Boolean");
|
||||
else
|
||||
sb.Append(Char.ToUpper(p.CurrentType[0]) + p.CurrentType.Substring(1));
|
||||
}
|
||||
else
|
||||
{
|
||||
valid = false;
|
||||
return String.Empty;
|
||||
}
|
||||
}
|
||||
else if (p.Array > 0)
|
||||
{
|
||||
// Generic arrays are handled in the IntPtr case below.
|
||||
if (p.Generic)
|
||||
{
|
||||
valid = false;
|
||||
return String.Empty;
|
||||
}
|
||||
|
||||
sb.Append(p.CurrentType);
|
||||
for (int i = 0; i < p.Array; i++)
|
||||
sb.Append("[]");
|
||||
}
|
||||
else if (p.Pointer > 0)
|
||||
{
|
||||
// Java does not support pointers
|
||||
// Todo: maybe use one of the java.nio.* pointer classes?
|
||||
valid = false;
|
||||
return String.Empty;
|
||||
}
|
||||
else if (p.CurrentType == "IntPtr")
|
||||
{
|
||||
sb.Append("Buffer");
|
||||
}
|
||||
else
|
||||
{
|
||||
sb.Append(p.CurrentType);
|
||||
}
|
||||
|
||||
sb.Append(" ");
|
||||
sb.Append(p.Name);
|
||||
sb.Append(", ");
|
||||
}
|
||||
|
||||
if (f.Parameters.Count > 0)
|
||||
sb.Remove(sb.Length - 2, 2);
|
||||
}
|
||||
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
static string GenerateGenericTypeString(Function f)
|
||||
{
|
||||
var parameters = f.Parameters.Where(p => p.Generic);
|
||||
if (parameters.Count() > 0)
|
||||
{
|
||||
var sb = new StringBuilder();
|
||||
foreach (var p in f.Parameters.Where(p => p.Generic))
|
||||
{
|
||||
sb.Append(p.CurrentType);
|
||||
sb.Append(", ");
|
||||
}
|
||||
if (parameters.Count() > 0)
|
||||
sb.Remove(sb.Length - 2, 2);
|
||||
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
return String.Empty;
|
||||
}
|
||||
|
||||
private static string GenerateReturnParameterString(Function f)
|
||||
{
|
||||
if (f.ReturnType.CurrentType == "IntPtr")
|
||||
return "Buffer";
|
||||
else
|
||||
return f.ReturnType.CurrentType;
|
||||
}
|
||||
|
||||
void WriteDocumentation(BindStreamWriter sw, Function f)
|
||||
{
|
||||
var docs = f.Documentation;
|
||||
|
||||
try
|
||||
{
|
||||
string warning = "[deprecated: v{0}]";
|
||||
string category = "[requires: {0}]";
|
||||
if (f.Deprecated)
|
||||
{
|
||||
warning = String.Format(warning, f.DeprecatedVersion);
|
||||
docs.Summary = docs.Summary.Insert(0, warning);
|
||||
}
|
||||
|
||||
if (f.Extension != "Core" && !String.IsNullOrEmpty(f.Category))
|
||||
{
|
||||
category = String.Format(category, f.Category);
|
||||
docs.Summary = docs.Summary.Insert(0, 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);
|
||||
docs.Summary = docs.Summary.Insert(0, category);
|
||||
}
|
||||
|
||||
for (int i = 0; i < f.WrappedDelegate.Parameters.Count; i++)
|
||||
{
|
||||
var param = f.WrappedDelegate.Parameters[i];
|
||||
if (param.ComputeSize != String.Empty)
|
||||
{
|
||||
docs.Parameters[i].Documentation.Insert(0,
|
||||
String.Format("[length: {0}]", param.ComputeSize));
|
||||
}
|
||||
}
|
||||
|
||||
sw.WriteLine("/// <summary>{0}</summary>", docs.Summary);
|
||||
foreach (var p in docs.Parameters)
|
||||
{
|
||||
sw.WriteLine("/// <param name=\"{0}\">{1}</param>", p.Name, p.Documentation);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine("[Warning] Error documenting function {0}: {1}",
|
||||
f.WrappedDelegate.Name, e.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region WriteLicense
|
||||
|
||||
public void WriteLicense(BindStreamWriter sw)
|
||||
{
|
||||
sw.WriteLine(File.ReadAllText(Path.Combine(Settings.InputPath, Settings.LicenseFile)));
|
||||
sw.WriteLine();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
|
@ -33,13 +33,6 @@ namespace Bind
|
|||
CL10,
|
||||
}
|
||||
|
||||
enum GeneratorLanguage
|
||||
{
|
||||
CSharp,
|
||||
Cpp,
|
||||
Java
|
||||
}
|
||||
|
||||
static class MainClass
|
||||
{
|
||||
static GeneratorMode mode = GeneratorMode.Default;
|
||||
|
@ -87,33 +80,6 @@ namespace Bind
|
|||
case "output":
|
||||
Settings.OutputPath = val;
|
||||
break;
|
||||
case "l":
|
||||
case "lang":
|
||||
case "language":
|
||||
{
|
||||
string arg = val.ToLower();
|
||||
if (arg == "cpp" || arg == "c++" || arg == "c")
|
||||
{
|
||||
Settings.Language = GeneratorLanguage.Cpp;
|
||||
Settings.DefaultOutputPath = "gl";
|
||||
Settings.DefaultOutputNamespace = "OpenTK";
|
||||
// Settings.DefaultLanguageTypeMapFile = "cpp.tm"; // Todo: create this file!
|
||||
Settings.EnumsNamespace = "";
|
||||
Settings.NamespaceSeparator = "::";
|
||||
Settings.DefaultKeywordEscapeCharacter = "_";
|
||||
}
|
||||
else if (arg == "java")
|
||||
{
|
||||
Settings.Language = GeneratorLanguage.Java;
|
||||
Settings.DefaultOutputPath = "gl";
|
||||
Settings.DefaultOutputNamespace = "com.opentk";
|
||||
Settings.DefaultLanguageTypeMapFile = "java.tm";
|
||||
Settings.EnumsNamespace = "";
|
||||
Settings.NamespaceSeparator = ".";
|
||||
Settings.DefaultKeywordEscapeCharacter = "_";
|
||||
}
|
||||
break;
|
||||
}
|
||||
case "mode":
|
||||
{
|
||||
string arg = val.ToLower();
|
||||
|
@ -240,22 +206,7 @@ namespace Bind
|
|||
|
||||
generator.Process();
|
||||
|
||||
ISpecWriter writer = null;
|
||||
switch (generator.Settings.Language)
|
||||
{
|
||||
case GeneratorLanguage.Cpp:
|
||||
writer = new CppSpecWriter();
|
||||
break;
|
||||
|
||||
case GeneratorLanguage.Java:
|
||||
writer = new JavaSpecWriter();
|
||||
break;
|
||||
|
||||
case GeneratorLanguage.CSharp:
|
||||
default:
|
||||
writer = new CSharpSpecWriter();
|
||||
break;
|
||||
}
|
||||
var writer = new CSharpSpecWriter();
|
||||
writer.WriteBindings(generator);
|
||||
|
||||
ticks = DateTime.Now.Ticks - ticks;
|
||||
|
|
|
@ -205,8 +205,6 @@ namespace Bind
|
|||
|
||||
public string WindowsGDI = "OpenTK.Platform.Windows.API";
|
||||
|
||||
public GeneratorLanguage Language { get; set; }
|
||||
|
||||
public Settings Clone()
|
||||
{
|
||||
IFormatter formatter = new BinaryFormatter();
|
||||
|
|
|
@ -1,71 +0,0 @@
|
|||
# Normal types.
|
||||
GLsizei, GLsizei
|
||||
GLsizeiptr, GLsizeiptr
|
||||
GLintptr, GLintptr
|
||||
# GLenum, GLenum
|
||||
GLboolean, bool # Boolean # Int32
|
||||
GLbitfield, GLbitfield
|
||||
# GLvoid*, IntPtr
|
||||
# GLvoid, Void #Object
|
||||
GLchar, GLchar
|
||||
GLbyte, GLbyte
|
||||
GLubyte, GLubyte
|
||||
GLshort, GLshort
|
||||
GLushort, GLushort
|
||||
GLint, GLint
|
||||
GLuint, GLuint
|
||||
GLfloat, GLfloat
|
||||
GLclampf, GLclampf
|
||||
GLdouble, GLdouble
|
||||
GLclampd, GLclampd
|
||||
GLstring, GLstring
|
||||
|
||||
PixelInternalFormat, PixelInternalFormat
|
||||
|
||||
# ARB and NV types.
|
||||
GLsizeiptrARB, GLsizeiptrARB
|
||||
GLintptrARB, GLintptrARB
|
||||
GLhandleARB, GLhandleARB
|
||||
GLhalfARB, GLhalfARB
|
||||
GLhalfNV, GLhalfNV
|
||||
GLcharARB, GLcharARB
|
||||
|
||||
# 64 bit types (introduced in 2.1)
|
||||
GLint64EXT, GLint64EXT
|
||||
GLuint64EXT, GLuint64EXT
|
||||
GLint64, GLint64
|
||||
GLuint64, GLuint64
|
||||
|
||||
# ARB_sync (introduced in 3.2)
|
||||
sync, GLsync
|
||||
GLsync, GLsync
|
||||
|
||||
# OpenGL|ES types.
|
||||
GLclampx, GLclampx
|
||||
GLfixed, GLfixed
|
||||
GLeglImageOES, GLeglImageOES
|
||||
|
||||
cl_addressing_mode, AddressingMode
|
||||
cl_command_queue_info, CommandQueueInfo
|
||||
cl_command_queue_properties, CommandQueueProperties
|
||||
cl_context_info, ContextInfo
|
||||
cl_context_properties, IntPtr # ContextProperties
|
||||
cl_device_info, DeviceInfo
|
||||
cl_device_type, DeviceType
|
||||
cl_event_info, EventInfo
|
||||
cl_filter_mode, FilterMode
|
||||
cl_image_format, ImageFormat
|
||||
cl_image_info, ImageInfo
|
||||
cl_kernel_group_info, KernelGroupInfo
|
||||
cl_kernel_info, KernelInfo
|
||||
cl_kernel_work_group_info, KernelWorkGroupInfo
|
||||
cl_map_flags, MapFlags
|
||||
cl_mem_info, MemInfo
|
||||
cl_mem_flags, MemFlags
|
||||
cl_mem_object_type, MemObjectType
|
||||
cl_platform_info, PlatformInfo
|
||||
cl_profiling_info, ProfilingInfo
|
||||
cl_program_build_info, ProgramBuildInfo
|
||||
cl_program_info, ProgramInfo
|
||||
cl_sampler_info, SamplerInfo
|
||||
cl_work_group_info, WorkGroupInfo
|
|
@ -1,149 +0,0 @@
|
|||
# Normal types.
|
||||
GLsizei, int
|
||||
GLsizeiptr, Integer
|
||||
GLintptr, Integer
|
||||
# GLenum, int
|
||||
GLboolean, boolean # bool # int
|
||||
GLbitfield, int
|
||||
# GLvoid*, Integer
|
||||
# GLvoid, Void #Object
|
||||
GLchar, char
|
||||
GLbyte, byte
|
||||
GLubyte, byte
|
||||
GLshort, short
|
||||
GLushort, short
|
||||
GLint, int
|
||||
GLuint, int
|
||||
GLfloat, float
|
||||
GLclampf, float
|
||||
GLdouble, double
|
||||
GLclampd, double
|
||||
GLstring, String
|
||||
|
||||
PixelInternalFormat, PixelInternalFormat
|
||||
|
||||
# ARB and NV types.
|
||||
GLsizeiptrARB, Integer
|
||||
GLintptrARB, Integer
|
||||
GLhandleARB, int
|
||||
GLhalfARB, Half
|
||||
GLhalfNV, Half
|
||||
GLcharARB, char
|
||||
|
||||
# 64 bit types (introduced in 2.1)
|
||||
GLint64EXT, long
|
||||
GLuint64EXT, long
|
||||
GLint64, long
|
||||
GLuint64, long
|
||||
|
||||
# ARB_sync (introduced in 3.2)
|
||||
sync, Integer
|
||||
GLsync, Integer
|
||||
|
||||
# Wgl types.
|
||||
PROC, Integer
|
||||
LPCSTR, String
|
||||
COLORREF, int
|
||||
BOOL, boolean
|
||||
DWORD, int
|
||||
FLOAT, float
|
||||
HANDLE, Integer
|
||||
HDC, Integer
|
||||
HGLRC, Integer
|
||||
HPBUFFERARB, Integer #HPBUFFERARB
|
||||
HPBUFFEREXT, Integer #HPBUFFEREXT
|
||||
INT32, int
|
||||
INT64, long
|
||||
LPVOID, void*
|
||||
#String, const char *
|
||||
UINT, int
|
||||
USHORT, short
|
||||
VOID, void
|
||||
VoidPointer, void*
|
||||
float, float
|
||||
int, int
|
||||
#void, *
|
||||
GLDEBUGPROCARB, DebugProcArb
|
||||
GLDEBUGPROCAMD , DebugProcAmd
|
||||
GLvdpauSurfaceNV, Integer
|
||||
|
||||
# Glu types.
|
||||
Float64 double
|
||||
Float64Pointer Double
|
||||
Float32 float
|
||||
Float32Pointer Float
|
||||
|
||||
# Glx types.
|
||||
Void void
|
||||
Bool boolean
|
||||
int64_t long
|
||||
int32_t int
|
||||
|
||||
Display Integer
|
||||
Window Integer
|
||||
Pixmap Integer
|
||||
Colormap Integer
|
||||
|
||||
GLXWindow Integer
|
||||
GLXContext Integer
|
||||
GLXDrawable Integer
|
||||
GLXPixmap Integer
|
||||
__GLXextFuncPtr Integer
|
||||
|
||||
VLServer Integer
|
||||
VLPath Integer
|
||||
VLNode Integer
|
||||
|
||||
|
||||
# OpenGL|ES types.
|
||||
GLclampx, int
|
||||
GLfixed, int
|
||||
GLeglImageOES, Integer
|
||||
|
||||
|
||||
# OpenCL types.
|
||||
_cl_context, Integer
|
||||
_cl_event, Integer
|
||||
cl_command_queue, Integer
|
||||
cl_context, Integer
|
||||
cl_device_id, Integer
|
||||
cl_event, Integer
|
||||
cl_kernel, Integer
|
||||
cl_mem, Integer
|
||||
cl_platform_id, Integer
|
||||
cl_program, Integer
|
||||
cl_sampler, Integer
|
||||
size_t, Integer # not exactly right, NativeLong is the correct one.
|
||||
|
||||
cl_bool, boolean
|
||||
cl_int, int
|
||||
cl_uint, uint
|
||||
uchar, byte
|
||||
|
||||
cl_addressing_mode, AddressingMode
|
||||
cl_command_queue_info, CommandQueueInfo
|
||||
cl_command_queue_properties, CommandQueueProperties
|
||||
cl_context_info, ContextInfo
|
||||
cl_context_properties, Integer # ContextProperties
|
||||
cl_device_info, DeviceInfo
|
||||
cl_device_type, DeviceType
|
||||
cl_event_info, EventInfo
|
||||
cl_filter_mode, FilterMode
|
||||
cl_image_format, ImageFormat
|
||||
cl_image_info, ImageInfo
|
||||
cl_kernel_group_info, KernelGroupInfo
|
||||
cl_kernel_info, KernelInfo
|
||||
cl_kernel_work_group_info, KernelWorkGroupInfo
|
||||
cl_map_flags, MapFlags
|
||||
cl_mem_info, MemInfo
|
||||
cl_mem_flags, MemFlags
|
||||
cl_mem_object_type, MemObjectType
|
||||
cl_platform_info, PlatformInfo
|
||||
cl_profiling_info, ProfilingInfo
|
||||
cl_program_build_info, ProgramBuildInfo
|
||||
cl_program_info, ProgramInfo
|
||||
cl_sampler_info, SamplerInfo
|
||||
cl_work_group_info, WorkGroupInfo
|
||||
|
||||
# OpenTK-specific
|
||||
IntPtr, Pointer # com.sun.jna
|
|
@ -167,18 +167,7 @@ namespace Bind
|
|||
|
||||
#region Keywords
|
||||
|
||||
public static List<string> Keywords(GeneratorLanguage language)
|
||||
{
|
||||
switch (language)
|
||||
{
|
||||
case GeneratorLanguage.CSharp: return CSharpKeywords;
|
||||
case GeneratorLanguage.Cpp: return CppKeywords;
|
||||
case GeneratorLanguage.Java: return JavaKeywords;
|
||||
default: throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
|
||||
static readonly List<string> CSharpKeywords = new List<string>(
|
||||
public static readonly List<string> CSharpKeywords = new List<string>(
|
||||
new string[]
|
||||
{
|
||||
"abstract", "event", "new", "struct",
|
||||
|
@ -204,24 +193,6 @@ namespace Bind
|
|||
}
|
||||
);
|
||||
|
||||
static readonly List<string> JavaKeywords = new List<string>(
|
||||
new string[]
|
||||
{
|
||||
"abstract", "continue", "for", "new", "switch",
|
||||
"assert", "default", "goto", "package", "synchronized",
|
||||
"boolean", "do", "if", "private", "this",
|
||||
"break", "double", "implements", "protected", "throw",
|
||||
"byte", "else", "import", "public", "throws",
|
||||
"case", "enum", "instanceof", "return", "transient",
|
||||
"catch", "extends", "int", "short", "try",
|
||||
"char", "final", "interface", "static", "void",
|
||||
"class", "finally", "long", "strictfp", "volatile",
|
||||
"const", "float", "native", "super", "while",
|
||||
"callback"
|
||||
});
|
||||
|
||||
static readonly List<string> CppKeywords = new List<string>();
|
||||
|
||||
#endregion
|
||||
|
||||
#region Merge
|
||||
|
|
Loading…
Reference in a new issue