2019-04-12 17:41:40 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
|
|
namespace Generator
|
|
|
|
|
{
|
|
|
|
|
partial class CodeParser
|
|
|
|
|
{
|
|
|
|
|
public class Class
|
|
|
|
|
{
|
|
|
|
|
public string Name;
|
2019-04-13 00:52:55 +03:00
|
|
|
|
public string InterfaceString;
|
2019-04-12 17:41:40 +03:00
|
|
|
|
|
|
|
|
|
public class Function
|
|
|
|
|
{
|
|
|
|
|
public string Name;
|
|
|
|
|
public Dictionary<string, string> Arguments = new Dictionary<string, string>();
|
|
|
|
|
|
|
|
|
|
public string ReturnType;
|
|
|
|
|
public string CallResult;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-13 00:52:55 +03:00
|
|
|
|
public List<Function> Functions = new List<Function>();
|
2019-04-12 17:41:40 +03:00
|
|
|
|
|
|
|
|
|
internal Function AddFunction( string funcName, string returnType, string args )
|
|
|
|
|
{
|
|
|
|
|
var f = new Function
|
|
|
|
|
{
|
|
|
|
|
Name = funcName,
|
|
|
|
|
ReturnType = returnType
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
foreach ( var arg in args.Split( new[] { ',' }, StringSplitOptions.RemoveEmptyEntries ) )
|
|
|
|
|
{
|
|
|
|
|
var m = Regex.Match( arg.Trim(), @"(.+?[ |\*])?([a-zA-Z0-9_]+?)( = (.+?))?$" );
|
|
|
|
|
|
|
|
|
|
var t = m.Groups[1].Value.Trim();
|
|
|
|
|
var n = m.Groups[2].Value.Trim();
|
|
|
|
|
|
|
|
|
|
f.Arguments.Add( n, t );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Functions.Add( f );
|
|
|
|
|
|
|
|
|
|
return f;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|