2013-03-09 21:22:36 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Sorting;
|
2013-03-09 22:36:39 -07:00
|
|
|
|
using MediaBrowser.Model.Querying;
|
2013-03-10 12:44:36 -07:00
|
|
|
|
using System;
|
2013-03-09 21:22:36 -07:00
|
|
|
|
|
2016-11-02 23:37:52 -07:00
|
|
|
|
namespace Emby.Server.Implementations.Sorting
|
2013-03-09 21:22:36 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class RandomComparer
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class RandomComparer : IBaseItemComparer
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Compares the specified x.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="x">The x.</param>
|
|
|
|
|
/// <param name="y">The y.</param>
|
|
|
|
|
/// <returns>System.Int32.</returns>
|
|
|
|
|
public int Compare(BaseItem x, BaseItem y)
|
|
|
|
|
{
|
|
|
|
|
return Guid.NewGuid().CompareTo(Guid.NewGuid());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get { return ItemSortBy.Random; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|