mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Interfaces.Scheduling; |
|
|
|
namespace ErsatzTV.Core.Scheduling; |
|
|
|
public class RandomizedMediaCollectionEnumerator : IMediaCollectionEnumerator |
|
{ |
|
private readonly IList<MediaItem> _mediaItems; |
|
private readonly Random _random; |
|
private int _index; |
|
|
|
public RandomizedMediaCollectionEnumerator(IList<MediaItem> mediaItems, CollectionEnumeratorState state) |
|
{ |
|
_mediaItems = mediaItems; |
|
_random = new Random(state.Seed); |
|
|
|
State = new CollectionEnumeratorState { Seed = state.Seed }; |
|
// we want to move at least once so we start with a random item and not the first |
|
// because _index defaults to 0 |
|
while (State.Index <= state.Index) |
|
{ |
|
MoveNext(); |
|
} |
|
} |
|
|
|
public CollectionEnumeratorState State { get; } |
|
|
|
public Option<MediaItem> Current => _mediaItems.Any() ? _mediaItems[_index] : None; |
|
|
|
public void MoveNext() |
|
{ |
|
_index = _random.Next() % _mediaItems.Count; |
|
State.Index++; |
|
} |
|
|
|
public Option<MediaItem> Peek(int offset) => |
|
throw new NotSupportedException(); |
|
}
|
|
|