From ba4e7d620bdb73c8c102f82b61ca616a6fe05ba5 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 3 Jun 2014 00:34:41 +0000 Subject: [PATCH] Refactor the LuaDocumentation class to remove a bunch of unnecessary stuff --- BizHawk.Client.Common/lua/LuaDocumentation.cs | 182 +++++++----------- BizHawk.Client.Common/lua/LuaLibraryBase.cs | 4 +- .../Lua/Libraries/EmuLuaLibrary.Console.cs | 2 +- .../tools/Lua/LuaFunctionsForm.cs | 8 +- 4 files changed, 80 insertions(+), 116 deletions(-) diff --git a/BizHawk.Client.Common/lua/LuaDocumentation.cs b/BizHawk.Client.Common/lua/LuaDocumentation.cs index 580554e116..aef22fe834 100644 --- a/BizHawk.Client.Common/lua/LuaDocumentation.cs +++ b/BizHawk.Client.Common/lua/LuaDocumentation.cs @@ -5,132 +5,96 @@ using System.Text; namespace BizHawk.Client.Common { - public interface ILuaDocumentation - { - void Add(string methodLib, string methodName, MethodInfo method, string description); - } - - public class LuaDocumentation : ILuaDocumentation + public class LuaDocumentation : List { public LuaDocumentation() + :base() { } + } + + public class LibraryFunction + { + private readonly string _returnType = string.Empty; + + public LibraryFunction(string methodLib, string methodName, MethodInfo method, string description) { - FunctionList = new List(); - } + Library = methodLib; + Name = methodName; + var info = method.GetParameters(); - public List FunctionList { get; set; } - - public void Add(string methodLib, string methodName, MethodInfo method, string description) - { - FunctionList.Add( - new LibraryFunction(methodLib, methodName, method, description)); - } - - public void Clear() - { - FunctionList = new List(); - } - - public void Sort() - { - FunctionList = FunctionList.OrderBy(x => x.Library).ThenBy(x => x.Name).ToList(); - } - - public IEnumerable GetLibraryList() - { - return FunctionList.Select(x => x.Library); - } - - public IEnumerable GetFunctionsByLibrary(string library) - { - return FunctionList - .Where(func => func.Library == library); - } - - public class LibraryFunction - { - private readonly string _returnType = string.Empty; - - public LibraryFunction(string methodLib, string methodName, MethodInfo method, string description) + Parameters = new List(); + foreach (var p in info) { - Library = methodLib; - Name = methodName; - var info = method.GetParameters(); - - Parameters = new List(); - foreach (var p in info) - { - Parameters.Add(p.ToString()); - } - - this._returnType = method.ReturnType.ToString(); - - Description = description; + Parameters.Add(p.ToString()); } - public string Library { get; set; } - public string Name { get; set; } - public List Parameters { get; set; } + _returnType = method.ReturnType.ToString(); - public string Description { get; set; } + Description = description; + } - public string ParameterList + public string Library { get; set; } + public string Name { get; set; } + public List Parameters { get; set; } + + public string Description { get; set; } + + public string ParameterList + { + get { - get + var list = new StringBuilder(); + list.Append('('); + for (var i = 0; i < Parameters.Count; i++) { - var list = new StringBuilder(); - list.Append('('); - for (var i = 0; i < Parameters.Count; i++) + var param = + Parameters[i].Replace("System", string.Empty) + .Replace(" ", string.Empty) + .Replace(".", string.Empty) + .Replace("LuaInterface", string.Empty) + .Replace("Object[]", "object[] ") + .Replace("Object", "object ") + .Replace("Boolean[]", "bool[] ") + .Replace("Boolean", "bool ") + .Replace("String", "string ") + .Replace("LuaTable", "table ") + .Replace("LuaFunction", "func ") + .Replace("Nullable`1[Int32]", "int? ") + .Replace("Nullable`1[UInt32]", "uint? ") + .Replace("Byte", "byte ") + .Replace("Int16", "short ") + .Replace("Int32", "int ") + .Replace("Int64", "long ") + .Replace("Ushort", "ushort ") + .Replace("Ulong", "ulong ") + .Replace("UInt32", "uint ") + .Replace("UInt64", "ulong ") + .Replace("Double", "double ") + .Replace("Uint", "uint ") + .Replace("Nullable`1[DrawingColor]", "Color? ") + .Replace("DrawingColor", "Color "); + + list.Append(param); + if (i < Parameters.Count - 1) { - var param = - Parameters[i].Replace("System", string.Empty) - .Replace(" ", string.Empty) - .Replace(".", string.Empty) - .Replace("LuaInterface", string.Empty) - .Replace("Object[]", "object[] ") - .Replace("Object", "object ") - .Replace("Boolean[]", "bool[] ") - .Replace("Boolean", "bool ") - .Replace("String", "string ") - .Replace("LuaTable", "table ") - .Replace("LuaFunction", "func ") - .Replace("Nullable`1[Int32]", "int? ") - .Replace("Nullable`1[UInt32]", "uint? ") - .Replace("Byte", "byte ") - .Replace("Int16", "short ") - .Replace("Int32", "int ") - .Replace("Int64", "long ") - .Replace("Ushort", "ushort ") - .Replace("Ulong", "ulong ") - .Replace("UInt32", "uint ") - .Replace("UInt64", "ulong ") - .Replace("Double", "double ") - .Replace("Uint", "uint ") - .Replace("Nullable`1[DrawingColor]", "Color? ") - .Replace("DrawingColor", "Color "); - - list.Append(param); - if (i < Parameters.Count - 1) - { - list.Append(", "); - } + list.Append(", "); } - - list.Append(')'); - - return list.ToString(); } + + list.Append(')'); + + return list.ToString(); } + } - public string ReturnType + public string ReturnType + { + get { - get - { - return _returnType - .Replace("System.", string.Empty) - .Replace("LuaInterface.", string.Empty) - .ToLower() - .Trim(); - } + return _returnType + .Replace("System.", string.Empty) + .Replace("LuaInterface.", string.Empty) + .ToLower() + .Trim(); } } } diff --git a/BizHawk.Client.Common/lua/LuaLibraryBase.cs b/BizHawk.Client.Common/lua/LuaLibraryBase.cs index 9faaa44529..a998265682 100644 --- a/BizHawk.Client.Common/lua/LuaLibraryBase.cs +++ b/BizHawk.Client.Common/lua/LuaLibraryBase.cs @@ -30,7 +30,7 @@ namespace BizHawk.Client.Common } } - public virtual void LuaRegister(ILuaDocumentation docs = null) + public virtual void LuaRegister(LuaDocumentation docs = null) { Lua.NewTable(Name); @@ -48,7 +48,7 @@ namespace BizHawk.Client.Common if (docs != null) { - docs.Add(Name, luaMethodAttr.Name, method, luaMethodAttr.Description); + docs.Add(new LibraryFunction(Name, luaMethodAttr.Name, method, luaMethodAttr.Description)); } } } diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Console.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Console.cs index 1697ed7f0f..60c475a869 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Console.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Console.cs @@ -34,7 +34,7 @@ namespace BizHawk.Client.EmuHawk public static string GetLuaFunctionsList() { var list = new StringBuilder(); - foreach (var function in GlobalWin.Tools.LuaConsole.LuaImp.Docs.FunctionList) + foreach (var function in GlobalWin.Tools.LuaConsole.LuaImp.Docs) { list.AppendLine(function.Name); } diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaFunctionsForm.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaFunctionsForm.cs index 9b329b9b6e..275a32171d 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaFunctionsForm.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaFunctionsForm.cs @@ -13,9 +13,9 @@ namespace BizHawk.Client.EmuHawk { private readonly Sorting _columnSort = new Sorting(); - private List FunctionList = new List(); + private List FunctionList = new List(); - private List FilteredList + private List FilteredList { get { @@ -39,7 +39,7 @@ namespace BizHawk.Client.EmuHawk private void LuaFunctionList_Load(object sender, EventArgs e) { - FunctionList = GlobalWin.Tools.LuaConsole.LuaImp.Docs.FunctionList.ToList(); + FunctionList = GlobalWin.Tools.LuaConsole.LuaImp.Docs.ToList(); UpdateList(); FilterBox.Focus(); } @@ -183,7 +183,7 @@ namespace BizHawk.Client.EmuHawk foreach (int index in indexes) { - var libraryFunction = GlobalWin.Tools.LuaConsole.LuaImp.Docs.FunctionList[index]; + var libraryFunction = GlobalWin.Tools.LuaConsole.LuaImp.Docs[index]; sb.Append(libraryFunction.Library).Append('.').Append(libraryFunction.Name).Append("()\n"); }