UI: Fixes GTK sorting regression of #4294
This commit is contained in:
parent
784cf9d594
commit
1faff14e73
1 changed files with 24 additions and 56 deletions
|
@ -7,65 +7,33 @@ namespace Ryujinx.Ui.Helper
|
||||||
{
|
{
|
||||||
public static int TimePlayedSort(ITreeModel model, TreeIter a, TreeIter b)
|
public static int TimePlayedSort(ITreeModel model, TreeIter a, TreeIter b)
|
||||||
{
|
{
|
||||||
string aValue = model.GetValue(a, 5).ToString();
|
static string ReverseFormat(string time)
|
||||||
string bValue = model.GetValue(b, 5).ToString();
|
|
||||||
float aFloat;
|
|
||||||
float bFloat;
|
|
||||||
|
|
||||||
if (aValue.Length > 7 && aValue[^7..] == "minutes")
|
|
||||||
{
|
{
|
||||||
aValue = aValue.Replace("minutes", "");
|
if (time == "Never")
|
||||||
aFloat = (float.Parse(aValue) * 60);
|
|
||||||
}
|
|
||||||
else if (aValue.Length > 5 && aValue[^5..] == "hours")
|
|
||||||
{
|
{
|
||||||
aValue = aValue.Replace("hours", "");
|
return "00";
|
||||||
aFloat = (float.Parse(aValue) * 3600);
|
|
||||||
}
|
|
||||||
else if (aValue.Length > 4 && aValue[^4..] == "days")
|
|
||||||
{
|
|
||||||
aValue = aValue.Replace("days", "");
|
|
||||||
aFloat = (float.Parse(aValue) * 86400);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
aValue = aValue.Replace("seconds", "");
|
|
||||||
aFloat = float.Parse(aValue);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bValue.Length > 7 && bValue[^7..] == "minutes")
|
var numbers = time.Split(new char[] { 'd', 'h', 'm' });
|
||||||
|
|
||||||
|
time = time.Replace(" ", "").Replace("d", ".").Replace("h", ":").Replace("m", "");
|
||||||
|
|
||||||
|
if (numbers.Length == 2)
|
||||||
{
|
{
|
||||||
bValue = bValue.Replace("minutes", "");
|
return $"00.00:{time}";
|
||||||
bFloat = (float.Parse(bValue) * 60);
|
|
||||||
}
|
}
|
||||||
else if (bValue.Length > 5 && bValue[^5..] == "hours")
|
else if (numbers.Length == 3)
|
||||||
{
|
{
|
||||||
bValue = bValue.Replace("hours", "");
|
return $"00.{time}";
|
||||||
bFloat = (float.Parse(bValue) * 3600);
|
|
||||||
}
|
|
||||||
else if (bValue.Length > 4 && bValue[^4..] == "days")
|
|
||||||
{
|
|
||||||
bValue = bValue.Replace("days", "");
|
|
||||||
bFloat = (float.Parse(bValue) * 86400);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
bValue = bValue[0..^8];
|
|
||||||
bFloat = float.Parse(bValue);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (aFloat > bFloat)
|
return time;
|
||||||
{
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
else if (bFloat > aFloat)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string aValue = ReverseFormat(model.GetValue(a, 5).ToString());
|
||||||
|
string bValue = ReverseFormat(model.GetValue(b, 5).ToString());
|
||||||
|
|
||||||
|
return TimeSpan.Compare(TimeSpan.Parse(aValue), TimeSpan.Parse(bValue));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int LastPlayedSort(ITreeModel model, TreeIter a, TreeIter b)
|
public static int LastPlayedSort(ITreeModel model, TreeIter a, TreeIter b)
|
||||||
|
|
Loading…
Reference in a new issue