From 01ec64945c4325ec88e1fffeec4764da8209f3c0 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Tue, 23 Oct 2018 22:11:38 +0100 Subject: [PATCH] Removed generator - Too many edge cases to handle. --- Generator/App.config | 6 - Generator/Generator.cs | 193 --------------------------- Generator/Generator.csproj | 99 -------------- Generator/Program.cs | 60 --------- Generator/Properties/AssemblyInfo.cs | 36 ----- Generator/raylib-cs.ico | Bin 142667 -> 0 bytes 6 files changed, 394 deletions(-) delete mode 100644 Generator/App.config delete mode 100644 Generator/Generator.cs delete mode 100644 Generator/Generator.csproj delete mode 100644 Generator/Program.cs delete mode 100644 Generator/Properties/AssemblyInfo.cs delete mode 100644 Generator/raylib-cs.ico diff --git a/Generator/App.config b/Generator/App.config deleted file mode 100644 index 731f6de..0000000 --- a/Generator/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Generator/Generator.cs b/Generator/Generator.cs deleted file mode 100644 index 4a5893b..0000000 --- a/Generator/Generator.cs +++ /dev/null @@ -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"); - } - } -} diff --git a/Generator/Generator.csproj b/Generator/Generator.csproj deleted file mode 100644 index 5f57c3f..0000000 --- a/Generator/Generator.csproj +++ /dev/null @@ -1,99 +0,0 @@ - - - - - Debug - AnyCPU - {063F21F1-12D3-41C6-B598-125C725955B1} - Exe - Generator - Generator - v4.6.1 - 512 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - raylib-cs.ico - - - true - bin\x64\Debug\ - DEBUG;TRACE - full - x64 - prompt - MinimumRecommendedRules.ruleset - true - - - bin\x64\Release\ - TRACE - true - pdbonly - x64 - prompt - MinimumRecommendedRules.ruleset - true - - - true - bin\x86\Debug\ - DEBUG;TRACE - full - x86 - prompt - MinimumRecommendedRules.ruleset - true - - - bin\x86\Release\ - TRACE - true - pdbonly - x86 - prompt - MinimumRecommendedRules.ruleset - true - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Generator/Program.cs b/Generator/Program.cs deleted file mode 100644 index b63f38a..0000000 --- a/Generator/Program.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; -using System.IO; - -namespace Generator -{ - /// - /// Rough generator for creating bindings and ports for raylib - /// Not a full parser so generated code is not perfect - /// - 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(); - } - - /// - /// Requires raylib headers - /// - 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"); - } - - /// - /// Porting C to C# - /// - 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); - } - } - } -} diff --git a/Generator/Properties/AssemblyInfo.cs b/Generator/Properties/AssemblyInfo.cs deleted file mode 100644 index 171731b..0000000 --- a/Generator/Properties/AssemblyInfo.cs +++ /dev/null @@ -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")] diff --git a/Generator/raylib-cs.ico b/Generator/raylib-cs.ico deleted file mode 100644 index 296d5dd59c742944d814a44152a05b1d2a8018f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142667 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