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 Tank.CollectionGenericObjects; using Tank.Drowings; namespace Tank; /// /// /// public partial class FormTankCollection : Form { /// /// /// private AbstractCompany? _company = null; /// /// /// public FormTankCollection() { InitializeComponent(); } /// /// /// /// /// private void ComboBoxSelectorCompany_SelectedIndexChanged(object sender, EventArgs e) { switch (comboBoxSelectorCompany.Text) { case "Хранилище": _company = new TankSharingService(pictureBox.Width, pictureBox.Height, new MassiveGenericObjects()); break; } } /// /// Добавление обычного автомобиля /// /// /// private void ButtonAddMachine_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningMachine)); /// /// Добавление спортивного автомобиля /// /// /// private void ButtonAddTank_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningTank)); /// ///Создание объекта класса-перемещения /// /// Тип создаваемого объётека private void CreateObject(string type) { if (_company == null) { return; } Random rnd = new Random(); DrawningMachine drawningMachine; switch (type) { case nameof(DrawningMachine): drawningMachine = new DrawningMachine(rnd.Next(100, 300), rnd.Next(1000, 3000), GetColor(rnd)); break; case nameof(DrawningTank): drawningMachine = new DrawningTank(rnd.Next(650, 700), rnd.Next(15760, 16130), GetColor(rnd), GetColor(rnd), Convert.ToBoolean(rnd.Next(0, 2)), Convert.ToBoolean(rnd.Next(0, 2))); break; default: return; } if (_company + drawningMachine != -1) { MessageBox.Show("Объект добавлен"); pictureBox.Image = _company.Show(); } else { MessageBox.Show("Не удалось добавить объект"); } } /// /// Получение цвета /// /// Генератор случайных чисел /// private static Color GetColor(Random random) { Color color = Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)); ColorDialog dialog = new(); if (dialog.ShowDialog() == DialogResult.OK) { color = dialog.Color; } return color; } /// /// Удаление объекта /// /// /// private void ButtonRemoveCar_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(maskedTextBoxPosition.Text) || _company == null) { return; } if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) { return; } int pos = Convert.ToInt32(maskedTextBoxPosition.Text); if (_company - pos != null) { MessageBox.Show("Объект удален"); pictureBox.Image = _company.Show(); } else { MessageBox.Show("Не удалось удалить объект"); } } /// /// Передача объекта в другую форму /// /// /// private void ButtonGoToCheck_Click(object sender, EventArgs e) { if (_company == null) { return; } DrawningMachine? tank = null; int counter = 100; while (tank == null) { tank = _company.GetRandomObject(); counter--; if (counter <= 0) { break; } } if (tank == null) { return; } FormTank form = new() { SetMachine = tank }; form.ShowDialog(); } /// /// Перерисовка коллекции /// /// /// private void ButtonRefresh_Click(object sender, EventArgs e) { if (_company == null) { return; } pictureBox.Image = _company.Show(); } }