Make the default index 1 for NLuaTableHelper.ListToTable

This commit is contained in:
YoshiRulz 2021-08-03 01:46:17 +10:00
parent 7068fd2c39
commit 97222f2c5b
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
10 changed files with 31 additions and 22 deletions

View File

@ -272,7 +272,8 @@ namespace BizHawk.Client.Common
[LuaMethodExample("local nlcliget = client.getavailabletools( );")]
[LuaMethod("getavailabletools", "Returns a list of the tools currently open")]
public LuaTable GetAvailableTools() => _th.EnumerateToLuaTable(APIs.Tool.AvailableTools.Select(tool => tool.Name.ToLower()));
public LuaTable GetAvailableTools()
=> _th.EnumerateToLuaTable(APIs.Tool.AvailableTools.Select(tool => tool.Name.ToLower()), indexFrom: 0);
[LuaMethodExample("local nlcliget = client.gettool( \"Tool name\" );")]
[LuaMethod("gettool", "Returns an object that represents a tool of the given name (not case sensitive). If the tool is not open, it will be loaded if available. Use gettools to get a list of names")]

View File

@ -175,9 +175,7 @@ namespace BizHawk.Client.Common
}
[LuaMethod("mmfReadBytes", "Reads bytes from a memory mapped file")]
public LuaTable MmfReadBytes(string mmf_filename, int expectedSize)
{
return _th.ListToTable(APIs.Comm.MMF.ReadBytesFromFile(mmf_filename, expectedSize));
}
=> _th.ListToTable(APIs.Comm.MMF.ReadBytesFromFile(mmf_filename, expectedSize), indexFrom: 0);
// All HTTP related methods
[LuaMethod("httpTest", "tests HTTP connections")]

View File

@ -17,7 +17,8 @@ namespace BizHawk.Client.Common
[LuaMethodExample("local nlmemget = memory.getmemorydomainlist();")]
[LuaMethod("getmemorydomainlist", "Returns a string of the memory domains for the loaded platform core. List will be a single string delimited by line feeds")]
public LuaTable GetMemoryDomainList() => _th.ListToTable(APIs.Memory.GetMemoryDomainList());
public LuaTable GetMemoryDomainList()
=> _th.ListToTable(APIs.Memory.GetMemoryDomainList(), indexFrom: 0);
[LuaMethodExample("local uimemget = memory.getmemorydomainsize( mainmemory.getname( ) );")]
[LuaMethod("getmemorydomainsize", "Returns the number of bytes of the specified memory domain. If no domain is specified, or the specified domain doesn't exist, returns the current domain size")]
@ -49,12 +50,13 @@ namespace BizHawk.Client.Common
[LuaDeprecatedMethod]
[LuaMethod("readbyterange", "Reads the address range that starts from address, and is length long. Returns a zero-indexed table containing the read values (an array of bytes.)")]
public LuaTable ReadByteRange(long addr, int length, string domain = null) => _th.ListToTable(APIs.Memory.ReadByteRange(addr, length, domain));
public LuaTable ReadByteRange(long addr, int length, string domain = null)
=> _th.ListToTable(APIs.Memory.ReadByteRange(addr, length, domain), indexFrom: 0);
[LuaMethodExample("local bytes = memory.read_bytes_as_array(0x100, 30, \"WRAM\");")]
[LuaMethod("read_bytes_as_array", "Reads length bytes starting at addr into an array-like table (1-indexed).")]
public LuaTable ReadBytesAsArray(long addr, int length, string domain = null)
=> _th.ListToTable(APIs.Memory.ReadByteRange(addr, length, domain), indexFrom: 1);
=> _th.ListToTable(APIs.Memory.ReadByteRange(addr, length, domain));
[LuaMethodExample("local bytes = memory.read_bytes_as_dict(0x100, 30, \"WRAM\");")]
[LuaMethod("read_bytes_as_dict", "Reads length bytes starting at addr into a dict-like table (where the keys are the addresses, relative to the start of the domain).")]

View File

@ -86,10 +86,12 @@ namespace BizHawk.Client.Common
[LuaMethodExample("local nlmovget = movie.getcomments( );")]
[LuaMethod("getcomments", "If a movie is active, will return the movie comments as a lua table")]
public LuaTable GetComments() => _th.ListToTable(APIs.Movie.GetComments());
public LuaTable GetComments()
=> _th.ListToTable(APIs.Movie.GetComments(), indexFrom: 0);
[LuaMethodExample("local nlmovget = movie.getsubtitles( );")]
[LuaMethod("getsubtitles", "If a movie is active, will return the movie subtitles as a lua table")]
public LuaTable GetSubtitles() => _th.ListToTable(APIs.Movie.GetSubtitles());
public LuaTable GetSubtitles()
=> _th.ListToTable(APIs.Movie.GetSubtitles(), indexFrom: 0);
}
}

View File

@ -19,6 +19,7 @@ namespace BizHawk.Client.Common
/// <exception cref="ArithmeticException"><paramref name="d"/> ≥ 2^53 or <paramref name="d"/> ≤ -2^53</exception>
public static long AsInteger(this double d) => PrecisionLimits.Contains(d) ? (long) d : throw new ArithmeticException("integer value exceeds the precision of Lua's integer-as-double");
public static LuaTable EnumerateToLuaTable<T>(this NLuaTableHelper tableHelper, IEnumerable<T> list) => tableHelper.ListToTable(list.ToList());
public static LuaTable EnumerateToLuaTable<T>(this NLuaTableHelper tableHelper, IEnumerable<T> list, int indexFrom = 1)
=> tableHelper.ListToTable(list.ToList(), indexFrom);
}
}

View File

@ -251,7 +251,7 @@ namespace BizHawk.Client.Common
public LuaTable AvailableScopes()
{
return DebuggableCore?.MemoryCallbacksAvailable() == true
? _th.ListToTable(DebuggableCore.MemoryCallbacks.AvailableScopes)
? _th.ListToTable(DebuggableCore.MemoryCallbacks.AvailableScopes, indexFrom: 0)
: _th.CreateTable();
}

View File

@ -46,12 +46,13 @@ namespace BizHawk.Client.Common
[LuaDeprecatedMethod]
[LuaMethod("readbyterange", "Reads the address range that starts from address, and is length long. Returns a zero-indexed table containing the read values (an array of bytes.)")]
public LuaTable ReadByteRange(long addr, int length) => _th.ListToTable(APIs.Memory.ReadByteRange(addr, length, MainMemName));
public LuaTable ReadByteRange(long addr, int length)
=> _th.ListToTable(APIs.Memory.ReadByteRange(addr, length, MainMemName), indexFrom: 0);
[LuaMethodExample("local bytes = mainmemory.read_bytes_as_array(0x100, 30);")]
[LuaMethod("read_bytes_as_array", "Reads length bytes starting at addr into an array-like table (1-indexed).")]
public LuaTable ReadBytesAsArray(long addr, int length)
=> _th.ListToTable(APIs.Memory.ReadByteRange(addr, length, MainMemName), indexFrom: 1);
=> _th.ListToTable(APIs.Memory.ReadByteRange(addr, length, MainMemName));
[LuaMethodExample("local bytes = mainmemory.read_bytes_as_dict(0x100, 30);")]
[LuaMethod("read_bytes_as_dict", "Reads length bytes starting at addr into a dict-like table (where the keys are the addresses, relative to the start of the main memory).")]

View File

@ -126,6 +126,6 @@ namespace BizHawk.Client.Common
[LuaMethod("split", "Splits str into a Lua-style array using the given separator (consecutive separators in str will NOT create empty entries in the array). If the separator is not a string exactly one char long, ',' will be used.")]
public LuaTable Split(string str, string separator) => string.IsNullOrEmpty(str)
? _th.CreateTable()
: _th.ListToTable(str.Split(new[] { separator?.Length == 1 ? separator[0] : ',' }, StringSplitOptions.RemoveEmptyEntries), indexFrom: 1);
: _th.ListToTable(str.Split(new[] { separator?.Length == 1 ? separator[0] : ',' }, StringSplitOptions.RemoveEmptyEntries));
}
}

View File

@ -39,7 +39,7 @@ namespace BizHawk.Client.Common
public IEnumerable<T> EnumerateValues<T>(LuaTable table) => table.Values.Cast<T>();
public LuaTable ListToTable<T>(IList<T> list, int indexFrom = 0)
public LuaTable ListToTable<T>(IList<T> list, int indexFrom = 1)
{
var table = _lua.NewTable();
for (int i = 0, l = list.Count; i != l; i++) table[indexFrom + i] = list[i];

View File

@ -165,7 +165,9 @@ namespace BizHawk.Client.EmuHawk
[LuaMethodExample("local nltasget = tastudio.getselection( );")]
[LuaMethod("getselection", "gets the currently selected frames")]
public LuaTable GetSelection() => Engaged() ? _th.EnumerateToLuaTable(Tastudio.GetSelection()) : _th.CreateTable();
public LuaTable GetSelection() => Engaged()
? _th.EnumerateToLuaTable(Tastudio.GetSelection(), indexFrom: 0)
: _th.CreateTable();
[LuaMethodExample("")]
[LuaMethod("submitinputchange", "")]
@ -376,12 +378,14 @@ namespace BizHawk.Client.EmuHawk
public LuaTable GetBranches()
{
if (!Engaged()) return _th.CreateTable();
return _th.EnumerateToLuaTable(Tastudio.CurrentTasMovie.Branches.Select(b => new
{
Id = b.Uuid.ToString(),
b.Frame,
Text = b.UserText
}));
return _th.EnumerateToLuaTable(
Tastudio.CurrentTasMovie.Branches.Select(b => new
{
Id = b.Uuid.ToString(),
b.Frame,
Text = b.UserText
}),
indexFrom: 0);
}
[LuaMethodExample("local nltasget = tastudio.getbranchinput( \"97021544-2454-4483-824f-47f75e7fcb6a\", 500 );")]