From 1aa2952a847e823274615aa5b325354f21f60cb7 Mon Sep 17 00:00:00 2001 From: Almaz <79022113685@mail.ru> Date: Mon, 15 Apr 2024 20:17:33 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9B=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82?= =?UTF-8?q?=D0=BE=D1=80=D0=BD=D0=B0=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=20=E2=84=963?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AbstractCompany.cs | 121 ++++++++++++ .../CruiserSharingService.cs | 66 +++++++ .../ICollectionGenericObjects.cs | 6 +- .../MassiveGenericObjects.cs | 39 +++- ProjectCruiser/ProjectCruiser/FormCruiser.cs | 16 ++ .../FormCruiserCollection.Designer.cs | 173 ++++++++++++++++++ .../ProjectCruiser/FormCruiserCollection.cs | 168 +++++++++++++++++ .../ProjectCruiser/FormCruiserCollection.resx | 120 ++++++++++++ ProjectCruiser/ProjectCruiser/Program.cs | 2 +- 9 files changed, 702 insertions(+), 9 deletions(-) create mode 100644 ProjectCruiser/ProjectCruiser/CollectionGenericObjects/AbstractCompany.cs create mode 100644 ProjectCruiser/ProjectCruiser/CollectionGenericObjects/CruiserSharingService.cs create mode 100644 ProjectCruiser/ProjectCruiser/FormCruiserCollection.Designer.cs create mode 100644 ProjectCruiser/ProjectCruiser/FormCruiserCollection.cs create mode 100644 ProjectCruiser/ProjectCruiser/FormCruiserCollection.resx diff --git a/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/AbstractCompany.cs b/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/AbstractCompany.cs new file mode 100644 index 0000000..9deb6a9 --- /dev/null +++ b/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/AbstractCompany.cs @@ -0,0 +1,121 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using ProjectCruiser.Drawings; + +namespace ProjectCruiser.CollectionGenericObjects; + +/// +/// Абстракция компании, хранящий коллекцию автомобилей +/// +public abstract class AbstractCompany +{ + /// + /// Размер места (ширина) + /// + protected readonly int _placeSizeWidth = 210; + + /// + /// Размер места (высота) + /// + protected readonly int _placeSizeHeight = 80; + + /// + /// Ширина окна + /// + protected readonly int _pictureWidth; + + /// + /// Высота окна + /// + protected readonly int _pictureHeight; + + /// + /// Коллекция автомобилей + /// + protected ICollectionGenericObjects? _collection = null; + + /// + /// Вычисление максимального количества элементов, который можно разместить в окне + /// + private int GetMaxCount => _pictureWidth * _pictureHeight / (_placeSizeWidth * _placeSizeHeight); + + /// + /// Конструктор + /// + /// Ширина окна + /// Высота окна + /// Коллекция автомобилей + public AbstractCompany(int picWidth, int picHeight, ICollectionGenericObjects collection) + { + _pictureWidth = picWidth; + _pictureHeight = picHeight; + _collection = collection; + _collection.SetMaxCount = GetMaxCount; + } + + /// + /// Перегрузка оператора сложения для класса + /// + /// Компания + /// Добавляемый объект + /// + public static int operator +(AbstractCompany company, DrawningCruiser cruiser) + { + return company._collection.Insert(cruiser); + } + + /// + /// Перегрузка оператора удаления для класса + /// + /// Компания + /// Номер удаляемого объекта + /// + public static DrawningCruiser? operator -(AbstractCompany company, int position) + { + return company._collection.Remove(position); + } + + /// + /// Получение случайного объекта из коллекции + /// + /// + public DrawningCruiser? GetRandomObject() + { + Random rnd = new(); + return _collection?.Get(rnd.Next(GetMaxCount)); + } + + /// + /// Вывод всей коллекции + /// + /// + public Bitmap? Show() + { + Bitmap bitmap = new(_pictureWidth, _pictureHeight); + Graphics graphics = Graphics.FromImage(bitmap); + DrawBackgound(graphics); + + SetObjectsPosition(); + for (int i = 0; i < (_collection?.Count ?? 0); ++i) + { + DrawningCruiser? obj = _collection?.Get(i); + obj?.DrawTransport(graphics); + } + + return bitmap; + } + + /// + /// Вывод заднего фона + /// + /// + protected abstract void DrawBackgound(Graphics g); + + /// + /// Расстановка объектов + /// + protected abstract void SetObjectsPosition(); +} diff --git a/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/CruiserSharingService.cs b/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/CruiserSharingService.cs new file mode 100644 index 0000000..b273410 --- /dev/null +++ b/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/CruiserSharingService.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using ProjectCruiser.Drawings; + +namespace ProjectCruiser.CollectionGenericObjects; + +internal class CruiserSharingService: AbstractCompany +{ + + /// + /// Конструктор + /// + /// + /// + /// + public CruiserSharingService(int picWidth, int picHeight, ICollectionGenericObjects collection) : base(picWidth, picHeight, collection) + { + } + + private int offsetX = 30; + + protected override void DrawBackgound(Graphics g) + { + Pen pen = new Pen(Color.Black, 4); + + int maxCountX = (_pictureWidth / _placeSizeWidth); + int maxCountY = (_pictureHeight / _placeSizeHeight); + + + for (int i = 0; i < maxCountX; i++) + { + for (int j = 0; j < maxCountY; j++) + { + g.DrawLine(pen, i * offsetX + i * _placeSizeWidth, j * _placeSizeHeight, _placeSizeWidth + i * offsetX + i * _placeSizeWidth, j * _placeSizeHeight); + g.DrawLine(pen, i * offsetX + i * _placeSizeWidth, j * _placeSizeHeight, i * offsetX + i * _placeSizeWidth, _placeSizeHeight + j * _placeSizeHeight); + g.DrawLine(pen, i * offsetX + i * _placeSizeWidth, _placeSizeHeight + j * _placeSizeHeight, _placeSizeWidth + i * offsetX + i * _placeSizeWidth, _placeSizeHeight + j * _placeSizeHeight); + } + } + } + + protected override void SetObjectsPosition() + { + int maxCountX = _pictureWidth / _placeSizeWidth; + int maxCountY = _pictureHeight / _placeSizeHeight; + + int boarderOffsetX = 10; + int boarderOffsetY = 10; + + int currentIndex = -1; + + for (int j = 0; j < maxCountY; j++) + { + for (int i = 0; i < maxCountX; i++) + { + currentIndex++; + if (_collection.Get(currentIndex) == null) continue; + + _collection.Get(currentIndex).SetPictireSize(_pictureWidth, _pictureHeight); + _collection.Get(currentIndex).SetPosition(boarderOffsetX + i * _placeSizeWidth + i * offsetX, boarderOffsetY + j * _placeSizeHeight); + } + } + } +} diff --git a/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/ICollectionGenericObjects.cs b/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/ICollectionGenericObjects.cs index b8e38ce..b5ea1f2 100644 --- a/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/ICollectionGenericObjects.cs +++ b/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/ICollectionGenericObjects.cs @@ -27,7 +27,7 @@ public interface ICollectionGenericObjects /// /// Добавляемый объект /// true - вставка прошла удачно, false - вставка не удалась - bool Insert(T obj); + int Insert(T obj); /// /// Добавление объекта в коллекцию на конкретную позицию @@ -35,14 +35,14 @@ public interface ICollectionGenericObjects /// Добавляемый объект /// Позиция /// true - вставка прошла удачно, false - вставка не удалась - bool Insert(T obj, int position); + int Insert(T obj, int position); /// /// Удаление объекта из коллекции с конкретной позиции /// /// Позиция /// true - удаление прошло удачно, false - удаление не удалось - bool Remove(int position); + T? Remove(int position); /// /// Получение объекта по позиции diff --git a/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/MassiveGenericObjects.cs b/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/MassiveGenericObjects.cs index 3404ada..cf2ae55 100644 --- a/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/MassiveGenericObjects.cs +++ b/ProjectCruiser/ProjectCruiser/CollectionGenericObjects/MassiveGenericObjects.cs @@ -52,26 +52,55 @@ public class MassiveGenericObjects : ICollectionGenericObjects return _collection[position]; } - public bool Insert(T obj) + public int Insert(T obj) { // TODO вставка в свободное место набора - return false; + for (int i = 0; i < Count; i++) + { + if (InsertingElementCollection(i, obj)) return i; + } + + return -1; } - public bool Insert(T obj, int position) + public int Insert(T obj, int position) { // TODO проверка позиции // TODO проверка, что элемент массива по этой позиции пустой, если нет, то // ищется свободное место после этой позиции и идет вставка туда // если нет после, ищем до // TODO вставка - return false; + if (InsertingElementCollection(position, obj)) return position; + + for (int i = position + 1; i < Count; i++) + { + if (InsertingElementCollection(i, obj)) return position; + } + + for (int i = position - 1; i >= 0; i--) + { + if (InsertingElementCollection(i, obj)) return position; + } + + return -1; } - public bool Remove(int position) + public T? Remove(int position) { // TODO проверка позиции // TODO удаление объекта из массива, присвоив элементу массива значение null + if (_collection[position] == null) return null; + + T? temp = _collection[position]; + _collection[position] = null; + return temp; + } + + private bool InsertingElementCollection(int index, T obj) + { + if (_collection[index] != null) return false; + + _collection[index] = obj; return true; } } diff --git a/ProjectCruiser/ProjectCruiser/FormCruiser.cs b/ProjectCruiser/ProjectCruiser/FormCruiser.cs index 1cce72e..19917b5 100644 --- a/ProjectCruiser/ProjectCruiser/FormCruiser.cs +++ b/ProjectCruiser/ProjectCruiser/FormCruiser.cs @@ -9,6 +9,22 @@ namespace ProjectCruiser private DrawningCruiser? _drawingCruiser; private AbstactStrategy? _strategy; + + /// + /// Получение объекта + /// + public DrawningCruiser SetCruiser + { + set + { + _drawingCruiser = value; + _drawingCruiser.SetPictireSize(pictureBoxCruiser.Width, pictureBoxCruiser.Height); + comboBoxStrategy.Enabled = true; + _strategy = null; + Draw(); + } + } + public FormCruiser() { InitializeComponent(); diff --git a/ProjectCruiser/ProjectCruiser/FormCruiserCollection.Designer.cs b/ProjectCruiser/ProjectCruiser/FormCruiserCollection.Designer.cs new file mode 100644 index 0000000..8054444 --- /dev/null +++ b/ProjectCruiser/ProjectCruiser/FormCruiserCollection.Designer.cs @@ -0,0 +1,173 @@ +namespace ProjectCruiser +{ + partial class FormCruiserCollection + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + groupBoxTools = new GroupBox(); + buttonRefresh = new Button(); + buttonGoToCheck = new Button(); + buttonRemoveCruiser = new Button(); + maskedTextBoxPosition = new MaskedTextBox(); + buttonAddMilitaryCruiser = new Button(); + buttonAddCruiser = new Button(); + comboBoxSelectorCompany = new ComboBox(); + pictureBox = new PictureBox(); + groupBoxTools.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)pictureBox).BeginInit(); + SuspendLayout(); + // + // groupBoxTools + // + groupBoxTools.Controls.Add(buttonRefresh); + groupBoxTools.Controls.Add(buttonGoToCheck); + groupBoxTools.Controls.Add(buttonRemoveCruiser); + groupBoxTools.Controls.Add(maskedTextBoxPosition); + groupBoxTools.Controls.Add(buttonAddMilitaryCruiser); + groupBoxTools.Controls.Add(buttonAddCruiser); + groupBoxTools.Controls.Add(comboBoxSelectorCompany); + groupBoxTools.Dock = DockStyle.Right; + groupBoxTools.Location = new Point(821, 0); + groupBoxTools.Name = "groupBoxTools"; + groupBoxTools.Size = new Size(250, 602); + groupBoxTools.TabIndex = 0; + groupBoxTools.TabStop = false; + groupBoxTools.Text = "Инструменты"; + // + // buttonRefresh + // + buttonRefresh.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; + buttonRefresh.Location = new Point(6, 446); + buttonRefresh.Name = "buttonRefresh"; + buttonRefresh.Size = new Size(232, 40); + buttonRefresh.TabIndex = 6; + buttonRefresh.Text = "Обновить"; + buttonRefresh.UseVisualStyleBackColor = true; + buttonRefresh.Click += ButtonRefresh_Click; + // + // buttonGoToCheck + // + buttonGoToCheck.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; + buttonGoToCheck.Location = new Point(6, 363); + buttonGoToCheck.Name = "buttonGoToCheck"; + buttonGoToCheck.Size = new Size(232, 40); + buttonGoToCheck.TabIndex = 5; + buttonGoToCheck.Text = "Передать не тесты"; + buttonGoToCheck.UseVisualStyleBackColor = true; + buttonGoToCheck.Click += ButtonGoToCheck_Click; + // + // buttonRemoveCruiser + // + buttonRemoveCruiser.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; + buttonRemoveCruiser.Location = new Point(6, 267); + buttonRemoveCruiser.Name = "buttonRemoveCruiser"; + buttonRemoveCruiser.Size = new Size(232, 40); + buttonRemoveCruiser.TabIndex = 4; + buttonRemoveCruiser.Text = "Удаление крейсера"; + buttonRemoveCruiser.UseVisualStyleBackColor = true; + buttonRemoveCruiser.Click += ButtonRemoveCruiser_Click; + // + // maskedTextBoxPosition + // + maskedTextBoxPosition.Location = new Point(6, 234); + maskedTextBoxPosition.Mask = "00"; + maskedTextBoxPosition.Name = "maskedTextBoxPosition"; + maskedTextBoxPosition.Size = new Size(232, 27); + maskedTextBoxPosition.TabIndex = 3; + maskedTextBoxPosition.ValidatingType = typeof(int); + // + // buttonAddMilitaryCruiser + // + buttonAddMilitaryCruiser.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; + buttonAddMilitaryCruiser.Location = new Point(6, 142); + buttonAddMilitaryCruiser.Name = "buttonAddMilitaryCruiser"; + buttonAddMilitaryCruiser.Size = new Size(232, 54); + buttonAddMilitaryCruiser.TabIndex = 2; + buttonAddMilitaryCruiser.Text = "Добавление военного крейсера"; + buttonAddMilitaryCruiser.UseVisualStyleBackColor = true; + buttonAddMilitaryCruiser.Click += ButtonAddMilitaryCruiser_Click; + // + // buttonAddCruiser + // + buttonAddCruiser.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; + buttonAddCruiser.Location = new Point(6, 96); + buttonAddCruiser.Name = "buttonAddCruiser"; + buttonAddCruiser.Size = new Size(232, 40); + buttonAddCruiser.TabIndex = 1; + buttonAddCruiser.Text = "Добавление крейсера"; + buttonAddCruiser.UseVisualStyleBackColor = true; + buttonAddCruiser.Click += ButtonAddCruiser_Click; + // + // comboBoxSelectorCompany + // + comboBoxSelectorCompany.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; + comboBoxSelectorCompany.DropDownStyle = ComboBoxStyle.DropDownList; + comboBoxSelectorCompany.FormattingEnabled = true; + comboBoxSelectorCompany.Items.AddRange(new object[] { "Хранилище" }); + comboBoxSelectorCompany.Location = new Point(6, 26); + comboBoxSelectorCompany.Name = "comboBoxSelectorCompany"; + comboBoxSelectorCompany.Size = new Size(232, 28); + comboBoxSelectorCompany.TabIndex = 0; + comboBoxSelectorCompany.SelectedIndexChanged += ComboBoxSelectorCompany_SelectedIndexChanged; + // + // pictureBox + // + pictureBox.Dock = DockStyle.Fill; + pictureBox.Location = new Point(0, 0); + pictureBox.Name = "pictureBox"; + pictureBox.Size = new Size(821, 602); + pictureBox.TabIndex = 1; + pictureBox.TabStop = false; + // + // FormCruiserCollection + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(1071, 602); + Controls.Add(pictureBox); + Controls.Add(groupBoxTools); + Name = "FormCruiserCollection"; + Text = "Коллекция Крейсеров"; + groupBoxTools.ResumeLayout(false); + groupBoxTools.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)pictureBox).EndInit(); + ResumeLayout(false); + } + + #endregion + + private GroupBox groupBoxTools; + private Button buttonAddCruiser; + private ComboBox comboBoxSelectorCompany; + private Button buttonRemoveCruiser; + private MaskedTextBox maskedTextBoxPosition; + private Button buttonAddMilitaryCruiser; + private PictureBox pictureBox; + private Button buttonRefresh; + private Button buttonGoToCheck; + } +} \ No newline at end of file diff --git a/ProjectCruiser/ProjectCruiser/FormCruiserCollection.cs b/ProjectCruiser/ProjectCruiser/FormCruiserCollection.cs new file mode 100644 index 0000000..4c8f4e1 --- /dev/null +++ b/ProjectCruiser/ProjectCruiser/FormCruiserCollection.cs @@ -0,0 +1,168 @@ +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 ProjectCruiser.CollectionGenericObjects; +using ProjectCruiser.Drawings; + +namespace ProjectCruiser; + +public partial class FormCruiserCollection : Form +{ + + /// + /// Компания + /// + private AbstractCompany? _company = null; + + + public FormCruiserCollection() + { + InitializeComponent(); + } + + private void ComboBoxSelectorCompany_SelectedIndexChanged(object sender, EventArgs e) + { + switch (comboBoxSelectorCompany.Text) + { + case "Хранилище": + _company = new CruiserSharingService(pictureBox.Width, pictureBox.Height, new MassiveGenericObjects()); + break; + } + } + + + private void CreateObject(string type) + { + + if (_company == null) + { + return; + } + + Random random = new(); + DrawningCruiser drawningCruiser; + switch (type) + { + case nameof(DrawningCruiser): + + drawningCruiser = new DrawningCruiser(random.Next(100, 300), random.Next(1000, 3000), GetColor(random)); + break; + + case nameof(DrawningMilitaryCruiser): + + drawningCruiser = new DrawningMilitaryCruiser(random.Next(100, 300), + random.Next(1000, 3000), + Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)), + Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)), + Convert.ToBoolean(random.Next(0, 2)), + Convert.ToBoolean(random.Next(0, 2)), + Convert.ToBoolean(random.Next(0, 2))); + + break; + + default: + return; + } + if (_company + drawningCruiser != -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 ButtonAddCruiser_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningCruiser)); + + private void ButtonAddMilitaryCruiser_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningMilitaryCruiser)); + + private void ButtonRemoveCruiser_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 is DrawningCruiser) + { + MessageBox.Show("Объект удален"); + pictureBox.Image = _company.Show(); + } + else + { + MessageBox.Show("Не удалось удалить объект"); + } + } + + private void ButtonGoToCheck_Click(object sender, EventArgs e) + { + if (_company == null) + { + return; + } + + DrawningCruiser? cruiser = null; + int counter = 100; + while (cruiser == null) + { + cruiser = _company.GetRandomObject(); + counter--; + if (counter <= 0) + { + break; + } + } + + if (cruiser == null) + { + return; + } + + FormCruiser form = new() + { + SetCruiser = cruiser + }; + form.ShowDialog(); + } + + private void ButtonRefresh_Click(object sender, EventArgs e) + { + if (_company == null) + { + return; + } + + pictureBox.Image = _company.Show(); + } +} diff --git a/ProjectCruiser/ProjectCruiser/FormCruiserCollection.resx b/ProjectCruiser/ProjectCruiser/FormCruiserCollection.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/ProjectCruiser/ProjectCruiser/FormCruiserCollection.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/ProjectCruiser/ProjectCruiser/Program.cs b/ProjectCruiser/ProjectCruiser/Program.cs index 4e00cd8..f66a30c 100644 --- a/ProjectCruiser/ProjectCruiser/Program.cs +++ b/ProjectCruiser/ProjectCruiser/Program.cs @@ -11,7 +11,7 @@ namespace ProjectCruiser // To customize application configuration such as set high DPI settings or default font, // see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); - Application.Run(new FormCruiser()); + Application.Run(new FormCruiserCollection()); } } } \ No newline at end of file