Изменения

This commit is contained in:
crum61kg 2023-01-22 00:42:45 +04:00
parent d71d100ee8
commit f982e83746
3 changed files with 70 additions and 23 deletions

View File

@ -68,7 +68,7 @@ namespace WarmlyShip
if (form.ShowDialog() == DialogResult.OK)
{
DrawningObjectShip car = new(form.SelectedShip);
if (_mapWarmlyShipCollectionGeneric + car)
if ((_mapWarmlyShipCollectionGeneric + car) > -1)
{
MessageBox.Show("Объект добавлен");
pictureBox1.Image = _mapWarmlyShipCollectionGeneric.ShowSet();
@ -98,7 +98,7 @@ namespace WarmlyShip
return;
}
int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
if (_mapWarmlyShipCollectionGeneric - pos)
if ((_mapWarmlyShipCollectionGeneric - pos) != null)
{
MessageBox.Show("Объект удален");
pictureBox1.Image = _mapWarmlyShipCollectionGeneric.ShowSet();
@ -107,7 +107,6 @@ namespace WarmlyShip
{
MessageBox.Show("Не удалось удалить объект");
}
}
/// <summary>

View File

@ -26,11 +26,11 @@ namespace WarmlyShip
/// <summary>
/// Размер занимаемого объектом места (ширина)
/// </summary>
private readonly int _placeSizeWidth = 210;
private readonly int _placeSizeWidth = 140;
/// <summary>
/// Размер занимаемого объектом места (высота)
/// </summary>
private readonly int _placeSizeHeight = 90;
private readonly int _placeSizeHeight = 80;
/// <summary>
/// Набор объектов
/// </summary>
@ -60,7 +60,7 @@ namespace WarmlyShip
/// <param name="map"></param>
/// <param name="car"></param>
/// <returns></returns>
public static bool operator +(MapWithSetWarmlyShipGeneric<T, U> map, T ship)
public static int operator +(MapWithSetWarmlyShipGeneric<T, U> map, T ship)
{
return map._setWarmlyShip.Insert(ship);
}
@ -70,7 +70,7 @@ namespace WarmlyShip
/// <param name="map"></param>
/// <param name="position"></param>
/// <returns></returns>
public static bool operator -(MapWithSetWarmlyShipGeneric<T, U> map, int position)
public static T operator -(MapWithSetWarmlyShipGeneric<T, U> map, int position)
{
return map._setWarmlyShip.Remove(position);
}
@ -83,7 +83,7 @@ namespace WarmlyShip
Bitmap bmp = new(_pictureWidth, _pictureHeight);
Graphics gr = Graphics.FromImage(bmp);
DrawBackground(gr);
DrawCars(gr);
DrawWarmlyShip(gr);
return bmp;
}
/// <summary>
@ -165,12 +165,25 @@ namespace WarmlyShip
/// Метод прорисовки объектов
/// </summary>
/// <param name="g"></param>
private void DrawCars(Graphics g)
{
for (int i = 0; i < _setWarmlyShip.Count; i++)
private void DrawWarmlyShip(Graphics g)
{
// TODO установка позиции
_setWarmlyShip.Get(i)?.DrawningObject(g);
int i = 0;
int j = 0;
for (int k = 0; k < _setWarmlyShip.Count; k++)
{
_setWarmlyShip.Get(k)?.SetObject(j + 10, i + 20, _pictureWidth, _pictureHeight);
_setWarmlyShip.Get(k)?.DrawningObject(g);
if (j >= _pictureWidth - 2 * _placeSizeWidth)
{
j = 0;
i += _placeSizeHeight;
}
else
{
j += _placeSizeWidth;
}
}
}
}

View File

@ -34,10 +34,19 @@ namespace WarmlyShip
/// </summary>
/// <param name="ship">Добавляемый корабль</param>
/// <returns></returns>
public bool Insert(T ship)
public int Insert(T ship)
{
// TODO вставка в начало набора
return true;
if (ship == null)
{
return -1;
}
for (int i = Count - 1; i > 0; i--)
{
_places[i] = _places[i - 1];
}
_places[0] = ship;
return 0;
}
/// <summary>
/// Добавление объекта в набор на конкретную позицию
@ -45,26 +54,50 @@ namespace WarmlyShip
/// <param name="ship">Добавляемый автомобиль</param>
/// <param name="position">Позиция</param>
/// <returns></returns>
public bool Insert(T ship, int position)
public int Insert(T ship, int position)
{
// TODO проверка позиции
// TODO проверка, что элемент массива по этой позиции пустой, если нет, то
// проверка, что после вставляемого элемента в массиве есть пустой элемент
// сдвиг всех объектов, находящихся справа от позиции до первого пустого элемента
// TODO вставка по позиции
if (position < 0 || position > Count)
{
return -1;
}
int firstNullElementIndex = position; //индекс первого нулевого элемента
while (_places[firstNullElementIndex] != null)
{
if (firstNullElementIndex >= Count)
{
return -1;
}
firstNullElementIndex++;
}
for (int i = firstNullElementIndex; i > position; i--)
{
_places[i] = _places[i - 1];
}
_places[position] = ship;
return true;
return 0;
}
/// <summary>
/// Удаление объекта из набора с конкретной позиции
/// </summary>
/// <param name="position"></param>
/// <returns></returns>
public bool Remove(int position)
public T Remove(int position)
{
// TODO проверка позиции
// TODO удаление объекта из массива, присовив элементу массива значение null
return true;
if (_places[position] == null)
{
return null;
}
var result = _places[position];
_places[position] = null;
return result;
}
/// <summary>
/// Получение объекта из набора по позиции
@ -73,9 +106,11 @@ namespace WarmlyShip
/// <returns></returns>
public T Get(int position)
{
// TODO проверка позиции
if (_places[position] != null)
{
return _places[position];
}
return null;
}
}
}