Clean up usage of `LuaFile.Enabled`/`Paused`

This commit is contained in:
YoshiRulz 2022-12-03 01:34:37 +10:00
parent f798021bba
commit 84d2866f53
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 11 additions and 25 deletions

View File

@ -400,34 +400,20 @@ namespace BizHawk.Client.EmuHawk
return;
}
if (LuaImp.ScriptList[index].Paused)
bitmap = LuaImp.ScriptList[index].State switch
{
bitmap = Resources.Pause;
}
else if (LuaImp.ScriptList[index].Enabled)
{
bitmap = Resources.ts_h_arrow_green;
}
else
{
bitmap = Resources.Stop;
}
LuaFile.RunState.Running => Resources.ts_h_arrow_green,
LuaFile.RunState.Paused => Resources.Pause,
_ => Resources.Stop
};
}
private void LuaListView_QueryItemBkColor(int index, RollColumn column, ref Color color)
{
if (LuaImp.ScriptList[index].IsSeparator)
{
color = BackColor;
}
else if (LuaImp.ScriptList[index].Enabled && !LuaImp.ScriptList[index].Paused)
{
color = Color.LightCyan;
}
else if (LuaImp.ScriptList[index].Enabled && LuaImp.ScriptList[index].Paused)
{
color = Color.LightPink;
}
var lf = LuaImp.ScriptList[index];
if (lf.IsSeparator) color = BackColor;
else if (lf.Paused) color = Color.LightPink;
else if (lf.Enabled) color = Color.LightCyan;
}
private void LuaListView_QueryItemText(int index, RollColumn column, out string text, ref int offsetX, ref int offsetY)
@ -459,7 +445,7 @@ namespace BizHawk.Client.EmuHawk
var message = "";
var total = LuaImp.ScriptList.Count(file => !file.IsSeparator);
var active = LuaImp.ScriptList.Count(file => !file.IsSeparator && file.Enabled);
var paused = LuaImp.ScriptList.Count(file => !file.IsSeparator && file.Enabled && file.Paused);
var paused = LuaImp.ScriptList.Count(static lf => !lf.IsSeparator && lf.Paused);
if (total == 1)
{
@ -606,7 +592,7 @@ namespace BizHawk.Client.EmuHawk
return;
}
foreach (var lf in luaLibsImpl.ScriptList.Where(l => l.Enabled && l.Thread is not null && !l.Paused))
foreach (var lf in luaLibsImpl.ScriptList.Where(static lf => lf.State is LuaFile.RunState.Running && lf.Thread is not null))
{
try
{