| | 1 | | // Copyright (c) 2020-2024 dotBunny Inc. |
| | 2 | | // dotBunny licenses this file to you under the BSL-1.0 license. |
| | 3 | | // See the LICENSE file in the project root for more information. |
| | 4 | |
|
| | 5 | | using System.Collections.Generic; |
| | 6 | |
|
| | 7 | | namespace GDX.DataTables.ColumnSorters |
| | 8 | | { |
| | 9 | | class UIntColumnSorter : ColumnSorterBase, IComparer<RowDescription> |
| | 10 | | { |
| | 11 | | /// <inheritdoc /> |
| | 12 | | public UIntColumnSorter(DataTableBase dataTable, int rowCount, int columnIdentifier, int sortDirection, |
| | 13 | | bool supportMultiSort = false) : |
| 0 | 14 | | base(dataTable, rowCount, columnIdentifier, sortDirection, supportMultiSort) |
| 0 | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <inheritdoc /> |
| | 19 | | public int Compare(RowDescription x, RowDescription y) |
| 0 | 20 | | { |
| 0 | 21 | | uint lhs = DataTable.GetUInt(x.Identifier, ColumnIdentifier); |
| 0 | 22 | | uint rhs = DataTable.GetUInt(y.Identifier, ColumnIdentifier); |
| | 23 | |
|
| 0 | 24 | | if (lhs > rhs) |
| 0 | 25 | | { |
| 0 | 26 | | return ProcessCompare(-1); |
| | 27 | | } |
| | 28 | |
|
| 0 | 29 | | return rhs > lhs ? ProcessCompare(1) : ProcessCompare(0, x.Identifier, y.Identifier); |
| 0 | 30 | | } |
| | 31 | | } |
| | 32 | | } |