Facepunch.Steamworks/Generator/CodeParser/CodeParser.Class.cs
Garry Newman bf6883deb9 Big clean
2019-04-16 11:45:44 +01:00

53 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace Generator
{
partial class CodeParser
{
public class Class
{
public string Name;
public string InterfaceString;
public class Function
{
public string Name;
public Dictionary<string, string> Arguments = new Dictionary<string, string>();
public string ReturnType;
public string CallResult;
}
public List<Function> Functions = new List<Function>();
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();
t = Cleanup.ConvertType( t );
f.Arguments.Add( n, t );
}
Functions.Add( f );
return f;
}
}
}
}