mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
Removed generator
- Too many edge cases to handle.
This commit is contained in:
parent
3eb0989ec1
commit
01ec64945c
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
|
||||||
<configuration>
|
|
||||||
<startup>
|
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
|
||||||
</startup>
|
|
||||||
</configuration>
|
|
@ -1,193 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.IO;
|
|
||||||
using System.Text;
|
|
||||||
using System.Text.RegularExpressions;
|
|
||||||
|
|
||||||
namespace Generator
|
|
||||||
{
|
|
||||||
static class Generator
|
|
||||||
{
|
|
||||||
public static string RaylibDirectory = "C:\\raylib\\raylib\\";
|
|
||||||
public static string RaylibDirectory2 = "C:\\Users\\Chris\\Documents\\projects\\raylib\\";
|
|
||||||
|
|
||||||
// string extensions
|
|
||||||
private static string CapitalizeFirstCharacter(string format)
|
|
||||||
{
|
|
||||||
if (string.IsNullOrEmpty(format))
|
|
||||||
return string.Empty;
|
|
||||||
else
|
|
||||||
return char.ToUpper(format[0]) + format.ToLower().Substring(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static string Indent(this string value, int size)
|
|
||||||
{
|
|
||||||
var strArray = value.Split('\n');
|
|
||||||
var sb = new StringBuilder();
|
|
||||||
foreach (var s in strArray)
|
|
||||||
sb.Append(new string(' ', size)).Append(s);
|
|
||||||
return sb.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
// testing regex
|
|
||||||
public static string ReplaceEx(this string input, string pattern, string replacement)
|
|
||||||
{
|
|
||||||
var matches = Regex.Matches(input, pattern);
|
|
||||||
foreach (Match match in matches)
|
|
||||||
{
|
|
||||||
//Console.WriteLine(match.Value);
|
|
||||||
}
|
|
||||||
return Regex.Replace(input, pattern, replacement);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create binding code
|
|
||||||
public static void Process(string filePath, string api)
|
|
||||||
{
|
|
||||||
var lines = File.ReadAllLines(RaylibDirectory + "src//" + filePath);
|
|
||||||
var output = "";
|
|
||||||
|
|
||||||
output += "using Raylib;\n";
|
|
||||||
output += "using static Raylib.Raylib;\n\n";
|
|
||||||
output += "public partial class Examples\n{\n";
|
|
||||||
|
|
||||||
// convert functions to c#
|
|
||||||
foreach (string line in lines)
|
|
||||||
{
|
|
||||||
if (line.StartsWith(api))
|
|
||||||
{
|
|
||||||
output += "\t\t[DllImport(nativeLibName)]\n";
|
|
||||||
string newLine = line.Clone().ToString();
|
|
||||||
newLine = newLine.Replace(api, "public static extern");
|
|
||||||
|
|
||||||
// add converted function
|
|
||||||
output += "\t\t" + newLine + "\n\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
output += "\t\t#endregion\n";
|
|
||||||
|
|
||||||
//output += text;
|
|
||||||
output += "\n}";
|
|
||||||
|
|
||||||
output = output.Replace("(void)", "()");
|
|
||||||
output = output.Replace("const char *", "string ");
|
|
||||||
output = output.Replace("const char * ", "string");
|
|
||||||
output = output.Replace("const char*", "string");
|
|
||||||
output = output.Replace("unsigned int", "uint");
|
|
||||||
output = output.Replace("unsigned char", "byte");
|
|
||||||
output = output.Replace("const void *", "byte[] ");
|
|
||||||
output = output.Replace("const float *", "float[] ");
|
|
||||||
output = output.Replace("const int *", "int[] ");
|
|
||||||
output = output.Replace("...", "params object[] args");
|
|
||||||
output = output.Replace("Music ", "IntPtr ");
|
|
||||||
|
|
||||||
Console.WriteLine(output);
|
|
||||||
|
|
||||||
filePath = Path.GetFileNameWithoutExtension(filePath);
|
|
||||||
filePath = CapitalizeFirstCharacter(filePath);
|
|
||||||
|
|
||||||
Directory.CreateDirectory("Raylib-cs");
|
|
||||||
File.WriteAllText("Raylib-cs/ " + filePath + ".cs", output);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Convert c style to c#
|
|
||||||
// Design is close to raylib so only a few changes needed
|
|
||||||
public static void ProcessExample(string file, string folder, string path)
|
|
||||||
{
|
|
||||||
// load and setup
|
|
||||||
var fileName = Path.GetFileNameWithoutExtension(file);
|
|
||||||
var text = File.ReadAllText(file);
|
|
||||||
var result = "";
|
|
||||||
var output = "";
|
|
||||||
output += "using Raylib;\n";
|
|
||||||
output += "using static Raylib.Raylib;\n\n";
|
|
||||||
output += "public partial class " + folder + "\n{\n";
|
|
||||||
// text = text.Replace("\r", "\r\n");
|
|
||||||
|
|
||||||
// rough file conversion
|
|
||||||
string[] lines = text.Split('\n');
|
|
||||||
for (int i = 0; i < lines.Length; i++)
|
|
||||||
{
|
|
||||||
string line = lines[i];
|
|
||||||
|
|
||||||
// ignore certain preprocess symbols
|
|
||||||
if (line.Contains("#include"))
|
|
||||||
continue;
|
|
||||||
else if (line.Contains("#if"))
|
|
||||||
continue;
|
|
||||||
else if (line.Contains("#else"))
|
|
||||||
continue;
|
|
||||||
else if (line.Contains("#endif"))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
else if (line.Contains("#define"))
|
|
||||||
{
|
|
||||||
var str = line.Replace("#define", "");
|
|
||||||
var arr = str.Trim().Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
|
|
||||||
if (arr.Length < 2)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
bool isNumeric = int.TryParse(arr[1], out var n);
|
|
||||||
if (isNumeric)
|
|
||||||
result += "public const int " + arr[0] + " = " + arr[1] + ";\r\n";
|
|
||||||
else
|
|
||||||
result += "public const string " + arr[0] + " = " + arr[1] + ";\r\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
// change main signature
|
|
||||||
else if (line.StartsWith("int main"))
|
|
||||||
result += "public static void Main()\r\n";
|
|
||||||
|
|
||||||
// remove typedef and mark members as public
|
|
||||||
else if (line.StartsWith("typedef struct"))
|
|
||||||
{
|
|
||||||
var members = "";
|
|
||||||
while (!line.StartsWith("}"))
|
|
||||||
{
|
|
||||||
i++;
|
|
||||||
line = lines[i];
|
|
||||||
members += "public " + line + "\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
line = line.Replace(" ", "");
|
|
||||||
line = line.Replace("}", "");
|
|
||||||
line = line.Replace(";", "");
|
|
||||||
result += "struct " + line + "{\n\n";
|
|
||||||
result += members;
|
|
||||||
}
|
|
||||||
|
|
||||||
// copy line by default
|
|
||||||
else
|
|
||||||
result += line + "\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
// regex
|
|
||||||
|
|
||||||
// (Type){...} -> new Type(...)
|
|
||||||
// e.g (Vector2){ 100, 100 } -> new Vector2( 100, 100 );
|
|
||||||
result = result.ReplaceEx(@"\((\w+)\){(.*)}", @"new $1($2);");
|
|
||||||
result = result.ReplaceEx(@"\((\w+)\) \w+ = {(.*)}", @"new $1($2);");
|
|
||||||
|
|
||||||
// Type name[size] -> Type[] name = new Type[size];
|
|
||||||
// e.g Rectangle buildings[MAX_BUILDINGS]; -> Rectangle[] buildings = new Rectangle[MAX_BUILDINGS];
|
|
||||||
result = result.ReplaceEx(@"(\w+) (\w+)\[(.*)\];", "$1[] $2 = new $1[$3];");
|
|
||||||
|
|
||||||
result = result.Replace("Music ", "IntPtr ");
|
|
||||||
result = result.Replace("(void)", "()");
|
|
||||||
|
|
||||||
// defines to enums(might use defines as variables aswell not sure)
|
|
||||||
result = result.ReplaceEx(@"KEY_(\w+)", @"(int)Key.$1");
|
|
||||||
result = result.ReplaceEx(@"MOUSE_(\w+)", @"(int)Mouse.$1");
|
|
||||||
result = result.ReplaceEx(@"FLAG_(\w+)", @"(int)Flag.$1");
|
|
||||||
// result = result.ReplaceEx(@"FLAG_(\w+)", @"(int)Flag.$1");
|
|
||||||
|
|
||||||
// add result
|
|
||||||
result = result.Indent(4);
|
|
||||||
output += result;
|
|
||||||
output += "\n}\n";
|
|
||||||
|
|
||||||
// saves relative to executable location
|
|
||||||
var loc = path + "//" + fileName + ".cs";
|
|
||||||
File.WriteAllText(loc, output);
|
|
||||||
Console.WriteLine("Generated " + fileName + ".cs");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,99 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
||||||
<PropertyGroup>
|
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
||||||
<ProjectGuid>{063F21F1-12D3-41C6-B598-125C725955B1}</ProjectGuid>
|
|
||||||
<OutputType>Exe</OutputType>
|
|
||||||
<RootNamespace>Generator</RootNamespace>
|
|
||||||
<AssemblyName>Generator</AssemblyName>
|
|
||||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
|
||||||
<FileAlignment>512</FileAlignment>
|
|
||||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
||||||
<DebugType>pdbonly</DebugType>
|
|
||||||
<Optimize>true</Optimize>
|
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup>
|
|
||||||
<ApplicationIcon>raylib-cs.ico</ApplicationIcon>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
<Prefer32Bit>true</Prefer32Bit>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
|
||||||
<OutputPath>bin\x64\Release\</OutputPath>
|
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
|
||||||
<Optimize>true</Optimize>
|
|
||||||
<DebugType>pdbonly</DebugType>
|
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
<Prefer32Bit>true</Prefer32Bit>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<OutputPath>bin\x86\Debug\</OutputPath>
|
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
<Prefer32Bit>true</Prefer32Bit>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
||||||
<OutputPath>bin\x86\Release\</OutputPath>
|
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
|
||||||
<Optimize>true</Optimize>
|
|
||||||
<DebugType>pdbonly</DebugType>
|
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
<Prefer32Bit>true</Prefer32Bit>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Reference Include="System" />
|
|
||||||
<Reference Include="System.Core" />
|
|
||||||
<Reference Include="System.Xml.Linq" />
|
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
|
||||||
<Reference Include="Microsoft.CSharp" />
|
|
||||||
<Reference Include="System.Data" />
|
|
||||||
<Reference Include="System.Net.Http" />
|
|
||||||
<Reference Include="System.Xml" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Compile Include="Generator.cs" />
|
|
||||||
<Compile Include="Program.cs" />
|
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="App.config" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Content Include="raylib-cs.ico" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
</Project>
|
|
@ -1,60 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.IO;
|
|
||||||
|
|
||||||
namespace Generator
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Rough generator for creating bindings and ports for raylib
|
|
||||||
/// Not a full parser so generated code is not perfect
|
|
||||||
/// </summary>
|
|
||||||
class Program
|
|
||||||
{
|
|
||||||
static void Main(string[] args)
|
|
||||||
{
|
|
||||||
Console.WriteLine("Raylib-cs generator");
|
|
||||||
GenerateBindings();
|
|
||||||
// GeneratePort("Examples");
|
|
||||||
// GeneratePort("Templates");
|
|
||||||
// GeneratePort("Games");
|
|
||||||
Console.WriteLine("Finished generating. Enjoy! :)");
|
|
||||||
Console.WriteLine("Press enter to exit");
|
|
||||||
Console.Read();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Requires raylib headers
|
|
||||||
/// </summary>
|
|
||||||
static void GenerateBindings()
|
|
||||||
{
|
|
||||||
Console.WriteLine("Generating bindings");
|
|
||||||
Generator.Process("raylib.h", "RLAPI");
|
|
||||||
Generator.Process("raymath.h", "RMDEF");
|
|
||||||
Generator.Process("physac.h", "PDEF");
|
|
||||||
Generator.Process("rlgl.h", "RLGL");
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Porting C to C#
|
|
||||||
/// </summary>
|
|
||||||
static void GeneratePort(string folder)
|
|
||||||
{
|
|
||||||
Console.WriteLine("Generating examples");
|
|
||||||
|
|
||||||
// output folder
|
|
||||||
Directory.CreateDirectory(folder);
|
|
||||||
var path = Generator.RaylibDirectory + folder.ToLower();
|
|
||||||
var dirs = Directory.GetDirectories(path);
|
|
||||||
|
|
||||||
var files = Directory.GetFiles(path, "*.c", SearchOption.AllDirectories);
|
|
||||||
foreach (var file in files)
|
|
||||||
{
|
|
||||||
// create sub folder in output
|
|
||||||
var dirName = Path.GetDirectoryName(file);
|
|
||||||
var name = new DirectoryInfo(dirName).Name;
|
|
||||||
if (!Directory.Exists(folder + name))
|
|
||||||
Directory.CreateDirectory(folder + "//" + name);
|
|
||||||
Generator.ProcessExample(file, folder, folder + "//" + name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,36 +0,0 @@
|
|||||||
using System.Reflection;
|
|
||||||
using System.Runtime.CompilerServices;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
|
|
||||||
// General Information about an assembly is controlled through the following
|
|
||||||
// set of attributes. Change these attribute values to modify the information
|
|
||||||
// associated with an assembly.
|
|
||||||
[assembly: AssemblyTitle("Generator")]
|
|
||||||
[assembly: AssemblyDescription("")]
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
|
||||||
[assembly: AssemblyCompany("")]
|
|
||||||
[assembly: AssemblyProduct("Generator")]
|
|
||||||
[assembly: AssemblyCopyright("Copyright © 2018")]
|
|
||||||
[assembly: AssemblyTrademark("")]
|
|
||||||
[assembly: AssemblyCulture("")]
|
|
||||||
|
|
||||||
// Setting ComVisible to false makes the types in this assembly not visible
|
|
||||||
// to COM components. If you need to access a type in this assembly from
|
|
||||||
// COM, set the ComVisible attribute to true on that type.
|
|
||||||
[assembly: ComVisible(false)]
|
|
||||||
|
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
|
||||||
[assembly: Guid("063f21f1-12d3-41c6-b598-125c725955b1")]
|
|
||||||
|
|
||||||
// Version information for an assembly consists of the following four values:
|
|
||||||
//
|
|
||||||
// Major Version
|
|
||||||
// Minor Version
|
|
||||||
// Build Number
|
|
||||||
// Revision
|
|
||||||
//
|
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
|
||||||
// by using the '*' as shown below:
|
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
|
||||||
[assembly: AssemblyVersion("1.0.0.0")]
|
|
||||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
Binary file not shown.
Before Width: | Height: | Size: 139 KiB |
Loading…
x
Reference in New Issue
Block a user