111 lines
3.5 KiB
C#
Raw Normal View History

2023-11-28 00:26:29 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
namespace ProjectBomber.Generics
{
/// <summary>
/// Параметризованный набор объектов
/// </summary>
/// <typeparam name="T"></typeparam>
internal class SetGeneric<T>
where T : class
{
/// <summary>
/// Массив объектов, которые храним
/// </summary>
2023-11-28 01:00:19 +04:00
private readonly List<T?> _places;
2023-11-28 00:26:29 +04:00
/// <summary>
/// Количество объектов в массиве
/// </summary>
2023-11-28 01:00:19 +04:00
public int Count => _places.Count;
/// <summary>
/// Максимальное количество объектов в списке
/// </summary>
private readonly int _maxCount;
2023-11-28 00:26:29 +04:00
/// <summary>
/// Конструктор
/// </summary>
/// <param name="count"></param>
public SetGeneric(int count)
{
2023-11-28 01:00:19 +04:00
_maxCount = count;
_places = new List<T?>(count);
2023-11-28 00:26:29 +04:00
}
/// <summary>
/// Добавление объекта в набор
/// </summary>
/// <param name="plane">Добавляемая установка</param>
/// <returns></returns>
public int Insert(T plane)
{
return Insert(plane, 0);
}
/// <summary>
/// Добавление объекта в набор на конкретную позицию
/// </summary>
/// <param name="plane">Добавляемая установка</param>
/// <param name="position">Позиция</param>
/// <returns></returns>
public int Insert(T plane, int position)
{
2023-11-28 01:00:19 +04:00
if (position < 0 || position >= _maxCount)
2023-11-28 00:26:29 +04:00
return -1;
2023-11-28 01:00:19 +04:00
if (Count >= _maxCount)
return -1;
_places.Insert(position, plane);
2023-11-28 00:26:29 +04:00
return position;
}
/// <summary>
/// Удаление объекта из набора с конкретной позиции
/// </summary>
/// <param name="position"></param>
/// <returns></returns>
public bool Remove(int position)
{
/// Проверка позиции
2023-11-28 01:00:19 +04:00
if (position < 0 || position >= _places.Count)
2023-11-28 00:26:29 +04:00
return false;
/// Удаление объекта из массива, присвоив элементу массива значение null
_places[position] = null;
return true;
}
/// <summary>
/// Получение объекта из набора по позиции
/// </summary>
/// <param name="position"></param>
/// <returns></returns>
2023-11-28 01:00:19 +04:00
public T? this[int position]
{
get
{
if (position < 0 || position > _maxCount)
return null;
return _places[position];
}
set
{
if (position < 0 || position > _maxCount)
return;
_places[position] = value;
}
}
public IEnumerable<T?> GetPlane(int? maxPlane = null)
2023-11-28 00:26:29 +04:00
{
2023-11-28 01:00:19 +04:00
for (int i = 0; i < _places.Count; ++i)
{
yield return _places[i];
if (maxPlane.HasValue && i == maxPlane.Value)
{
yield break;
}
}
2023-11-28 00:26:29 +04:00
}
}
}