From 38f3cdb687a42e26b6b58cf5649eaf272108919f Mon Sep 17 00:00:00 2001 From: Chris W Date: Wed, 8 Sep 2021 06:18:51 +0200 Subject: [PATCH] Make sorting optional for `forms.setdropdownitems` (squashed PR #2923) * Add optional sort parameter to SetDropdownItems method * Improve docs, use pattern matching Co-authored-by: YoshiRulz --- .../tools/Lua/Libraries/FormsLuaLibrary.cs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/Lua/Libraries/FormsLuaLibrary.cs b/src/BizHawk.Client.EmuHawk/tools/Lua/Libraries/FormsLuaLibrary.cs index b070682c7d..f3ce74a9f1 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Lua/Libraries/FormsLuaLibrary.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Lua/Libraries/FormsLuaLibrary.cs @@ -1168,9 +1168,9 @@ namespace BizHawk.Client.EmuHawk return 0; } - [LuaMethodExample("forms.setdropdownitems( 332, { \"item1\", \"item2\" } );")] - [LuaMethod("setdropdownitems", "Sets the items for a given dropdown box")] - public void SetDropdownItems(int handle, LuaTable items) + [LuaMethodExample("forms.setdropdownitems(dropdown_handle, { \"item1\", \"item2\" });")] + [LuaMethod("setdropdownitems", "Updates the item list of a dropdown menu. The optional third parameter toggles alphabetical sorting of items, pass false to skip sorting.")] + public void SetDropdownItems(int handle, LuaTable items, bool alphabetize = true) { try { @@ -1186,13 +1186,12 @@ namespace BizHawk.Client.EmuHawk { if (control.Handle == ptr) { - if (control is LuaDropDown) + if (control is LuaDropDown ldd) { var dropdownItems = _th.EnumerateValues(items).ToList(); - dropdownItems.Sort(); - (control as LuaDropDown).SetItems(dropdownItems); + if (alphabetize) dropdownItems.Sort(); + ldd.SetItems(dropdownItems); } - return; } }