aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx/UI/Models/Generic/TimePlayedSortComparer.cs
blob: f0fb035d13bfc985fa53f8b509687fa807d3b06f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using Ryujinx.UI.App.Common;
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);
        }
    }
}