Compare commits
2 Commits
fec308c18b
...
b15b824e76
Author | SHA1 | Date | |
---|---|---|---|
|
b15b824e76 | ||
|
55bb9dd042 |
@ -130,17 +130,19 @@ namespace ProjectTractor
|
||||
form.Show();
|
||||
Action<DrawningTractor>? tractorDelegate = new((m) =>
|
||||
{
|
||||
bool isAdditionSuccessful = (obj + m);
|
||||
if (isAdditionSuccessful)
|
||||
try
|
||||
{
|
||||
bool isAdditionSuccessful = (obj + m);
|
||||
MessageBox.Show("Объект добавлен");
|
||||
Log.Information($"Добавлен объект в коллекцию {listBoxStorages.SelectedItem.ToString() ?? string.Empty}");
|
||||
m.ChangePictureBoxSize(pictureBoxCollection.Width, pictureBoxCollection.Height);
|
||||
pictureBoxCollection.Image = obj.ShowTractors();
|
||||
|
||||
}
|
||||
else
|
||||
catch
|
||||
{
|
||||
MessageBox.Show("Не удалось добавить объект");
|
||||
Log.Information($"Не удалось добавить объект в коллекцию {listBoxStorages.SelectedItem.ToString() ?? string.Empty}");
|
||||
}
|
||||
});
|
||||
form.AddEvent(tractorDelegate);
|
||||
@ -171,18 +173,13 @@ namespace ProjectTractor
|
||||
int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
|
||||
try
|
||||
{
|
||||
if (obj - pos != null)
|
||||
{
|
||||
MessageBox.Show("Объект удален");
|
||||
pictureBoxCollection.Image = obj.ShowTractors();
|
||||
}
|
||||
else
|
||||
{
|
||||
MessageBox.Show("Не удалось удалить объект");
|
||||
}
|
||||
bool m = obj - pos;
|
||||
MessageBox.Show("Объект удален");
|
||||
pictureBoxCollection.Image = obj.ShowTractors();
|
||||
}
|
||||
catch (TractorNotFoundException ex)
|
||||
{
|
||||
Log.Warning($"Не удалось удалить объкт");
|
||||
MessageBox.Show(ex.Message);
|
||||
}
|
||||
|
||||
|
@ -3,6 +3,8 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using ProjectTractor.Exceptions;
|
||||
using Serilog;
|
||||
|
||||
namespace ProjectTractor.Generics
|
||||
{
|
||||
@ -38,7 +40,7 @@ namespace ProjectTractor.Generics
|
||||
public bool Insert(T tractor)
|
||||
{
|
||||
if (_places.Count == _maxCount)
|
||||
return false;
|
||||
throw new StorageOverflowException(_maxCount);
|
||||
Insert(tractor, 0);
|
||||
return true;
|
||||
}
|
||||
@ -48,24 +50,24 @@ namespace ProjectTractor.Generics
|
||||
/// <param name="tractor">Добавляемый автомобиль</param>
|
||||
/// <param name="position">Позиция</param>
|
||||
/// <returns></returns>
|
||||
public bool Insert(T tractor, int position)
|
||||
public void Insert(T tractor, int position)
|
||||
{
|
||||
if (!(position >= 0 && position <= Count && _places.Count < _maxCount))
|
||||
return false;
|
||||
if (_places.Count == _maxCount)
|
||||
throw new StorageOverflowException(_maxCount);
|
||||
if (!(position >= 0 && position <= Count))
|
||||
throw new Exception("Неверная позиция для вставки");
|
||||
_places.Insert(position, tractor);
|
||||
return true;
|
||||
}
|
||||
/// <summary>
|
||||
/// Удаление объекта из набора с конкретной позиции
|
||||
/// </summary>
|
||||
/// <param name="position"></param>
|
||||
/// <returns></returns>
|
||||
public bool Remove(int position)
|
||||
public void Remove(int position)
|
||||
{
|
||||
if (!(position >= 0 && position < Count))
|
||||
return false;
|
||||
throw new TractorNotFoundException(position);
|
||||
_places.RemoveAt(position);
|
||||
return true;
|
||||
}
|
||||
/// <summary>
|
||||
/// Получение объекта из набора по позиции
|
||||
@ -76,9 +78,18 @@ namespace ProjectTractor.Generics
|
||||
{
|
||||
get
|
||||
{
|
||||
if (!(position >= 0 && position <= Count))
|
||||
try
|
||||
{
|
||||
if (!(position >= 0 && position <= Count))
|
||||
return null;
|
||||
return _places[position];
|
||||
}
|
||||
catch (TractorNotFoundException ex)
|
||||
{
|
||||
return null;
|
||||
return _places[position];
|
||||
Log.Warning($"Не удалось удалить объкт");
|
||||
MessageBox.Show(ex.Message);
|
||||
}
|
||||
}
|
||||
set
|
||||
{
|
||||
|
@ -5,6 +5,8 @@ using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using ProjectTractor.DrawningObjects;
|
||||
using ProjectTractor.MovementStrategy;
|
||||
using ProjectTractor.Exceptions;
|
||||
using Serilog;
|
||||
|
||||
namespace ProjectTractor.Generics
|
||||
{
|
||||
@ -78,12 +80,21 @@ namespace ProjectTractor.Generics
|
||||
public static bool operator -(TractorsGenericCollection<T, U> collect, int
|
||||
pos)
|
||||
{
|
||||
T? obj = collect._collection[pos];
|
||||
if (obj != null)
|
||||
try
|
||||
{
|
||||
collect._collection.Remove(pos);
|
||||
T? obj = collect._collection[pos];
|
||||
if (obj != null)
|
||||
{
|
||||
collect._collection.Remove(pos);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
catch (TractorNotFoundException ex)
|
||||
{
|
||||
return false;
|
||||
Log.Warning($"Не удалось удалить объкт");
|
||||
MessageBox.Show(ex.Message);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
/// <summary>
|
||||
/// Получение объектов коллекции
|
||||
|
@ -139,12 +139,12 @@ namespace ProjectTractor
|
||||
string[] strings = str.Split(new char[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries);
|
||||
if (strings == null || strings.Length == 0)
|
||||
{
|
||||
throw new Exception("Нет данных для загрузки");
|
||||
throw new IOException("Нет данных для загрузки");
|
||||
}
|
||||
if (!strings[0].StartsWith("TractorStorage"))
|
||||
{
|
||||
//если нет такой записи, то это не те данные
|
||||
throw new Exception("Неверный формат данных");
|
||||
throw new IOException("Неверный формат данных");
|
||||
}
|
||||
_tractorStorages.Clear();
|
||||
do
|
||||
@ -164,7 +164,7 @@ namespace ProjectTractor
|
||||
{
|
||||
if (!(collection + tractor))
|
||||
{
|
||||
throw new Exception("Ошибка добавления в коллекцию");
|
||||
throw new ArgumentNullException("Ошибка добавления в коллекцию");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user