mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
159 lines
5.2 KiB
C#
159 lines
5.2 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace Raylibcs
|
|
{
|
|
static class Generator
|
|
{
|
|
public static string template = @"
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Raylib
|
|
{
|
|
public static partial class rl
|
|
{
|
|
#region Raylib-cs Variables
|
|
|
|
// Used by DllImport to load the native library.
|
|
private const string nativeLibName = 'raylib.dll';
|
|
|
|
#endregion
|
|
|
|
#region Raylib-cs Functions
|
|
|
|
{{ CONTENT }}
|
|
}
|
|
}
|
|
";
|
|
|
|
public static string exampleTemplate = @"
|
|
using Raylib;
|
|
using static Raylib.Raylib;
|
|
|
|
public partial class Examples
|
|
{
|
|
{{ CONTENT }}
|
|
}";
|
|
|
|
public static string RaylibDirectory = "C:\\raylib\\raylib\\";
|
|
public static string InstallDirectory = "C:\\raylib\\raylib\\src\\";
|
|
|
|
// 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)
|
|
{
|
|
input = input.Replace("\r", "\r\n");
|
|
foreach (Match match in Regex.Matches(input, pattern))
|
|
{
|
|
Console.WriteLine(match.Value);
|
|
}
|
|
//return input;
|
|
|
|
//var match = Regex.IsMatch(input, pattern);
|
|
return Regex.Replace(input, pattern, replacement);
|
|
}
|
|
|
|
// Create binding code
|
|
public static void Process(string filePath, string api)
|
|
{
|
|
var lines = File.ReadAllLines(InstallDirectory + filePath);
|
|
var output = "";
|
|
|
|
// 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";
|
|
|
|
// convert syntax to c#
|
|
output = template.Replace("{{ CONTENT }}", output);
|
|
|
|
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 dirName)
|
|
{
|
|
var fileName = Path.GetFileNameWithoutExtension(file);
|
|
var text = File.ReadAllText(file);
|
|
|
|
// indent since example will be in Examples namespace
|
|
text = text.Indent(4);
|
|
|
|
// add template and fill in content
|
|
var output = exampleTemplate;
|
|
output = output.Replace("{{ CONTENT }}", text);
|
|
//output = output.Replace("int main()", "public static int " + fileName + "()");
|
|
//output = output.Replace("#include \"raylib.h\"", "");
|
|
|
|
// test regex on one file for now
|
|
if (fileName == "core_2d_camera")
|
|
{
|
|
// remove #include lines
|
|
|
|
// #define x y -> private const int x = y;
|
|
//output = output.ReplaceEx(@"#define (\w+).*?(\d+)", "private const int $1 = $2;");
|
|
|
|
// (Type){...} -> new Type(...);
|
|
// output = output.ReplaceEx(@"(\((\w+)\).*?{.*})", @"");
|
|
// output = output.ReplaceEx(@"\((\w +)\).*{ (.*)}", @"new $1($2)");
|
|
}
|
|
|
|
//output = output.ReplaceEx(@"#define (\w+) (\w+)", @"struct 1 public 2 public 3 public 4");
|
|
|
|
var path = "Examples\\" + dirName + "\\" + fileName + ".cs";
|
|
File.WriteAllText(path, output);
|
|
|
|
Console.WriteLine("Generated " + fileName + ".cs");
|
|
}
|
|
}
|
|
}
|