mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 00:07:15 +00:00
0f4024952e
indexof -> contains trailing space some variable reuse pcdata/boxdata less janky handling
48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Array reusable logic
|
|
/// </summary>
|
|
public static class ArrayUtil
|
|
{
|
|
/// <summary>
|
|
/// Copies a <see cref="T"/> list to the destination list, with an option to copy to a starting point.
|
|
/// </summary>
|
|
/// <param name="list">Source list to copy from</param>
|
|
/// <param name="dest">Destination list/array</param>
|
|
/// <param name="skip">Criteria for skipping a slot</param>
|
|
/// <param name="start">Starting point to copy to</param>
|
|
/// <returns>Count of <see cref="T"/> copied.</returns>
|
|
public static int CopyTo<T>(this IEnumerable<T> list, IList<T> dest, Func<int, bool> skip, int start = 0)
|
|
{
|
|
int ctr = start;
|
|
int skipped = 0;
|
|
foreach (var z in list)
|
|
{
|
|
// seek forward to next open slot
|
|
int next = FindNextValidIndex(dest, skip, ctr);
|
|
if (next == -1)
|
|
break;
|
|
skipped += next - ctr;
|
|
ctr = next;
|
|
dest[ctr++] = z;
|
|
}
|
|
return ctr - start - skipped;
|
|
}
|
|
|
|
public static int FindNextValidIndex<T>(IList<T> dest, Func<int, bool> skip, int ctr)
|
|
{
|
|
while (true)
|
|
{
|
|
if ((uint)ctr >= dest.Count)
|
|
return -1;
|
|
var exist = dest[ctr];
|
|
if (exist == null || !skip(ctr))
|
|
return ctr;
|
|
ctr++;
|
|
}
|
|
}
|
|
}
|