Этап 1. Смена массива на список.

This commit is contained in:
Anastasia 2022-11-13 16:20:54 +04:00
parent 017b18a3db
commit 3139d13fa4
2 changed files with 69 additions and 45 deletions

View File

@ -94,13 +94,9 @@ namespace AirplaneWithRadar
public Bitmap ShowOnMap()
{
Shaking();
for (int i = 0; i < _setAirplanes.Count; i++)
foreach (var airplane in _setAirplanes.GetAirplanes())
{
var airplane = _setAirplanes.Get(i);
if (airplane != null)
{
return _map.CreateMap(_pictureWidth, _pictureHeight, airplane);
}
return _map.CreateMap(_pictureWidth, _pictureHeight, airplane);
}
return new(_pictureWidth, _pictureHeight);
}
@ -125,11 +121,11 @@ namespace AirplaneWithRadar
int j = _setAirplanes.Count - 1;
for (int i = 0; i < _setAirplanes.Count; i++)
{
if (_setAirplanes.Get(i) == null)
if (_setAirplanes[i] == null)
{
for (; j > i; j--)
{
var airplane = _setAirplanes.Get(j);
var airplane = _setAirplanes[j];
if (airplane != null)
{
_setAirplanes.Insert(airplane, i);
@ -178,14 +174,12 @@ namespace AirplaneWithRadar
/// <param name="g"></param>
private void DrawAirplanes(Graphics g)
{
int numInRow = _pictureWidth / _placeSizeWidth;
int maxLeft = (numInRow - 1) * _placeSizeWidth;
for (int i = 0; i < _setAirplanes.Count; i++)
foreach (var airplane in _setAirplanes.GetAirplanes())
{
var airplane = _setAirplanes.Get(i);
airplane?.SetObject(maxLeft - i % numInRow * _placeSizeWidth + 5, i / numInRow * _placeSizeHeight + 10, _pictureWidth, _pictureHeight);
airplane?.DrawingObject(g);
// TODO установка позиции
airplane.DrawingObject(g);
}
}
}
}

View File

@ -14,20 +14,25 @@ namespace AirplaneWithRadar
where T : class
{
/// <summary>
/// Массив объектов, которые храним
/// Список объектов, которые храним
/// </summary>
private readonly T[] _places;
private readonly List<T> _places;
/// <summary>
/// Количество объектов в массиве
/// Количество объектов в списке
/// </summary>
public int Count => _places.Length;
public int Count => _places.Count;
/// <summary>
/// Максимальное количество объектов в списке
/// </summary>
private readonly int _maxCount;
/// <summary>
/// Конструктор
/// </summary>
/// <param name="count"></param>
public SetAirplanesGeneric(int count)
{
_places = new T[count];
_maxCount = count;
_places = new List<T>();
}
/// <summary>
/// Добавление объекта в набор
@ -36,7 +41,13 @@ namespace AirplaneWithRadar
/// <returns></returns>
public int Insert(T airplane)
{
return Insert(airplane, 0);
// TODO вставка в начало набора
// TODO проверка на _maxCount
if (Count < _maxCount)
{
return Insert(airplane, 0);
}
return -1;
}
/// <summary>
/// Добавление объекта в набор на конкретную позицию
@ -46,21 +57,13 @@ namespace AirplaneWithRadar
/// <returns></returns>
public int Insert(T airplane, int position)
{
int positionNullElement = position;
while (Get(positionNullElement) != null)
{
positionNullElement++;
}
if (positionNullElement > Count || positionNullElement < 0)
// TODO проверка позиции
// TODO вставка по позиции
if (position < 0 || position >= _maxCount)
{
return -1;
}
while (positionNullElement != position)
{
_places[positionNullElement] = _places[positionNullElement - 1];
positionNullElement--;
}
_places[position] = airplane;
_places.Insert(position, airplane);
return position;
}
/// <summary>
@ -70,32 +73,59 @@ namespace AirplaneWithRadar
/// <returns></returns>
public T Remove(int position)
{
if (position > Count || position < 0)
// TODO проверка позиции
if (position < 0 || position >= Count)
{
return null;
}
else
{
var removedObject = _places[position];
_places[position] = null;
return removedObject;
}
T airplane = _places[position];
_places.RemoveAt(position);
return airplane;
}
/// <summary>
/// Получение объекта из набора по позиции
/// </summary>
/// <param name="position"></param>
/// <returns></returns>
public T Get(int position)
public T this[int position]
{
if (position > Count || position < 0)
{
return null;
}
else
get
{
// TODO проверка позиции
if (position < 0 || position >= Count)
{
return null;
}
return _places[position];
}
set
{
// TODO проверка позиции
// TODO вставка в список по позиции
if (position < 0 || position >= _maxCount)
{
return;
}
_places.Add(value);
}
}
/// <summary>
/// Проход по набору до первого пустого
/// </summary>
/// <returns></returns>
public IEnumerable<T> GetAirplanes()
{
foreach (var airplane in _places)
{
if (airplane != null)
{
yield return airplane;
}
else
{
yield break;
}
}
}
}
}