Этап 1. Смена массива на список.
This commit is contained in:
parent
017b18a3db
commit
3139d13fa4
@ -94,13 +94,9 @@ namespace AirplaneWithRadar
|
|||||||
public Bitmap ShowOnMap()
|
public Bitmap ShowOnMap()
|
||||||
{
|
{
|
||||||
Shaking();
|
Shaking();
|
||||||
for (int i = 0; i < _setAirplanes.Count; i++)
|
foreach (var airplane in _setAirplanes.GetAirplanes())
|
||||||
{
|
{
|
||||||
var airplane = _setAirplanes.Get(i);
|
return _map.CreateMap(_pictureWidth, _pictureHeight, airplane);
|
||||||
if (airplane != null)
|
|
||||||
{
|
|
||||||
return _map.CreateMap(_pictureWidth, _pictureHeight, airplane);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return new(_pictureWidth, _pictureHeight);
|
return new(_pictureWidth, _pictureHeight);
|
||||||
}
|
}
|
||||||
@ -125,11 +121,11 @@ namespace AirplaneWithRadar
|
|||||||
int j = _setAirplanes.Count - 1;
|
int j = _setAirplanes.Count - 1;
|
||||||
for (int i = 0; i < _setAirplanes.Count; i++)
|
for (int i = 0; i < _setAirplanes.Count; i++)
|
||||||
{
|
{
|
||||||
if (_setAirplanes.Get(i) == null)
|
if (_setAirplanes[i] == null)
|
||||||
{
|
{
|
||||||
for (; j > i; j--)
|
for (; j > i; j--)
|
||||||
{
|
{
|
||||||
var airplane = _setAirplanes.Get(j);
|
var airplane = _setAirplanes[j];
|
||||||
if (airplane != null)
|
if (airplane != null)
|
||||||
{
|
{
|
||||||
_setAirplanes.Insert(airplane, i);
|
_setAirplanes.Insert(airplane, i);
|
||||||
@ -178,14 +174,12 @@ namespace AirplaneWithRadar
|
|||||||
/// <param name="g"></param>
|
/// <param name="g"></param>
|
||||||
private void DrawAirplanes(Graphics g)
|
private void DrawAirplanes(Graphics g)
|
||||||
{
|
{
|
||||||
int numInRow = _pictureWidth / _placeSizeWidth;
|
foreach (var airplane in _setAirplanes.GetAirplanes())
|
||||||
int maxLeft = (numInRow - 1) * _placeSizeWidth;
|
|
||||||
for (int i = 0; i < _setAirplanes.Count; i++)
|
|
||||||
{
|
{
|
||||||
var airplane = _setAirplanes.Get(i);
|
// TODO установка позиции
|
||||||
airplane?.SetObject(maxLeft - i % numInRow * _placeSizeWidth + 5, i / numInRow * _placeSizeHeight + 10, _pictureWidth, _pictureHeight);
|
airplane.DrawingObject(g);
|
||||||
airplane?.DrawingObject(g);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,20 +14,25 @@ namespace AirplaneWithRadar
|
|||||||
where T : class
|
where T : class
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Массив объектов, которые храним
|
/// Список объектов, которые храним
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private readonly T[] _places;
|
private readonly List<T> _places;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Количество объектов в массиве
|
/// Количество объектов в списке
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int Count => _places.Length;
|
public int Count => _places.Count;
|
||||||
|
/// <summary>
|
||||||
|
/// Максимальное количество объектов в списке
|
||||||
|
/// </summary>
|
||||||
|
private readonly int _maxCount;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Конструктор
|
/// Конструктор
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="count"></param>
|
/// <param name="count"></param>
|
||||||
public SetAirplanesGeneric(int count)
|
public SetAirplanesGeneric(int count)
|
||||||
{
|
{
|
||||||
_places = new T[count];
|
_maxCount = count;
|
||||||
|
_places = new List<T>();
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Добавление объекта в набор
|
/// Добавление объекта в набор
|
||||||
@ -36,7 +41,13 @@ namespace AirplaneWithRadar
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public int Insert(T airplane)
|
public int Insert(T airplane)
|
||||||
{
|
{
|
||||||
return Insert(airplane, 0);
|
// TODO вставка в начало набора
|
||||||
|
// TODO проверка на _maxCount
|
||||||
|
if (Count < _maxCount)
|
||||||
|
{
|
||||||
|
return Insert(airplane, 0);
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Добавление объекта в набор на конкретную позицию
|
/// Добавление объекта в набор на конкретную позицию
|
||||||
@ -46,21 +57,13 @@ namespace AirplaneWithRadar
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public int Insert(T airplane, int position)
|
public int Insert(T airplane, int position)
|
||||||
{
|
{
|
||||||
int positionNullElement = position;
|
// TODO проверка позиции
|
||||||
while (Get(positionNullElement) != null)
|
// TODO вставка по позиции
|
||||||
{
|
if (position < 0 || position >= _maxCount)
|
||||||
positionNullElement++;
|
|
||||||
}
|
|
||||||
if (positionNullElement > Count || positionNullElement < 0)
|
|
||||||
{
|
{
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
while (positionNullElement != position)
|
_places.Insert(position, airplane);
|
||||||
{
|
|
||||||
_places[positionNullElement] = _places[positionNullElement - 1];
|
|
||||||
positionNullElement--;
|
|
||||||
}
|
|
||||||
_places[position] = airplane;
|
|
||||||
return position;
|
return position;
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -70,32 +73,59 @@ namespace AirplaneWithRadar
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public T Remove(int position)
|
public T Remove(int position)
|
||||||
{
|
{
|
||||||
if (position > Count || position < 0)
|
// TODO проверка позиции
|
||||||
|
if (position < 0 || position >= Count)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
else
|
T airplane = _places[position];
|
||||||
{
|
_places.RemoveAt(position);
|
||||||
var removedObject = _places[position];
|
return airplane;
|
||||||
_places[position] = null;
|
|
||||||
return removedObject;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Получение объекта из набора по позиции
|
/// Получение объекта из набора по позиции
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="position"></param>
|
/// <param name="position"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public T Get(int position)
|
public T this[int position]
|
||||||
{
|
{
|
||||||
if (position > Count || position < 0)
|
get
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
|
// TODO проверка позиции
|
||||||
|
if (position < 0 || position >= Count)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
return _places[position];
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user