mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
79 lines
2.8 KiB
C#
79 lines
2.8 KiB
C#
using System.Collections.Generic;
|
|
using Kavita.Common.Extensions;
|
|
using Parser = Kavita.Services.Scanner.Parser;
|
|
|
|
namespace Kavita.Services.Comparators;
|
|
|
|
/// <summary>
|
|
/// Sorts chapters based on their Number. Uses natural ordering of doubles. Specials always LAST.
|
|
/// </summary>
|
|
public class ChapterSortComparerDefaultLast : IComparer<float>
|
|
{
|
|
/// <summary>
|
|
/// Normal sort for 2 doubles. DefaultChapterNumber always comes last
|
|
/// </summary>
|
|
/// <param name="x"></param>
|
|
/// <param name="y"></param>
|
|
/// <returns></returns>
|
|
public int Compare(float x, float y)
|
|
{
|
|
if (x.Is(Parser.DefaultChapterNumber) && y.Is(Parser.DefaultChapterNumber)) return 0;
|
|
// if x is 0, it comes second
|
|
if (x.Is(Parser.DefaultChapterNumber)) return 1;
|
|
// if y is 0, it comes second
|
|
if (y.Is(Parser.DefaultChapterNumber)) return -1;
|
|
|
|
return x.CompareTo(y);
|
|
}
|
|
|
|
public static readonly ChapterSortComparerDefaultLast Default = new ChapterSortComparerDefaultLast();
|
|
}
|
|
|
|
/// <summary>
|
|
/// This is a special case comparer used exclusively for sorting chapters within a single Volume for reading order.
|
|
/// <example>
|
|
/// Volume 10 has "Series - Vol 10" and "Series - Vol 10 Chapter 81". In this case, for reading order, the order is Vol 10, Vol 10 Chapter 81.
|
|
/// This is represented by Chapter 0, Chapter 81.
|
|
/// </example>
|
|
/// </summary>
|
|
public class ChapterSortComparerDefaultFirst : IComparer<float>
|
|
{
|
|
public int Compare(float x, float y)
|
|
{
|
|
if (x.Is(Parser.DefaultChapterNumber) && y.Is(Parser.DefaultChapterNumber)) return 0;
|
|
// if x is 0, it comes first
|
|
if (x.Is(Parser.DefaultChapterNumber)) return -1;
|
|
// if y is 0, it comes first
|
|
if (y.Is(Parser.DefaultChapterNumber)) return 1;
|
|
|
|
return x.CompareTo(y);
|
|
}
|
|
|
|
public static readonly ChapterSortComparerDefaultFirst Default = new ChapterSortComparerDefaultFirst();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sorts chapters based on their Number. Uses natural ordering of doubles. Specials always LAST.
|
|
/// </summary>
|
|
public class ChapterSortComparerSpecialsLast : IComparer<float>
|
|
{
|
|
/// <summary>
|
|
/// Normal sort for 2 doubles. DefaultSpecialNumber always comes last
|
|
/// </summary>
|
|
/// <param name="x"></param>
|
|
/// <param name="y"></param>
|
|
/// <returns></returns>
|
|
public int Compare(float x, float y)
|
|
{
|
|
if (x.Is(Parser.SpecialVolumeNumber) && y.Is(Parser.SpecialVolumeNumber)) return 0;
|
|
// if x is 0, it comes second
|
|
if (x.Is(Parser.SpecialVolumeNumber)) return 1;
|
|
// if y is 0, it comes second
|
|
if (y.Is(Parser.SpecialVolumeNumber)) return -1;
|
|
|
|
return x.CompareTo(y);
|
|
}
|
|
|
|
public static readonly ChapterSortComparerSpecialsLast Default = new ChapterSortComparerSpecialsLast();
|
|
}
|