вроде готова к сдаче
This commit is contained in:
parent
61179daf0b
commit
a0bc374e1b
@ -35,7 +35,7 @@ public abstract class AbstractCompany
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Вычисление максимального количества элементов, который можно разместить в окне
|
/// Вычисление максимального количества элементов, который можно разместить в окне
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private int GetMaxCount => _pictureWidth * _pictureHeight / (_placeSizeWidth * _placeSizeHeight);
|
private int GetMaxCount => (_pictureWidth / _placeSizeWidth) * (_pictureHeight / _placeSizeHeight);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Конструктор
|
/// Конструктор
|
||||||
@ -101,7 +101,7 @@ public abstract class AbstractCompany
|
|||||||
DrawningShip? obj = _collection?.Get(i);
|
DrawningShip? obj = _collection?.Get(i);
|
||||||
obj?.DrawTransport(graphics);
|
obj?.DrawTransport(graphics);
|
||||||
}
|
}
|
||||||
catch (ObjectNotFoundException) { };
|
catch (Exception) { }
|
||||||
}
|
}
|
||||||
|
|
||||||
return bitmap;
|
return bitmap;
|
||||||
|
@ -27,7 +27,7 @@ public interface ICollectionGenericObjects <T>
|
|||||||
/// /// <param name="obj">Добавляемый объект</param>
|
/// /// <param name="obj">Добавляемый объект</param>
|
||||||
/// /// <param name="position">Позиция</param>
|
/// /// <param name="position">Позиция</param>
|
||||||
/// <returns>true - вставка прошла удачно, false - вставка не удалась</returns>
|
/// <returns>true - вставка прошла удачно, false - вставка не удалась</returns>
|
||||||
bool Insert (T obj, int position);
|
int Insert (T obj, int position);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Удаление объекта из коллекции с конктретной позиции
|
/// Удаление объекта из коллекции с конктретной позиции
|
||||||
|
@ -50,44 +50,37 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
|
|||||||
|
|
||||||
public T? Get(int position)
|
public T? Get(int position)
|
||||||
{
|
{
|
||||||
if (position < 0 || position >= _collection.Count)
|
if (position >= Count || position < 0) throw new PositionOutOfCollectionException(position);
|
||||||
throw new PositionOutOfCollectionException(position);
|
|
||||||
return _collection[position];
|
return _collection[position];
|
||||||
}
|
}
|
||||||
public int Insert(T obj)
|
public int Insert(T obj)
|
||||||
{
|
{
|
||||||
if (_collection.Count + 1 <= _maxCount)
|
if (Count == _maxCount) throw new CollectionOverflowException(Count);
|
||||||
{
|
_collection.Add(obj);
|
||||||
_collection.Add(obj);
|
return Count;
|
||||||
return _collection.Count - 1;
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
throw new CollectionOverflowException(MaxCount);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool Insert(T obj, int position)
|
public int Insert(T obj, int position)
|
||||||
{
|
{
|
||||||
if (_collection.Count + 1 > _maxCount || position < 0 || position >= _collection.Count)
|
if (position < 0 || position >= Count)
|
||||||
return false;
|
|
||||||
if (_collection.Count + 1 > MaxCount)
|
|
||||||
throw new CollectionOverflowException(MaxCount);
|
|
||||||
if (position < 0 || position >= MaxCount)
|
|
||||||
throw new PositionOutOfCollectionException(position);
|
throw new PositionOutOfCollectionException(position);
|
||||||
|
|
||||||
|
if (Count == _maxCount)
|
||||||
|
throw new CollectionOverflowException(Count);
|
||||||
_collection.Insert(position, obj);
|
_collection.Insert(position, obj);
|
||||||
return true;
|
return position;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public T Remove(int position)
|
public T Remove(int position)
|
||||||
{
|
{
|
||||||
if (position < 0 || position >= _collection.Count)
|
if (position >= Count || position < 0) throw new PositionOutOfCollectionException(position);
|
||||||
return null;
|
T obj = _collection[position];
|
||||||
throw new PositionOutOfCollectionException(position);
|
|
||||||
T temp = _collection[position];
|
|
||||||
_collection.RemoveAt(position);
|
_collection.RemoveAt(position);
|
||||||
return temp;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
public IEnumerable<T?> GetItems()
|
public IEnumerable<T?> GetItems()
|
||||||
{
|
{
|
||||||
for (int i = 0; i < _collection.Count; ++i)
|
for (int i = 0; i < _collection.Count; ++i)
|
||||||
{
|
{
|
||||||
|
@ -50,16 +50,14 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
|
|||||||
|
|
||||||
public T? Get(int position)
|
public T? Get(int position)
|
||||||
{
|
{
|
||||||
if (position < 0 || position >= _collection.Length)
|
if (position >= _collection.Length || position < 0) throw new PositionOutOfCollectionException(position);
|
||||||
throw new PositionOutOfCollectionException(position);
|
if (_collection[position] == null) throw new ObjectNotFoundException(position);
|
||||||
if (_collection[position] == null)
|
|
||||||
throw new ObjectNotFoundException(position);
|
|
||||||
return _collection[position];
|
return _collection[position];
|
||||||
}
|
}
|
||||||
|
|
||||||
public int Insert(T obj)
|
public int Insert(T obj)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < _collection.Length; i++)
|
for (int i = 0; i < Count; i++)
|
||||||
{
|
{
|
||||||
if (_collection[i] == null)
|
if (_collection[i] == null)
|
||||||
{
|
{
|
||||||
@ -67,47 +65,51 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
|
|||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1;
|
throw new CollectionOverflowException(Count);
|
||||||
throw new CollectionOverflowException(_collection.Length);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool Insert(T obj, int position)
|
public int Insert(T obj, int position)
|
||||||
{
|
{
|
||||||
if (position < 0 || position >= _collection.Length) // проверка позиции
|
if (position < 0 || position >= Count)
|
||||||
throw new PositionOutOfCollectionException(position);
|
{
|
||||||
if (_collection[position] == null) // Попытка вставить на указанную позицию
|
throw new PositionOutOfCollectionException(position);
|
||||||
|
}
|
||||||
|
if (_collection[position] == null)
|
||||||
{
|
{
|
||||||
_collection[position] = obj;
|
_collection[position] = obj;
|
||||||
return true;
|
return position;
|
||||||
}
|
}
|
||||||
for (int i = position; i < _collection.Length; i++) // попытка вставить объект на позицию после указанной
|
|
||||||
|
for (int i = position + 1; i < Count; i++)
|
||||||
{
|
{
|
||||||
if (_collection[i] == null)
|
if (_collection[i] == null)
|
||||||
{
|
{
|
||||||
_collection[i] = obj;
|
_collection[i] = obj;
|
||||||
return true;
|
return i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (int i = 0; i < position; i++) // попытка вставить объект на позицию до указанной
|
for (int i = position - 1; i >= 0; i--)
|
||||||
{
|
{
|
||||||
if (_collection[i] == null)
|
if (_collection[i] == null)
|
||||||
{
|
{
|
||||||
_collection[i] = obj;
|
_collection[i] = obj;
|
||||||
return true;
|
return i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
throw new CollectionOverflowException(_collection.Length);
|
|
||||||
|
throw new CollectionOverflowException(Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
public T Remove(int position)
|
public T Remove(int position)
|
||||||
{
|
{
|
||||||
if (position < 0 || position >= _collection.Length) // проверка позиции
|
if (position < 0 || position >= Count)
|
||||||
|
{
|
||||||
throw new PositionOutOfCollectionException(position);
|
throw new PositionOutOfCollectionException(position);
|
||||||
if (_collection[position] == null)
|
}
|
||||||
throw new ObjectNotFoundException(position);
|
if (_collection[position] == null) throw new ObjectNotFoundException(position);
|
||||||
T temp = _collection[position];
|
T obj = _collection[position];
|
||||||
_collection[position] = null;
|
_collection[position] = null;
|
||||||
return temp;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
public IEnumerable<T?> GetItems()
|
public IEnumerable<T?> GetItems()
|
||||||
|
@ -19,6 +19,11 @@ public class ShipSharingService : AbstractCompany
|
|||||||
|
|
||||||
protected override void DrawBackground(Graphics g)
|
protected override void DrawBackground(Graphics g)
|
||||||
{
|
{
|
||||||
|
Color backgroundColor = Color.SkyBlue;
|
||||||
|
using (Brush brush = new SolidBrush(backgroundColor))
|
||||||
|
{
|
||||||
|
g.FillRectangle(brush, new Rectangle(0, 0, _pictureWidth, _pictureHeight));
|
||||||
|
}
|
||||||
Pen pen = new Pen(Color.Brown, 3);
|
Pen pen = new Pen(Color.Brown, 3);
|
||||||
int offsetX = 10, offsetY = -12;
|
int offsetX = 10, offsetY = -12;
|
||||||
int x = 1 + offsetX, y = _pictureHeight - _placeSizeHeight + offsetY;
|
int x = 1 + offsetX, y = _pictureHeight - _placeSizeHeight + offsetY;
|
||||||
@ -30,7 +35,7 @@ public class ShipSharingService : AbstractCompany
|
|||||||
{
|
{
|
||||||
numCols++;
|
numCols++;
|
||||||
g.DrawLine(pen, x, y, x + _placeSizeWidth / 2, y);
|
g.DrawLine(pen, x, y, x + _placeSizeWidth / 2, y);
|
||||||
g.DrawLine(pen, x, y, x, y + _placeSizeHeight + 8);
|
g.DrawLine(pen, x, y, x, y + _placeSizeHeight + 4);
|
||||||
locCoord.Add(new Tuple<int, int>(x, y));
|
locCoord.Add(new Tuple<int, int>(x, y));
|
||||||
x += _placeSizeWidth + 2;
|
x += _placeSizeWidth + 2;
|
||||||
}
|
}
|
||||||
@ -49,8 +54,12 @@ public class ShipSharingService : AbstractCompany
|
|||||||
int row = numRows - 1, col = numCols;
|
int row = numRows - 1, col = numCols;
|
||||||
for (int i = 0; i < _collection?.Count; i++, col--)
|
for (int i = 0; i < _collection?.Count; i++, col--)
|
||||||
{
|
{
|
||||||
_collection?.Get(i)?.SetPictureSize(_pictureWidth, _pictureHeight);
|
try
|
||||||
_collection?.Get(i)?.SetPosition(locCoord[row * numCols - col].Item1 + 5, locCoord[row * numCols - col].Item2 + 9);
|
{
|
||||||
|
_collection?.Get(i)?.SetPictureSize(_pictureWidth, _pictureHeight);
|
||||||
|
_collection?.Get(i)?.SetPosition(locCoord[row * numCols - col].Item1 + 5, locCoord[row * numCols - col].Item2 + 9);
|
||||||
|
}
|
||||||
|
catch (Exception) { }
|
||||||
if (col == 1)
|
if (col == 1)
|
||||||
{
|
{
|
||||||
col = numCols + 1;
|
col = numCols + 1;
|
||||||
|
@ -110,11 +110,11 @@ public class StorageCollection<T>
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="filename">Путь и имя файла</param>
|
/// <param name="filename">Путь и имя файла</param>
|
||||||
/// <returns>true - сохранение прошло успешно, false - ошибка при сохранении данных</returns>
|
/// <returns>true - сохранение прошло успешно, false - ошибка при сохранении данных</returns>
|
||||||
public bool SaveData(string filename)
|
public void SaveData(string filename)
|
||||||
{
|
{
|
||||||
if (_storages.Count == 0)
|
if (_storages.Count == 0)
|
||||||
{
|
{
|
||||||
return false;
|
throw new Exception("В хранилище отсутствуют коллекции для сохранения");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (File.Exists(filename))
|
if (File.Exists(filename))
|
||||||
@ -150,14 +150,9 @@ public class StorageCollection<T>
|
|||||||
sb.Clear();
|
sb.Clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Загрузка информации по автомобилям в хранилище из файла
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="filename">Путь и имя файла</param>
|
|
||||||
/// <returns>true - загрузка прошла успешно, false - ошибка при загрузке данных</returns>
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Загрузка информации по кораблям в хранилище из файла
|
/// Загрузка информации по кораблям в хранилище из файла
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -166,15 +161,17 @@ public class StorageCollection<T>
|
|||||||
{
|
{
|
||||||
if (!File.Exists(filename))
|
if (!File.Exists(filename))
|
||||||
{
|
{
|
||||||
throw new FileNotFoundException("Файл не существует");
|
throw new Exception("Файл не существует");
|
||||||
}
|
}
|
||||||
|
|
||||||
using (StreamReader sr = new StreamReader(filename))
|
using (StreamReader sr = new StreamReader(filename))
|
||||||
{
|
{
|
||||||
string? str;
|
string? str;
|
||||||
str = sr.ReadLine();
|
str = sr.ReadLine();
|
||||||
|
if (str == null || str.Length == 0)
|
||||||
|
throw new Exception("В файле нет данных");
|
||||||
if (str != _collectionKey.ToString())
|
if (str != _collectionKey.ToString())
|
||||||
throw new FormatException("В файле неверные данные");
|
throw new Exception("В файле неверные данные");
|
||||||
_storages.Clear();
|
_storages.Clear();
|
||||||
while ((str = sr.ReadLine()) != null)
|
while ((str = sr.ReadLine()) != null)
|
||||||
{
|
{
|
||||||
@ -187,7 +184,7 @@ public class StorageCollection<T>
|
|||||||
ICollectionGenericObjects<T>? collection = StorageCollection<T>.CreateCollection(collectionType);
|
ICollectionGenericObjects<T>? collection = StorageCollection<T>.CreateCollection(collectionType);
|
||||||
if (collection == null)
|
if (collection == null)
|
||||||
{
|
{
|
||||||
throw new InvalidOperationException("Не удалось определить тип коллекции:" + record[1]);
|
throw new Exception("Не удалось создать коллекцию");
|
||||||
}
|
}
|
||||||
|
|
||||||
collection.MaxCount = Convert.ToInt32(record[2]);
|
collection.MaxCount = Convert.ToInt32(record[2]);
|
||||||
@ -195,18 +192,16 @@ public class StorageCollection<T>
|
|||||||
string[] set = record[3].Split(_separatorItems, StringSplitOptions.RemoveEmptyEntries);
|
string[] set = record[3].Split(_separatorItems, StringSplitOptions.RemoveEmptyEntries);
|
||||||
foreach (string elem in set)
|
foreach (string elem in set)
|
||||||
{
|
{
|
||||||
if (elem?.CreateDrawningShip() is T ship)
|
if (elem?.CreateDrawningShip() is T boat)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (collection.Insert(ship) == -1)
|
if (collection.Insert(boat) == -1)
|
||||||
{
|
throw new Exception("Объект не удалось добавить в коллекцию: " + record[3]);
|
||||||
throw new InvalidOperationException("Объект не удалось добавить в коллекцию: " + record[3]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (CollectionOverflowException ex)
|
catch (CollectionOverflowException ex)
|
||||||
{
|
{
|
||||||
throw new CollectionOverflowException("Коллекция переполнена", ex);
|
throw new Exception("Коллекция переполнена", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,12 +14,8 @@ namespace ProjectContainerShip.Exceptions;
|
|||||||
internal class CollectionOverflowException : ApplicationException
|
internal class CollectionOverflowException : ApplicationException
|
||||||
{
|
{
|
||||||
public CollectionOverflowException(int count) : base("В коллекции превышено допустимое количество: " + count) { }
|
public CollectionOverflowException(int count) : base("В коллекции превышено допустимое количество: " + count) { }
|
||||||
|
|
||||||
public CollectionOverflowException() : base() { }
|
public CollectionOverflowException() : base() { }
|
||||||
|
|
||||||
public CollectionOverflowException(string message) : base(message) { }
|
public CollectionOverflowException(string message) : base(message) { }
|
||||||
|
|
||||||
public CollectionOverflowException(string message, Exception exception) : base(message, exception) { }
|
public CollectionOverflowException(string message, Exception exception) : base(message, exception) { }
|
||||||
|
|
||||||
protected CollectionOverflowException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
protected CollectionOverflowException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
||||||
}
|
}
|
||||||
|
@ -14,12 +14,8 @@ namespace ProjectContainerShip.Exceptions;
|
|||||||
internal class ObjectNotFoundException : ApplicationException
|
internal class ObjectNotFoundException : ApplicationException
|
||||||
{
|
{
|
||||||
public ObjectNotFoundException(int i) : base("Не найден объект по позиции " + i) { }
|
public ObjectNotFoundException(int i) : base("Не найден объект по позиции " + i) { }
|
||||||
|
|
||||||
public ObjectNotFoundException() : base() { }
|
public ObjectNotFoundException() : base() { }
|
||||||
|
|
||||||
public ObjectNotFoundException(string message) : base(message) { }
|
public ObjectNotFoundException(string message) : base(message) { }
|
||||||
|
|
||||||
public ObjectNotFoundException(string message, Exception exception) : base(message, exception) { }
|
public ObjectNotFoundException(string message, Exception exception) : base(message, exception) { }
|
||||||
|
|
||||||
protected ObjectNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
protected ObjectNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
||||||
}
|
}
|
||||||
|
@ -13,13 +13,9 @@ namespace ProjectContainerShip.Exceptions;
|
|||||||
[Serializable]
|
[Serializable]
|
||||||
internal class PositionOutOfCollectionException : ApplicationException
|
internal class PositionOutOfCollectionException : ApplicationException
|
||||||
{
|
{
|
||||||
public PositionOutOfCollectionException(int i) : base("Выход за границы коллекции. Позиция " + i) { }
|
public PositionOutOfCollectionException(int i) : base("Выход за границы коллекции.Позиция " + i) { }
|
||||||
|
|
||||||
public PositionOutOfCollectionException() : base() { }
|
public PositionOutOfCollectionException() : base() { }
|
||||||
|
|
||||||
public PositionOutOfCollectionException(string message) : base(message) { }
|
public PositionOutOfCollectionException(string message) : base(message) { }
|
||||||
|
|
||||||
public PositionOutOfCollectionException(string message, Exception exception) : base(message, exception) { }
|
public PositionOutOfCollectionException(string message, Exception exception) : base(message, exception) { }
|
||||||
|
|
||||||
protected PositionOutOfCollectionException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
protected PositionOutOfCollectionException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
||||||
}
|
}
|
||||||
|
@ -35,6 +35,7 @@ namespace ProjectContainerShip
|
|||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
_storageCollection = new();
|
_storageCollection = new();
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
|
_logger.LogInformation("Форма загрузилась");
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Работа с компанией
|
#region Работа с компанией
|
||||||
@ -66,30 +67,26 @@ namespace ProjectContainerShip
|
|||||||
/// Добавление лодки в коллекцию
|
/// Добавление лодки в коллекцию
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="boat"></param>
|
/// <param name="boat"></param>
|
||||||
/// <summary>
|
|
||||||
/// Метод установки корабля в компанию
|
|
||||||
/// </summary>
|
|
||||||
private void SetShip(DrawningShip? ship)
|
private void SetShip(DrawningShip? ship)
|
||||||
{
|
{
|
||||||
if (_company == null)
|
|
||||||
return;
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
if (_company == null || ship == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (_company + ship != -1)
|
if (_company + ship != -1)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Объект добавлен");
|
MessageBox.Show("Объект добавлен");
|
||||||
pictureBox.Image = _company.Show();
|
pictureBox.Image = _company.Show();
|
||||||
_logger.LogInformation("Добавление корабля {ship} в коллекцию", ship);
|
_logger.LogInformation("Добавлен объект: " + ship.GetDataForSave());
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
MessageBox.Show("Не удалось добавить объект");
|
|
||||||
_logger.LogInformation("Не удалось добавить корабль {ship} в коллекцию", ship);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (ObjectNotFoundException) { }
|
||||||
catch (CollectionOverflowException ex)
|
catch (CollectionOverflowException ex)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Ошибка переполнения коллекции");
|
MessageBox.Show("В коллекции превышено допустимое количество элементов");
|
||||||
_logger.LogError("Ошибка: {Message}", ex.Message);
|
_logger.LogError("Ошибка: {Message}", ex.Message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -101,43 +98,32 @@ namespace ProjectContainerShip
|
|||||||
/// <param name="e"></param>
|
/// <param name="e"></param>
|
||||||
private void ButtonDelShip_Click(object sender, EventArgs e)
|
private void ButtonDelShip_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(maskedTextBoxPosition.Text) || _company == null)
|
int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
|
if (string.IsNullOrEmpty(maskedTextBoxPosition.Text) || _company == null)
|
||||||
|
{
|
||||||
|
throw new Exception("Входные данные отсутствуют");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (_company - pos != null)
|
if (_company - pos != null)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Объект удален");
|
MessageBox.Show("Объект удален");
|
||||||
pictureBox.Image = _company.Show();
|
pictureBox.Image = _company.Show();
|
||||||
_logger.LogInformation("Удаление корабля по индексу {pos}", pos);
|
_logger.LogInformation("Объект удален");
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
MessageBox.Show("Не удалось удалить объект");
|
|
||||||
_logger.LogInformation("Не удалось удалить корабль из коллекции по индексу {pos}", pos);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (ObjectNotFoundException ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
MessageBox.Show("Не найден объект по позиции " + pos);
|
||||||
MessageBox.Show("Ошибка: отсутствует объект");
|
|
||||||
_logger.LogError("Ошибка: {Message}", ex.Message);
|
_logger.LogError("Ошибка: {Message}", ex.Message);
|
||||||
}
|
}
|
||||||
catch (PositionOutOfCollectionException ex)
|
|
||||||
{
|
|
||||||
|
|
||||||
MessageBox.Show("Ошибка: неправильная позиция");
|
|
||||||
_logger.LogError("Ошибка: {Message}", ex.Message);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -154,24 +140,32 @@ namespace ProjectContainerShip
|
|||||||
|
|
||||||
DrawningShip? ship = null;
|
DrawningShip? ship = null;
|
||||||
int counter = 100;
|
int counter = 100;
|
||||||
while (ship == null)
|
try
|
||||||
{
|
{
|
||||||
ship = _company.GetRandomObject();
|
while (ship == null)
|
||||||
counter--;
|
|
||||||
if (counter <= 0)
|
|
||||||
{
|
{
|
||||||
break;
|
ship = _company.GetRandomObject();
|
||||||
|
counter--;
|
||||||
|
if (counter <= 0)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (ship == null)
|
if (ship == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
FormContainerShip form = new FormContainerShip();
|
||||||
|
form.SetShip = ship;
|
||||||
|
form.ShowDialog();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
return;
|
MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
}
|
}
|
||||||
|
|
||||||
FormContainerShip form = new FormContainerShip();
|
|
||||||
form.SetShip = ship;
|
|
||||||
form.ShowDialog();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -242,16 +236,27 @@ namespace ProjectContainerShip
|
|||||||
/// <param name="e"></param>
|
/// <param name="e"></param>
|
||||||
private void ButtonCollectionDel_Click(object sender, EventArgs e)
|
private void ButtonCollectionDel_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItem == null)
|
if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItems == null)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Коллекция не выбрана");
|
MessageBox.Show("Коллекция не выбрана");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (MessageBox.Show("Удалить коллекцию?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes)
|
|
||||||
return;
|
try
|
||||||
_storageCollection.DelCollection(listBoxCollection.SelectedItem.ToString());
|
{
|
||||||
_logger.LogInformation("Удаление коллекции с названием {name}", listBoxCollection.SelectedItem.ToString());
|
if (MessageBox.Show("Удалить коллекцию?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
|
||||||
RefreshListBoxItems();
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_storageCollection.DelCollection(listBoxCollection.SelectedItem.ToString());
|
||||||
|
RefreshListBoxItems();
|
||||||
|
_logger.LogInformation("Удалена коллекция: ", listBoxCollection.SelectedItem.ToString());
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.LogError("Ошибка: {Message}", ex.Message);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -294,6 +299,7 @@ namespace ProjectContainerShip
|
|||||||
/// <param name="e"></param>
|
/// <param name="e"></param>
|
||||||
private void saveToolStripMenuItem_Click(object sender, EventArgs e)
|
private void saveToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
if (saveFileDialog.ShowDialog() == DialogResult.OK)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -303,7 +309,7 @@ namespace ProjectContainerShip
|
|||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
_logger.LogError("Ошибка: {Message}", ex.Message);
|
_logger.LogError("Ошибка: {Message}", ex.Message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -145,9 +145,9 @@ public partial class FormShipConfig : Form
|
|||||||
|
|
||||||
private void labelAdditionalColor_DragDrop(object sender, DragEventArgs e)
|
private void labelAdditionalColor_DragDrop(object sender, DragEventArgs e)
|
||||||
{
|
{
|
||||||
if (_ship?.EntityShip is EntityContainerShip _catamaran)
|
if (_ship?.EntityShip is EntityContainerShip _containerShip)
|
||||||
{
|
{
|
||||||
_catamaran.SetAdditionalColor((Color)e.Data.GetData(typeof(Color)));
|
_containerShip.SetAdditionalColor((Color)e.Data.GetData(typeof(Color)));
|
||||||
}
|
}
|
||||||
DrawObject();
|
DrawObject();
|
||||||
|
|
||||||
|
@ -23,20 +23,19 @@ namespace ProjectContainerShip
|
|||||||
}
|
}
|
||||||
private static void ConfigureServices(ServiceCollection services)
|
private static void ConfigureServices(ServiceCollection services)
|
||||||
{
|
{
|
||||||
|
string[] path = Directory.GetCurrentDirectory().Split('\\');
|
||||||
|
string pathNeed = "";
|
||||||
|
for (int i = 0; i < path.Length - 3; i++)
|
||||||
|
{
|
||||||
|
pathNeed += path[i] + "\\";
|
||||||
|
}
|
||||||
|
|
||||||
services.AddSingleton<FormShipCollection>()
|
services.AddSingleton<FormShipCollection>()
|
||||||
.AddLogging(option =>
|
.AddLogging(option =>
|
||||||
{
|
{
|
||||||
var configuration = new ConfigurationBuilder()
|
|
||||||
.SetBasePath(Directory.GetCurrentDirectory())
|
|
||||||
.AddJsonFile(path: "C:\\Users\\Äàíèë\\Desktop\\Ó÷åáà\\Óíèâåð\\1 Êóðñ\\2ñåìåñòð\\OOP\\Lab\\ProjectContainerShip\\ProjectContainerShip\\appSetting.json", optional: false, reloadOnChange: true)
|
|
||||||
.Build();
|
|
||||||
|
|
||||||
var logger = new LoggerConfiguration()
|
|
||||||
.ReadFrom.Configuration(configuration)
|
|
||||||
.CreateLogger();
|
|
||||||
|
|
||||||
option.SetMinimumLevel(LogLevel.Information);
|
option.SetMinimumLevel(LogLevel.Information);
|
||||||
option.AddSerilog(logger);
|
option.AddSerilog(new LoggerConfiguration().ReadFrom.Configuration(new ConfigurationBuilder().
|
||||||
|
AddJsonFile($"{pathNeed}appSetting.json").Build()).CreateLogger());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,20 +1,15 @@
|
|||||||
{
|
{
|
||||||
"Serilog": {
|
"Serilog": {
|
||||||
"Using": [ "Serilog.Sinks.File" ],
|
"Using": [ "Serilog.Sinks.File" ],
|
||||||
"MinimumLevel": "Information",
|
"MinimumLevel": "Debug",
|
||||||
"WriteTo": [
|
"WriteTo": [
|
||||||
{
|
{
|
||||||
"Name": "File",
|
"Name": "File",
|
||||||
"Args": {
|
"Args": { "path": "log.log" }
|
||||||
"path": "Logs/log_.log",
|
|
||||||
"rollingInterval": "Day",
|
|
||||||
"outputTemplate": "[{Timestamp:HH:mm:ss.fff}]{Level:u4}: {Message:lj}{NewLine}{Exception}"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ],
|
|
||||||
"Properties": {
|
"Properties": {
|
||||||
"Application": "ContainerShip"
|
"Applicatoin": "Sample"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user