Лабораторная работка #3

This commit is contained in:
sqdselo 2024-04-01 18:26:17 +04:00
parent dc01587054
commit 681e60fbd6
6 changed files with 39 additions and 54 deletions

View File

@ -41,13 +41,13 @@ namespace HoistingCrane.CollectionGenericObjects
arr.SetMaxCount = GetMaxCount; arr.SetMaxCount = GetMaxCount;
} }
public static int operator +(AbstractCompany company, DrawningTrackedVehicle car) public static DrawningTrackedVehicle operator +(AbstractCompany company, DrawningTrackedVehicle car)
{ {
return company.arr?.Insert(car) ?? 0; return company.arr?.Insert(car) ?? null;
} }
public static DrawningTrackedVehicle operator -(AbstractCompany company, int position) public static DrawningTrackedVehicle operator -(AbstractCompany company, int position)
{ {
return company.arr?.Remove(position); return company.arr?.Remove(position) ?? null;
} }
public DrawningTrackedVehicle? GetRandomObject() public DrawningTrackedVehicle? GetRandomObject()

View File

@ -16,14 +16,14 @@
/// </summary> /// </summary>
/// <param name="obj"></param> /// <param name="obj"></param>
/// <returns></returns> /// <returns></returns>
int Insert(T obj); T? Insert(T obj);
/// <summary> /// <summary>
/// Добавление элемента в коллекцию на определенную позицию /// Добавление элемента в коллекцию на определенную позицию
/// </summary> /// </summary>
/// <param name="obj"></param> /// <param name="obj"></param>
/// <param name="position"></param> /// <param name="position"></param>
/// <returns></returns> /// <returns></returns>
bool Insert(T obj, int position); T? Insert(T obj, int position);
/// <summary> /// <summary>
/// Удаление элемента из коллекции по его позиции /// Удаление элемента из коллекции по его позиции
/// </summary> /// </summary>

View File

@ -30,65 +30,54 @@
return null; return null;
} }
public int Insert(T obj) public T? Insert(T obj)
{ {
for(int i = 0; i < Count; i++) for (int i = 0; i < Count; i++)
{ {
if (arr[i] == null) { if (arr[i] == null)
Insert(obj,i); {
return 1; return Insert(obj, 0);
} }
} }
return 0; return null;
} }
public bool Insert(T obj, int position) public T? Insert(T obj, int position)
{ {
// Проверка позиции //todo Проверка позиции
if (position < Count && position >= 0) if (position < 0 || position > Count)
{ {
if (arr[position] == null) return null;
}
if (arr[position] == null)
{
arr[position] = obj;
return arr[position];
}
else
{
if (Insert(obj, position + 1) != null)
{ {
arr[position] = obj; return arr[position + 1];
} }
else if (Insert(obj, position - 1) != null)
{ {
int flag = -1; return arr[position - 1];
for (int i = position + 1; i < arr.Length; i++)
{
if (arr[i] == null)
{
flag = 1;
arr[i] = obj;
break;
}
}
if (flag == -1 && position != 0)
{
for (int i = position - 1; i >= 0; i--)
{
if (arr[i] == null)
{
arr[i] = obj;
break;
}
}
}
} }
} }
return null;
return false; }
}
public T? Remove(int position) public T? Remove(int position)
{ {
if(position >= 0 && position < Count) if(position >= 0 && position < Count)
{ {
T? temp = arr[position];
arr[position] = null; arr[position] = null;
return arr[position]; return temp;
} }
return arr[position]; return null;
} }
} }
} }

View File

@ -20,7 +20,6 @@ namespace HoistingCrane
} }
} }
private void CreateObject(string type) private void CreateObject(string type)
{ {
DrawningTrackedVehicle drawning; DrawningTrackedVehicle drawning;
@ -39,7 +38,7 @@ namespace HoistingCrane
default: default:
return; return;
} }
if ((_company + drawning) == 1) if ((_company + drawning) != null)
{ {
MessageBox.Show("Объект добавлен"); MessageBox.Show("Объект добавлен");
pictureBox.Image = _company.Show(); pictureBox.Image = _company.Show();
@ -61,8 +60,6 @@ namespace HoistingCrane
return color; return color;
} }
private void buttonCreateHoistingCrane_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningHoistingCrane)); private void buttonCreateHoistingCrane_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningHoistingCrane));
@ -81,7 +78,7 @@ namespace HoistingCrane
return; return;
} }
int pos = Convert.ToInt32(maskedTextBox.Text); int pos = Convert.ToInt32(maskedTextBox.Text);
if ((_company - pos) == null) if ((_company - pos) != null)
{ {
MessageBox.Show("Объект удален!"); MessageBox.Show("Объект удален!");
pictureBox.Image = _company.Show(); pictureBox.Image = _company.Show();

View File

@ -47,7 +47,6 @@
FieldWidth = width; FieldWidth = width;
FieldHeight = height; FieldHeight = height;
} }
/// <summary> /// <summary>
/// Шаг перемещения /// Шаг перемещения
/// </summary> /// </summary>
@ -119,7 +118,6 @@
/// </summary> /// </summary>
/// <returns></returns> /// <returns></returns>
protected abstract bool IsTargetDestination(); protected abstract bool IsTargetDestination();
/// <summary> /// <summary>
/// Попытка перемещения в требуемом направлении /// Попытка перемещения в требуемом направлении
/// </summary> /// </summary>

View File

@ -1,4 +1,6 @@
namespace HoistingCrane.MovementStrategy using System.Configuration;
namespace HoistingCrane.MovementStrategy
{ {
public class MoveToBorder : AbstractStrategy public class MoveToBorder : AbstractStrategy
{ {
@ -12,7 +14,6 @@
return objParams.RightBorder + GetStep() >= FieldWidth && objParams.DownBorder + GetStep() >= FieldHeight; return objParams.RightBorder + GetStep() >= FieldWidth && objParams.DownBorder + GetStep() >= FieldHeight;
} }
protected override void MoveToTarget() protected override void MoveToTarget()
{ {
ObjectParameters? objParams = GetObjectParameters; ObjectParameters? objParams = GetObjectParameters;