Финальный этап

This commit is contained in:
Максим Егоров 2024-10-05 23:17:03 +04:00
parent 8b8c908d41
commit ded89563f9
6 changed files with 43 additions and 69 deletions

View File

@ -260,6 +260,5 @@ namespace Sailboat
private ToolStripMenuItem LoadToolStripMenuItem;
private OpenFileDialog openFileDialog;
private SaveFileDialog saveFileDialog;
private EventHandler buttonRemoveBoat_Click;
}
}

View File

@ -13,14 +13,13 @@ using Sailboat.Exceptions;
using Sailboat.Generics;
using Sailboat.MovementStrategy;
namespace Sailboat
{
public partial class FormBoatCollection : Form
{
private readonly BoatsGenericStorage _storage;
private readonly ILogger _logger;
private FormBoatCollection(ILogger<BoatsGenericStorage> logger)
public FormBoatCollection(ILogger<FormBoatCollection> logger)
{
InitializeComponent();
_storage = new BoatsGenericStorage(pictureBoxCollection.Width, pictureBoxCollection.Height);
@ -71,7 +70,6 @@ namespace Sailboat
{
if (listBoxStorages.SelectedIndex == -1)
{
_logger.LogWarning("Добавление пустого объекта");
return;
}
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
@ -97,7 +95,7 @@ namespace Sailboat
}
}
private void ButtonRemoveBoat_Click(object sender, EventArgs e)
private void buttonRemoveBoat_Click(object sender, EventArgs e)
{
if (listBoxStorages.SelectedIndex == -1)
{
@ -135,6 +133,7 @@ namespace Sailboat
_logger.LogWarning($"{ex.Message} из набора {listBoxStorages.SelectedItem.ToString()}");
}
}
private void buttonRefreshCollection_Click(object sender, EventArgs e)
{
if (listBoxStorages.SelectedIndex == -1)
@ -166,8 +165,7 @@ namespace Sailboat
private void ListBoxObjects_SelectedIndexChanged(object sender, EventArgs e)
{
pictureBoxCollection.Image =
_storage[listBoxStorages.SelectedItem?.ToString() ?? string.Empty]?.ShowBoats();
pictureBoxCollection.Image = _storage[listBoxStorages.SelectedItem?.ToString() ?? string.Empty]?.ShowBoats();
}
private void buttonDelObject_Click(object sender, EventArgs e)
@ -178,10 +176,9 @@ namespace Sailboat
return;
}
string name = listBoxStorages.SelectedItem.ToString() ?? string.Empty;
if (MessageBox.Show($"Удалить объект {listBoxStorages.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
if (MessageBox.Show($"Удалить объект {name}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
_storage.DelSet(listBoxStorages.SelectedItem.ToString()
?? string.Empty);
_storage.DelSet(name);
ReloadObjects();
_logger.LogInformation($"Удален набор: {name}");
}
@ -190,17 +187,20 @@ namespace Sailboat
private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
{
try
if (saveFileDialog.ShowDialog() == DialogResult.OK)
{
_storage.SaveData(saveFileDialog.FileName);
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogInformation($"Данные загружены в файл {saveFileDialog.FileName}");
try
{
_storage.SaveData(saveFileDialog.FileName);
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogInformation($"Данные загружены в файл {saveFileDialog.FileName}");
}
catch (Exception ex)
{
MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Не удалось сохранить информацию в файл: {ex.Message}");
}
catch (Exception ex)
{
MessageBox.Show($"Не сохранилось: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogWarning($"Не удалось сохранить информацию в файл: {ex.Message}");
}
}
}
@ -211,26 +211,21 @@ namespace Sailboat
try
{
_storage.LoadData(openFileDialog.FileName);
ReloadObjects();
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogInformation($"Данные загружены из файла {openFileDialog.FileName}");
foreach (var collection in _storage.Keys)
{
listBoxStorages.Items.Add(collection);
}
ReloadObjects();
{
MessageBox.Show("Загрузка прошла успешно",
"Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
catch (Exception ex)
{
MessageBox.Show($"Не загрузилось: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show($"Не загрузилось: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogWarning($"Не удалось загрузить информацию из файла: {ex.Message}");
}
}
ReloadObjects();
}
private void pictureBoxCollection_Click(object sender, EventArgs e)
{
}
}
}
}

View File

@ -210,7 +210,6 @@
Name = "FormSailboat";
StartPosition = FormStartPosition.CenterScreen;
Text = "Парусник";
Load += FormSailboat_Load;
((System.ComponentModel.ISupportInitialize)pictureBoxSailboat).EndInit();
ResumeLayout(false);
PerformLayout();

View File

@ -129,12 +129,6 @@ namespace Sailboat
{
SelectedBoat = _drawingBoat;
DialogResult = DialogResult.OK;
}
private static void FormSailboat_Load(object sender, EventArgs e)
{
}
}
}
}

View File

@ -1,8 +1,6 @@
using System;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
using Serilog;
namespace Sailboat
@ -15,16 +13,13 @@ namespace Sailboat
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
var services = new ServiceCollection();
ConfigureServices(services);
ServiceProvider serviceProvider = services.BuildServiceProvider();
{
using (ServiceProvider serviceProvider = services.BuildServiceProvider())
{
Application.Run(serviceProvider.GetRequiredService<FormBoatCollection>());
}
}
}
private static void ConfigureServices(ServiceCollection services)
@ -42,9 +37,7 @@ namespace Sailboat
option.SetMinimumLevel(LogLevel.Information);
option.AddSerilog(logger);
option.AddNLog("nlog.config");
});
}
}
}

View File

@ -1,10 +1,10 @@
using System;
using Sailboat.Exceptions;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Sailboat.Exceptions;
namespace Sailboat.Generics
{
@ -13,7 +13,7 @@ namespace Sailboat.Generics
/// <summary>
/// Список объектов, которые храним
/// </summary>
private readonly List<T?> _places;
private readonly List <T?> _places;
/// <summary>
/// Количество объектов в массиве
/// </summary>
@ -38,12 +38,7 @@ namespace Sailboat.Generics
/// <returns></returns>
public bool Insert(T boat)
{
if (_places.Count == _maxCount)
{
throw new StorageOverflowException(_maxCount);
}
Insert(boat, 0);
return true;
return Insert(boat, 0);
}
/// <summary>
/// Добавление объекта в набор на конкретную позицию
@ -53,13 +48,12 @@ namespace Sailboat.Generics
/// <returns></returns>
public bool Insert(T boat, int position)
{
if (_places.Count == _maxCount)
if (position < 0 || position >= _maxCount)
throw new BoatNotFoundException(position);
if (Count >= _maxCount)
throw new StorageOverflowException(_maxCount);
if (!(position >= 0 && position <= Count))
{
return false;
}
_places.Insert(position, boat);
_places.Insert(0, boat);
return true;
}
/// <summary>
@ -69,7 +63,7 @@ namespace Sailboat.Generics
/// <returns></returns>
public bool Remove(int position)
{
if (position < 0 || position >= Count)
if (position < 0 || position > _maxCount || position >= Count)
{
throw new BoatNotFoundException(position);
}
@ -87,7 +81,7 @@ namespace Sailboat.Generics
{
if (position < 0 || position >= Count)
{
return null;
return null;
}
return _places[position];
}
@ -95,7 +89,7 @@ namespace Sailboat.Generics
{
if (!(position >= 0 && position < Count && _places.Count < _maxCount))
{
return;
return;
}
_places.Insert(position, value);
return;
@ -117,4 +111,4 @@ namespace Sailboat.Generics
}
}
}
}
}