Генерация ошибок

This commit is contained in:
Danil Kargin 2022-11-27 16:17:52 +04:00
parent 18fbb55794
commit 542c68a68f
5 changed files with 93 additions and 24 deletions

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace AirFighter
{
internal class AirFighterNotFoundException : ApplicationException
{
public AirFighterNotFoundException(int i) : base($"Не найден объект по позиции { i}") { }
public AirFighterNotFoundException() : base() { }
public AirFighterNotFoundException(string message) : base(message) { }
public AirFighterNotFoundException(string message, Exception exception) :
base(message, exception)
{ }
protected AirFighterNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}
}

View File

@ -68,14 +68,25 @@ namespace AirFighter
if (_airFighter != null) if (_airFighter != null)
{ {
DrawningObjectAirFighter airFighter = new(_airFighter); DrawningObjectAirFighter airFighter = new(_airFighter);
if ((_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + airFighter) == 0) try
{ {
MessageBox.Show("Объект добавлен"); if ((_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + airFighter) == 0)
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); {
MessageBox.Show("Объект добавлен");
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
}
else
{
MessageBox.Show("Не удалось добавить объект");
}
} }
else catch (StorageOverflowException ex)
{ {
MessageBox.Show("Не удалось добавить объект"); MessageBox.Show($"Ошибка добавления: {ex.Message}");
}
catch (Exception ex)
{
MessageBox.Show($"Неизвестная ошибка: {ex.Message}");
} }
} }
} }
@ -113,14 +124,24 @@ namespace AirFighter
return; return;
} }
int pos = Convert.ToInt32(maskedTextBoxPosition.Text); int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
if ((_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos) != null) try
{ {
MessageBox.Show("Объект удален"); if ((_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos) != null)
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); {
MessageBox.Show("Объект удален");
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
}
else
{
MessageBox.Show("Не удалось удалить объект");
}
}catch(AirFighterNotFoundException ex)
{
MessageBox.Show($"Ошибка удаления: {ex.Message}");
} }
else catch(Exception ex)
{ {
MessageBox.Show("Не удалось удалить объект"); MessageBox.Show($"Неизвестная ошибка: {ex.Message}");
} }
} }
/// <summary> /// <summary>
@ -237,14 +258,15 @@ namespace AirFighter
{ {
if (saveFileDialog.ShowDialog() == DialogResult.OK) if (saveFileDialog.ShowDialog() == DialogResult.OK)
{ {
if (_mapsCollection.SaveData(saveFileDialog.FileName)) try
{ {
_mapsCollection.SaveData(saveFileDialog.FileName);
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBox.Show("Сохранение прошло успешно", "Результат",
MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBoxButtons.OK, MessageBoxIcon.Information);
} }
else catch(Exception ex)
{ {
MessageBox.Show("Не сохранилось", "Результат", MessageBox.Show($"Не сохранилось: {ex.Message}", "Результат",
MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBoxButtons.OK, MessageBoxIcon.Error);
} }
} }
@ -258,15 +280,16 @@ namespace AirFighter
{ {
if (openFileDialog.ShowDialog() == DialogResult.OK) if (openFileDialog.ShowDialog() == DialogResult.OK)
{ {
if (_mapsCollection.LoadData(openFileDialog.FileName)) try
{ {
_mapsCollection.LoadData(openFileDialog.FileName);
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBox.Show("Загрузка прошла успешно", "Результат",
MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBoxButtons.OK, MessageBoxIcon.Information);
ReloadMaps(); ReloadMaps();
} }
else catch(Exception ex)
{ {
MessageBox.Show("Загрузка не удалась", "Результат", MessageBox.Show($"Загрузка не удалась: {ex.Message}", "Результат",
MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBoxButtons.OK, MessageBoxIcon.Error);
} }
} }

View File

@ -114,11 +114,11 @@ namespace AirFighter
/// </summary> /// </summary>
/// <param name = "filename" ></ param > /// <param name = "filename" ></ param >
/// < returns ></ returns > /// < returns ></ returns >
public bool LoadData(string filename) public void LoadData(string filename)
{ {
if (!File.Exists(filename)) if (!File.Exists(filename))
{ {
return false; throw new FileNotFoundException("Файл не найден");
} }
string bufferTextFromFile = ""; string bufferTextFromFile = "";
using (StreamReader sr = new(filename)) using (StreamReader sr = new(filename))
@ -126,7 +126,7 @@ namespace AirFighter
string checkMap = sr.ReadLine(); string checkMap = sr.ReadLine();
if (!checkMap.Contains("MapsCollection")) if (!checkMap.Contains("MapsCollection"))
{ {
return false; throw new FileFormatException("Формат данных в файле не правильный");
} }
bufferTextFromFile = sr.ReadLine(); bufferTextFromFile = sr.ReadLine();
_mapStorages.Clear(); _mapStorages.Clear();
@ -148,7 +148,6 @@ namespace AirFighter
bufferTextFromFile = sr.ReadLine(); bufferTextFromFile = sr.ReadLine();
} }
} }
return true;
} }
} }
} }

View File

@ -52,6 +52,10 @@ namespace AirFighter
/// <returns></returns> /// <returns></returns>
public int Insert(T airFighter, int position) public int Insert(T airFighter, int position)
{ {
if (Count >= _maxCount)
{
throw new StorageOverflowException();
}
if (position < 0 && position > _maxCount) if (position < 0 && position > _maxCount)
{ {
return -1; return -1;
@ -69,14 +73,16 @@ namespace AirFighter
/// <returns></returns> /// <returns></returns>
public T Remove(int position) public T Remove(int position)
{ {
if (position >= 0 && position < _maxCount && _places[position] != null) if (position >= 0 && position < Count)
{ {
T temp = _places[position]; T temp = _places[position];
_places.RemoveAt(position); _places.RemoveAt(position);
return temp; return temp;
} }
else else
return null; {
throw new AirFighterNotFoundException(position);
}
} }
/// <summary> /// <summary>
/// Получение объекта из набора по позиции /// Получение объекта из набора по позиции

View File

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace AirFighter
{
[Serializable]
internal class StorageOverflowException : ApplicationException
{
public StorageOverflowException(int count) : base($"В наборе превышено допустимое количество: { count}") { }
public StorageOverflowException() : base() { }
public StorageOverflowException(string message) : base(message) { }
public StorageOverflowException(string message, Exception exception) :
base(message, exception)
{ }
protected StorageOverflowException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}
}