diff --git a/LocomotivesAdvanced/LocomotivesAdvanced/DrawningObjectLocomotive.cs b/LocomotivesAdvanced/LocomotivesAdvanced/DrawningObjectLocomotive.cs index 22e963f..02c9c82 100644 --- a/LocomotivesAdvanced/LocomotivesAdvanced/DrawningObjectLocomotive.cs +++ b/LocomotivesAdvanced/LocomotivesAdvanced/DrawningObjectLocomotive.cs @@ -8,7 +8,7 @@ /// /// Объект от класса отрисовки локомотива /// - private DrawningLocomotive _locomotive = null; + public DrawningLocomotive _locomotive { get; private set; } public DrawningObjectLocomotive(DrawningLocomotive locomotive) { _locomotive = locomotive; diff --git a/LocomotivesAdvanced/LocomotivesAdvanced/FormLocomotive.cs b/LocomotivesAdvanced/LocomotivesAdvanced/FormLocomotive.cs index 2162005..eefc870 100644 --- a/LocomotivesAdvanced/LocomotivesAdvanced/FormLocomotive.cs +++ b/LocomotivesAdvanced/LocomotivesAdvanced/FormLocomotive.cs @@ -16,9 +16,19 @@ InitializeComponent(); } /// + /// Конструктор для вызова формы с готовым объектом + /// + /// + /// + public FormLocomotive(DrawningLocomotive drawningObject) + { + _locomotive = drawningObject; + InitializeComponent(); + } + /// /// Метод отрисовки локомотива /// - private void Draw() + public void Draw() { Bitmap bmp = new(pictureBoxLocomotive.Width, pictureBoxLocomotive.Height); Graphics gr = Graphics.FromImage(bmp); @@ -132,10 +142,5 @@ SelectedLocomotive = _locomotive; DialogResult = DialogResult.OK; } - - private void buttonGenerateEntities_Click(object sender, EventArgs e) - { - - } } } diff --git a/LocomotivesAdvanced/LocomotivesAdvanced/FormMapWithSetLocomotives.Designer.cs b/LocomotivesAdvanced/LocomotivesAdvanced/FormMapWithSetLocomotives.Designer.cs index 6ddfa44..97f53b8 100644 --- a/LocomotivesAdvanced/LocomotivesAdvanced/FormMapWithSetLocomotives.Designer.cs +++ b/LocomotivesAdvanced/LocomotivesAdvanced/FormMapWithSetLocomotives.Designer.cs @@ -29,6 +29,12 @@ private void InitializeComponent() { this.groupBoxTools = new System.Windows.Forms.GroupBox(); + this.groupBoxMaps = new System.Windows.Forms.GroupBox(); + this.buttonDeleteMap = new System.Windows.Forms.Button(); + this.listBoxMaps = new System.Windows.Forms.ListBox(); + this.buttonAddMap = new System.Windows.Forms.Button(); + this.textBoxNewMapName = new System.Windows.Forms.TextBox(); + this.comboBoxSelectorMap = new System.Windows.Forms.ComboBox(); this.buttonUp = new System.Windows.Forms.Button(); this.buttonDown = new System.Windows.Forms.Button(); this.buttonLeft = new System.Windows.Forms.Button(); @@ -38,14 +44,17 @@ this.buttonRemoveLocomotive = new System.Windows.Forms.Button(); this.maskedTextBoxPosition = new System.Windows.Forms.MaskedTextBox(); this.buttonAddCar = new System.Windows.Forms.Button(); - this.comboBoxSelectorMap = new System.Windows.Forms.ComboBox(); this.pictureBoxLocomotives = new System.Windows.Forms.PictureBox(); + this.buttonShowLastRemovedObject = new System.Windows.Forms.Button(); this.groupBoxTools.SuspendLayout(); + this.groupBoxMaps.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLocomotives)).BeginInit(); this.SuspendLayout(); // // groupBoxTools // + this.groupBoxTools.Controls.Add(this.buttonShowLastRemovedObject); + this.groupBoxTools.Controls.Add(this.groupBoxMaps); this.groupBoxTools.Controls.Add(this.buttonUp); this.groupBoxTools.Controls.Add(this.buttonDown); this.groupBoxTools.Controls.Add(this.buttonLeft); @@ -55,21 +64,85 @@ this.groupBoxTools.Controls.Add(this.buttonRemoveLocomotive); this.groupBoxTools.Controls.Add(this.maskedTextBoxPosition); this.groupBoxTools.Controls.Add(this.buttonAddCar); - this.groupBoxTools.Controls.Add(this.comboBoxSelectorMap); this.groupBoxTools.Dock = System.Windows.Forms.DockStyle.Right; - this.groupBoxTools.Location = new System.Drawing.Point(577, 0); + this.groupBoxTools.Location = new System.Drawing.Point(464, 0); this.groupBoxTools.Name = "groupBoxTools"; - this.groupBoxTools.Size = new System.Drawing.Size(223, 450); + this.groupBoxTools.Size = new System.Drawing.Size(223, 760); this.groupBoxTools.TabIndex = 0; this.groupBoxTools.TabStop = false; this.groupBoxTools.Text = "Инструменты"; // + // groupBoxMaps + // + this.groupBoxMaps.Anchor = System.Windows.Forms.AnchorStyles.Right; + this.groupBoxMaps.Controls.Add(this.buttonDeleteMap); + this.groupBoxMaps.Controls.Add(this.listBoxMaps); + this.groupBoxMaps.Controls.Add(this.buttonAddMap); + this.groupBoxMaps.Controls.Add(this.textBoxNewMapName); + this.groupBoxMaps.Controls.Add(this.comboBoxSelectorMap); + this.groupBoxMaps.Location = new System.Drawing.Point(6, 51); + this.groupBoxMaps.Name = "groupBoxMaps"; + this.groupBoxMaps.Size = new System.Drawing.Size(217, 267); + this.groupBoxMaps.TabIndex = 12; + this.groupBoxMaps.TabStop = false; + this.groupBoxMaps.Text = "Карты"; + // + // buttonDeleteMap + // + this.buttonDeleteMap.Location = new System.Drawing.Point(25, 235); + this.buttonDeleteMap.Name = "buttonDeleteMap"; + this.buttonDeleteMap.Size = new System.Drawing.Size(164, 26); + this.buttonDeleteMap.TabIndex = 14; + this.buttonDeleteMap.Text = "Удалить карту"; + this.buttonDeleteMap.UseVisualStyleBackColor = true; + this.buttonDeleteMap.Click += new System.EventHandler(this.ButtonDeleteMap_Click); + // + // listBoxMaps + // + this.listBoxMaps.FormattingEnabled = true; + this.listBoxMaps.ItemHeight = 15; + this.listBoxMaps.Location = new System.Drawing.Point(25, 112); + this.listBoxMaps.Name = "listBoxMaps"; + this.listBoxMaps.Size = new System.Drawing.Size(164, 109); + this.listBoxMaps.TabIndex = 13; + this.listBoxMaps.SelectedIndexChanged += new System.EventHandler(this.ListBoxMaps_SelectedIndexChanged); + // + // buttonAddMap + // + this.buttonAddMap.Location = new System.Drawing.Point(25, 80); + this.buttonAddMap.Name = "buttonAddMap"; + this.buttonAddMap.Size = new System.Drawing.Size(164, 26); + this.buttonAddMap.TabIndex = 12; + this.buttonAddMap.Text = "Добавить карту"; + this.buttonAddMap.UseVisualStyleBackColor = true; + this.buttonAddMap.Click += new System.EventHandler(this.ButtonAddMap_Click); + // + // textBoxNewMapName + // + this.textBoxNewMapName.Location = new System.Drawing.Point(25, 22); + this.textBoxNewMapName.Name = "textBoxNewMapName"; + this.textBoxNewMapName.Size = new System.Drawing.Size(164, 23); + this.textBoxNewMapName.TabIndex = 0; + // + // comboBoxSelectorMap + // + this.comboBoxSelectorMap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBoxSelectorMap.FormattingEnabled = true; + this.comboBoxSelectorMap.Items.AddRange(new object[] { + "Простая карта", + "Карта с крестом", + "Карта с дорожками"}); + this.comboBoxSelectorMap.Location = new System.Drawing.Point(25, 51); + this.comboBoxSelectorMap.Name = "comboBoxSelectorMap"; + this.comboBoxSelectorMap.Size = new System.Drawing.Size(164, 23); + this.comboBoxSelectorMap.TabIndex = 0; + // // buttonUp // this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonUp.BackgroundImage = global::WarmlyLocomotive.Properties.Resources.ArrowUp; this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.buttonUp.Location = new System.Drawing.Point(107, 378); + this.buttonUp.Location = new System.Drawing.Point(107, 688); this.buttonUp.Name = "buttonUp"; this.buttonUp.Size = new System.Drawing.Size(30, 30); this.buttonUp.TabIndex = 10; @@ -81,7 +154,7 @@ this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonDown.BackgroundImage = global::WarmlyLocomotive.Properties.Resources.ArrowDown; this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.buttonDown.Location = new System.Drawing.Point(107, 414); + this.buttonDown.Location = new System.Drawing.Point(107, 724); this.buttonDown.Name = "buttonDown"; this.buttonDown.Size = new System.Drawing.Size(30, 30); this.buttonDown.TabIndex = 9; @@ -93,7 +166,7 @@ this.buttonLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonLeft.BackgroundImage = global::WarmlyLocomotive.Properties.Resources.ArrowLeft; this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.buttonLeft.Location = new System.Drawing.Point(71, 414); + this.buttonLeft.Location = new System.Drawing.Point(71, 724); this.buttonLeft.Name = "buttonLeft"; this.buttonLeft.Size = new System.Drawing.Size(30, 30); this.buttonLeft.TabIndex = 8; @@ -105,7 +178,7 @@ this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonRight.BackgroundImage = global::WarmlyLocomotive.Properties.Resources.ArrowRight; this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.buttonRight.Location = new System.Drawing.Point(143, 414); + this.buttonRight.Location = new System.Drawing.Point(143, 724); this.buttonRight.Name = "buttonRight"; this.buttonRight.Size = new System.Drawing.Size(30, 30); this.buttonRight.TabIndex = 7; @@ -114,7 +187,7 @@ // // buttonShowOnMap // - this.buttonShowOnMap.Location = new System.Drawing.Point(31, 314); + this.buttonShowOnMap.Location = new System.Drawing.Point(31, 456); this.buttonShowOnMap.Name = "buttonShowOnMap"; this.buttonShowOnMap.Size = new System.Drawing.Size(164, 26); this.buttonShowOnMap.TabIndex = 5; @@ -124,7 +197,7 @@ // // buttonShowStorage // - this.buttonShowStorage.Location = new System.Drawing.Point(31, 217); + this.buttonShowStorage.Location = new System.Drawing.Point(31, 424); this.buttonShowStorage.Name = "buttonShowStorage"; this.buttonShowStorage.Size = new System.Drawing.Size(164, 26); this.buttonShowStorage.TabIndex = 4; @@ -134,7 +207,7 @@ // // buttonRemoveLocomotive // - this.buttonRemoveLocomotive.Location = new System.Drawing.Point(31, 156); + this.buttonRemoveLocomotive.Location = new System.Drawing.Point(31, 392); this.buttonRemoveLocomotive.Name = "buttonRemoveLocomotive"; this.buttonRemoveLocomotive.Size = new System.Drawing.Size(164, 26); this.buttonRemoveLocomotive.TabIndex = 3; @@ -144,7 +217,7 @@ // // maskedTextBoxPosition // - this.maskedTextBoxPosition.Location = new System.Drawing.Point(31, 127); + this.maskedTextBoxPosition.Location = new System.Drawing.Point(31, 363); this.maskedTextBoxPosition.Mask = "00"; this.maskedTextBoxPosition.Name = "maskedTextBoxPosition"; this.maskedTextBoxPosition.Size = new System.Drawing.Size(164, 23); @@ -152,7 +225,7 @@ // // buttonAddCar // - this.buttonAddCar.Location = new System.Drawing.Point(31, 72); + this.buttonAddCar.Location = new System.Drawing.Point(31, 331); this.buttonAddCar.Name = "buttonAddCar"; this.buttonAddCar.Size = new System.Drawing.Size(164, 26); this.buttonAddCar.TabIndex = 1; @@ -160,40 +233,38 @@ this.buttonAddCar.UseVisualStyleBackColor = true; this.buttonAddCar.Click += new System.EventHandler(this.ButtonAddLocomotive_Click); // - // comboBoxSelectorMap - // - this.comboBoxSelectorMap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.comboBoxSelectorMap.FormattingEnabled = true; - this.comboBoxSelectorMap.Items.AddRange(new object[] { - "Простая карта", - "Карта с крестом", - "Карта с дорожками"}); - this.comboBoxSelectorMap.Location = new System.Drawing.Point(31, 22); - this.comboBoxSelectorMap.Name = "comboBoxSelectorMap"; - this.comboBoxSelectorMap.Size = new System.Drawing.Size(164, 23); - this.comboBoxSelectorMap.TabIndex = 0; - this.comboBoxSelectorMap.SelectedIndexChanged += new System.EventHandler(this.ComboBoxSelectorMap_SelectedIndexChanged); - // // pictureBoxLocomotives // this.pictureBoxLocomotives.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBoxLocomotives.Location = new System.Drawing.Point(0, 0); this.pictureBoxLocomotives.Name = "pictureBoxLocomotives"; - this.pictureBoxLocomotives.Size = new System.Drawing.Size(577, 450); + this.pictureBoxLocomotives.Size = new System.Drawing.Size(464, 760); this.pictureBoxLocomotives.TabIndex = 1; this.pictureBoxLocomotives.TabStop = false; // + // buttonShowLastRemovedObject + // + this.buttonShowLastRemovedObject.Location = new System.Drawing.Point(31, 517); + this.buttonShowLastRemovedObject.Name = "buttonShowLastRemovedObject"; + this.buttonShowLastRemovedObject.Size = new System.Drawing.Size(164, 40); + this.buttonShowLastRemovedObject.TabIndex = 2; + this.buttonShowLastRemovedObject.Text = "Показать последний удалённый элемент"; + this.buttonShowLastRemovedObject.UseVisualStyleBackColor = true; + this.buttonShowLastRemovedObject.Click += new System.EventHandler(this.ButtonShowLastRemovedObject_Click); + // // FormMapWithSetLocomotives // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(800, 450); + this.ClientSize = new System.Drawing.Size(687, 760); this.Controls.Add(this.pictureBoxLocomotives); this.Controls.Add(this.groupBoxTools); this.Name = "FormMapWithSetLocomotives"; this.Text = "Карта с набором объектов"; this.groupBoxTools.ResumeLayout(false); this.groupBoxTools.PerformLayout(); + this.groupBoxMaps.ResumeLayout(false); + this.groupBoxMaps.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLocomotives)).EndInit(); this.ResumeLayout(false); @@ -213,5 +284,11 @@ private Button buttonDown; private Button buttonLeft; private Button buttonRight; + private GroupBox groupBoxMaps; + private Button buttonDeleteMap; + private ListBox listBoxMaps; + private Button buttonAddMap; + private TextBox textBoxNewMapName; + private Button buttonShowLastRemovedObject; } } \ No newline at end of file diff --git a/LocomotivesAdvanced/LocomotivesAdvanced/FormMapWithSetLocomotives.cs b/LocomotivesAdvanced/LocomotivesAdvanced/FormMapWithSetLocomotives.cs index b9afc36..9183d31 100644 --- a/LocomotivesAdvanced/LocomotivesAdvanced/FormMapWithSetLocomotives.cs +++ b/LocomotivesAdvanced/LocomotivesAdvanced/FormMapWithSetLocomotives.cs @@ -5,6 +5,19 @@ /// public partial class FormMapWithSetLocomotives : Form { + /// + /// Словарь для выпадающего списка + /// + private readonly Dictionary _mapsDict = new() + { + {"Простая карта", new SimpleMap()}, + {"Карта с крестом", new CrossMap()}, + {"Карта с дорожками", new RoadsMap()}, + }; + /// + /// Объект от коллекции карт + /// + private readonly MapsCollection _mapsCollection; /// /// Объект от класса карты с набором объектов /// @@ -15,38 +28,83 @@ public FormMapWithSetLocomotives() { InitializeComponent(); + _mapsCollection = new MapsCollection(pictureBoxLocomotives.Width, pictureBoxLocomotives.Height); + comboBoxSelectorMap.Items.Clear(); + foreach (var elem in _mapsDict) + { + comboBoxSelectorMap.Items.Add(elem.Key); + } + } + /// + /// Заполнение listBoxMaps + /// + private void ReloadMaps() + { + int index = listBoxMaps.SelectedIndex; + listBoxMaps.Items.Clear(); + for (int i = 0; i < _mapsCollection.Keys.Count; i++) + { + listBoxMaps.Items.Add(_mapsCollection.Keys[i]); + } + if (listBoxMaps.Items.Count > 0 && (index == -1 || index >= + listBoxMaps.Items.Count)) + { + listBoxMaps.SelectedIndex = 0; + } + else if (listBoxMaps.Items.Count > 0 && index > -1 && index < + listBoxMaps.Items.Count) + { + listBoxMaps.SelectedIndex = index; + } + } + /// + /// Добавление карты + /// + /// + /// + private void ButtonAddMap_Click(object sender, EventArgs e) + { + if (comboBoxSelectorMap.SelectedIndex == -1 || string.IsNullOrEmpty(textBoxNewMapName.Text)) + { + MessageBox.Show("Не все данные заполнены", "Ошибка", + MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + if (!_mapsDict.ContainsKey(comboBoxSelectorMap.Text)) + { + MessageBox.Show("Нет такой карты", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + _mapsCollection.AddMap(textBoxNewMapName.Text, _mapsDict[comboBoxSelectorMap.Text]); + textBoxNewMapName.Text = ""; + ReloadMaps(); } /// /// Выбор карты /// /// /// - private void ComboBoxSelectorMap_SelectedIndexChanged(object sender, EventArgs e) + private void ListBoxMaps_SelectedIndexChanged(object sender, EventArgs e) { - AbstractMap map = null; - switch (comboBoxSelectorMap.Text) + pictureBoxLocomotives.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); + } + /// + /// Удаление карты + /// + /// + /// + private void ButtonDeleteMap_Click(object sender, EventArgs e) + { + if (listBoxMaps.SelectedIndex == -1) { - case "Простая карта": - map = new SimpleMap(); - break; - case "Карта с крестом": - map = new CrossMap(); - break; - case "Карта с дорожками": - map = new RoadsMap(); - break; - default: - break; + return; } - if (map != null) + if (MessageBox.Show($"Удалить карту {listBoxMaps.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { - _mapCarsCollectionGeneric = new - MapWithSetLocomotivesGeneric(pictureBoxLocomotives.Width, pictureBoxLocomotives.Height, map); - } - else - { - _mapCarsCollectionGeneric = null; + _mapsCollection.DelMap(listBoxMaps.SelectedItem?.ToString() ?? string.Empty); + ReloadMaps(); } + MessageBox.Show("Карта удалена"); } /// /// Добавление объекта @@ -55,7 +113,7 @@ /// private void ButtonAddLocomotive_Click(object sender, EventArgs e) { - if (_mapCarsCollectionGeneric == null) + if (listBoxMaps.SelectedIndex == -1) { return; } @@ -63,10 +121,10 @@ if (form.ShowDialog() == DialogResult.OK) { DrawningObjectLocomotive locomotive = new(form.SelectedLocomotive); - if ((_mapCarsCollectionGeneric + locomotive) > -1) + if ((_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + locomotive) > -1) { MessageBox.Show("Объект добавлен"); - pictureBoxLocomotives.Image = _mapCarsCollectionGeneric.ShowSet(); + pictureBoxLocomotives.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); } else { @@ -81,6 +139,10 @@ /// private void ButtonRemoveLocomotive_Click(object sender, EventArgs e) { + if (listBoxMaps.SelectedIndex == -1) + { + return; + } if (string.IsNullOrEmpty(maskedTextBoxPosition.Text)) { return; @@ -90,10 +152,12 @@ return; } int pos = Convert.ToInt32(maskedTextBoxPosition.Text); - if ((_mapCarsCollectionGeneric - pos) != null) + var removableObject = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty, pos]; + if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos != null) { MessageBox.Show("Объект удален"); - pictureBoxLocomotives.Image = _mapCarsCollectionGeneric.ShowSet(); + _mapsCollection.RemovedObject = (DrawningObjectLocomotive)removableObject; + pictureBoxLocomotives.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); } else { @@ -107,11 +171,11 @@ /// private void ButtonShowStorage_Click(object sender, EventArgs e) { - if (_mapCarsCollectionGeneric == null) + if (listBoxMaps.SelectedIndex == -1) { return; } - pictureBoxLocomotives.Image = _mapCarsCollectionGeneric.ShowSet(); + pictureBoxLocomotives.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); } /// /// Вывод карты @@ -120,11 +184,11 @@ /// private void ButtonShowOnMap_Click(object sender, EventArgs e) { - if (_mapCarsCollectionGeneric == null) + if (listBoxMaps.SelectedIndex == -1) { return; } - pictureBoxLocomotives.Image = _mapCarsCollectionGeneric.ShowOnMap(); + pictureBoxLocomotives.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowOnMap(); } /// /// Перемещение @@ -133,7 +197,7 @@ /// private void ButtonMove_Click(object sender, EventArgs e) { - if (_mapCarsCollectionGeneric == null) + if (listBoxMaps.SelectedIndex == -1) { return; } @@ -155,7 +219,24 @@ dir = Direction.Right; break; } - pictureBoxLocomotives.Image = _mapCarsCollectionGeneric.MoveObject(dir); + pictureBoxLocomotives.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].MoveObject(dir); + } + /// + /// Вызов формы с последним удалённым элементом + /// + /// + /// + private void ButtonShowLastRemovedObject_Click(object sender, EventArgs e) + { + if (_mapsCollection.RemovedObject == null) + { + MessageBox.Show("Коллекция удалённых элементов пуста"); + return; + } + FormLocomotive formWithLastRemovedObject = new(_mapsCollection.RemovedObject._locomotive); + formWithLastRemovedObject.Show(); + formWithLastRemovedObject.Draw(); + _mapsCollection.RemoveLastObject(); } } } diff --git a/LocomotivesAdvanced/LocomotivesAdvanced/MapWithSetLocomotivesGeneric.cs b/LocomotivesAdvanced/LocomotivesAdvanced/MapWithSetLocomotivesGeneric.cs index b548f36..e8530a6 100644 --- a/LocomotivesAdvanced/LocomotivesAdvanced/MapWithSetLocomotivesGeneric.cs +++ b/LocomotivesAdvanced/LocomotivesAdvanced/MapWithSetLocomotivesGeneric.cs @@ -24,6 +24,10 @@ /// Набор объектов /// private readonly SetLocomotivesGeneric _setLocomotives; + public T GetObject(int index) + { + return _setLocomotives[index]; + } /// /// Карта /// @@ -82,13 +86,9 @@ public Bitmap ShowOnMap() { Shaking(); - for (int i = 0; i < _setLocomotives.Count; i++) + foreach (var locomotive in _setLocomotives.GetLocomotives()) { - var locomotive = _setLocomotives.Get(i); - if (locomotive != null) - { - return _map.CreateMap(_pictureWidth, _pictureHeight, locomotive); - } + return _map.CreateMap(_pictureWidth, _pictureHeight, locomotive); } return new(_pictureWidth, _pictureHeight); } @@ -113,11 +113,11 @@ int j = _setLocomotives.Count - 1; for (int i = 0; i < _setLocomotives.Count; i++) { - if (_setLocomotives.Get(i) == null) + if (_setLocomotives[i] == null) { for (; j > i; j--) { - var locomotive = _setLocomotives.Get(j); + var locomotive = _setLocomotives[j]; if (locomotive != null) { _setLocomotives.Insert(locomotive, i); @@ -161,10 +161,11 @@ int LocomotivesInLine = _pictureWidth / _placeSizeWidth; int CurrentVertPos = 20; int CurrentHorPos = 0; - for (int i = 0; i < _setLocomotives.Count; i++) + int CurrentLocomotiveNumber = 0; + foreach (var locomotive in _setLocomotives.GetLocomotives()) { - _setLocomotives.Get(i)?.SetObject(CurrentHorPos, CurrentVertPos, _pictureWidth, _pictureHeight); - _setLocomotives.Get(i)?.DrawningObject(g); + locomotive?.SetObject(CurrentHorPos, CurrentVertPos, _pictureWidth, _pictureHeight); + locomotive?.DrawningObject(g); if (CurrentHorPos < LocomotivesInLine) { CurrentHorPos += _placeSizeWidth; @@ -174,6 +175,7 @@ CurrentHorPos = 0; CurrentVertPos += _placeSizeHeight; } + CurrentLocomotiveNumber++; } } } diff --git a/LocomotivesAdvanced/LocomotivesAdvanced/MapsCollection.cs b/LocomotivesAdvanced/LocomotivesAdvanced/MapsCollection.cs new file mode 100644 index 0000000..3394c2c --- /dev/null +++ b/LocomotivesAdvanced/LocomotivesAdvanced/MapsCollection.cs @@ -0,0 +1,120 @@ +namespace WarmlyLocomotove +{ + /// + /// Класс для хранения коллекции карт + /// + internal class MapsCollection + { + /// + /// Словарь (хранилище) с картами + /// + readonly Dictionary> _mapStorages; + /// + /// Возвращение списка названий карт + /// + public List Keys => _mapStorages.Keys.ToList(); + /// + /// Ширина окна отрисовки + /// + private readonly int _pictureWidth; + /// + /// Высота окна отрисовки + /// + private readonly int _pictureHeight; + /// + /// Конструктор + /// + /// + /// + public MapsCollection(int pictureWidth, int pictureHeight) + { + _mapStorages = new Dictionary>(); + _pictureWidth = pictureWidth; + _pictureHeight = pictureHeight; + _removedObjects = new LinkedList(); + } + /// + /// Добавление карты + /// + /// Название карты + /// Карта + public void AddMap(string name, AbstractMap map) + { + if (!_mapStorages.ContainsKey(name)) + { + _mapStorages.Add(name, new MapWithSetLocomotivesGeneric(_pictureWidth, _pictureHeight, map)); + } + } + /// + /// Удаление карты + /// + /// Название карты + public void DelMap(string name) + { + _mapStorages.Remove(name); + } + /// + /// Доступ к парковке + /// + /// + /// + public MapWithSetLocomotivesGeneric this[string ind] + { + get + { + if (_mapStorages.ContainsKey(ind)) + { + return _mapStorages[ind]; + } + return null; + } + } + /// + /// Индексатор + /// + /// Индекс элемента словаря + /// Индекс объекта в элементе словаря + /// + public IDrawningObject this[string dictIndex, int objIndex] + { + get + { + if (_mapStorages.ContainsKey(dictIndex)) + { + var selectedDictElement = _mapStorages[dictIndex]; + var selectedObject = selectedDictElement.GetObject(objIndex); + return selectedObject; + } + return null; + } + } + /// + /// Коллекция удалённых объектов + /// + private LinkedList _removedObjects; + /// + /// Свойство для заполнения коллекции (добавляем в конец, и получаем из конца) + /// + public DrawningObjectLocomotive RemovedObject + { + set + { + _removedObjects.AddLast(value); + } + get + { + if (_removedObjects.Count == 0) + { + return null; + } + var removedObject = _removedObjects.Last(); + return removedObject; + } + } + public void RemoveLastObject() + { + _removedObjects.RemoveLast(); + } + } + +} diff --git a/LocomotivesAdvanced/LocomotivesAdvanced/Program.cs b/LocomotivesAdvanced/LocomotivesAdvanced/Program.cs index 74da26b..5159350 100644 --- a/LocomotivesAdvanced/LocomotivesAdvanced/Program.cs +++ b/LocomotivesAdvanced/LocomotivesAdvanced/Program.cs @@ -8,7 +8,7 @@ namespace WarmlyLocomotove // To customize application configuration such as set high DPI settings or default font, // see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); - Application.Run(new FormLocomotiveAdditional()); + Application.Run(new FormMapWithSetLocomotives()); } } } \ No newline at end of file diff --git a/LocomotivesAdvanced/LocomotivesAdvanced/SetLocomotivesGeneric.cs b/LocomotivesAdvanced/LocomotivesAdvanced/SetLocomotivesGeneric.cs index ceb760e..96751a6 100644 --- a/LocomotivesAdvanced/LocomotivesAdvanced/SetLocomotivesGeneric.cs +++ b/LocomotivesAdvanced/LocomotivesAdvanced/SetLocomotivesGeneric.cs @@ -6,18 +6,20 @@ /// /// Массив объектов, которые храним /// - private readonly T[] _places; + private readonly List _places; /// - /// Количество объектов в массиве + /// Количество объектов в списке /// - public int Count => _places.Length; + public int Count => _places.Count; + private readonly int _maxCount; /// /// Конструктор /// /// public SetLocomotivesGeneric(int count) { - _places = new T[count]; + _maxCount = count; + _places = new List(); } /// /// Добавление объекта в набор на конкретную позицию @@ -27,25 +29,16 @@ /// public int Insert(T locomotive, int position) { - if (position < 0 || position >= Count) + if (position < 0 || position > Count + 1) { - return -1; + return position; } - int ClosestNullElementIndex = position; - while (_places[ClosestNullElementIndex] != null) + if (_places.Count == 0) { - if (ClosestNullElementIndex == Count) - { - return -1; - } - ClosestNullElementIndex++; + _places.Add(locomotive); + return 0; } - while (ClosestNullElementIndex != position) - { - _places[ClosestNullElementIndex] = _places[ClosestNullElementIndex - 1]; - ClosestNullElementIndex--; - } - _places[position] = locomotive; + _places.Insert(position, locomotive); return position; } /// @@ -55,12 +48,12 @@ /// public T Remove(int position) { - if (_places[position] == null) + if (position > Count || _places[position] == null) { return null; } var result = _places[position]; - _places[position] = null; + _places.RemoveAt(position); return result; } /// @@ -68,13 +61,41 @@ /// /// /// - public T Get(int position) + public T this[int position] { - if (_places[position] != null) + get { - return _places[position]; + if (_places[position] != null) + { + return _places[position]; + } + else + { + return null; + } + } + set + { + Insert(value, position); + } + } + /// + /// Проход по набору до первого пустого + /// + /// + public IEnumerable GetLocomotives() + { + foreach (var locomotive in _places) + { + if (locomotive != null) + { + yield return locomotive; + } + else + { + yield break; + } } - return null; } } }