mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-23 14:19:52 -06:00
32 lines
837 B
C#
32 lines
837 B
C#
using Ryujinx.Ava.Utilities.AppLibrary;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Ava.UI.Models.Generic
|
|
{
|
|
internal class TimePlayedSortComparer : IComparer<ApplicationData>
|
|
{
|
|
public TimePlayedSortComparer() { }
|
|
public TimePlayedSortComparer(bool isAscending) { IsAscending = isAscending; }
|
|
|
|
public bool IsAscending { get; }
|
|
|
|
public int Compare(ApplicationData x, ApplicationData y)
|
|
{
|
|
TimeSpan aValue = TimeSpan.Zero, bValue = TimeSpan.Zero;
|
|
|
|
if (x?.TimePlayed != null)
|
|
{
|
|
aValue = x.TimePlayed;
|
|
}
|
|
|
|
if (y?.TimePlayed != null)
|
|
{
|
|
bValue = y.TimePlayed;
|
|
}
|
|
|
|
return (IsAscending ? 1 : -1) * TimeSpan.Compare(aValue, bValue);
|
|
}
|
|
}
|
|
}
|