using WarmlyShip.Generics;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using WarmlyShip.DrawningObjects;
using WarmlyShip.MovementStrategy;
namespace WarmlyShip
{
///
/// Форма для работы с набором объектов класса DrawningShip
///
public partial class FormShipCollection : Form
{
///
/// Набор объектов
///
private readonly ShipsGenericCollection _theShips;
///
/// Конструктор
///
public FormShipCollection()
{
InitializeComponent();
_theShips = new ShipsGenericCollection
(pictureBoxCollection.Width, pictureBoxCollection.Height);
}
///
/// Добавление объекта в набор
///
///
///
private void ButtonAddShip_Click(object sender, EventArgs e)
{
FormWarmlyShip form = new();
if (form.ShowDialog() == DialogResult.OK)
{
if (_theShips + form.SelectedShip != -1)
{
MessageBox.Show("Объект добавлен");
pictureBoxCollection.Image = _theShips.ShowShips();
}
else
{
MessageBox.Show("Не удалось добавить объект");
}
}
}
///
/// Удаление объекта из набора
///
///
///
private void ButtonDeleteShip_Click(object sender, EventArgs e)
{
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
{
return;
}
int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
if (_theShips - pos != true)
{
MessageBox.Show("Объект удален");
pictureBoxCollection.Image = _theShips.ShowShips();
}
else
{
MessageBox.Show("Не удалось удалить объект");
}
}
///
/// Обновление рисунка по набору
///
///
///
private void ButtonRefreshCollection_Click(object sender, EventArgs e)
{
pictureBoxCollection.Image = _theShips.ShowShips();
}
}
}