готово

This commit is contained in:
foxkerik6 2022-12-13 04:27:40 +04:00
parent c219c25579
commit b9aefd3433
9 changed files with 306 additions and 7 deletions

View File

@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Stormtrooper namespace Stormtrooper
{ {
internal abstract class AbstractMap internal abstract class AbstractMap : IEquatable<AbstractMap>
{ {
private IDrawningObject _drawningObject = null; private IDrawningObject _drawningObject = null;
protected int[,] _map = null; protected int[,] _map = null;
@ -58,6 +58,46 @@ namespace Stormtrooper
return true; return true;
} }
public bool Equals(AbstractMap? other)
{
if (other == null)
{
return false;
}
var otherMap = other as AbstractMap;
if (otherMap == null)
{
return false;
}
if (_width != otherMap._width)
{
return false;
}
if (_height != otherMap._height)
{
return false;
}
if (_size_x != otherMap._size_x)
{
return false;
}
if (_size_y != otherMap._size_y)
{
return false;
}
for (int i = 0; i < _map.GetLength(0); i++)
{
for (int j = 0; j < _map.GetLength(1); j++)
{
if (_map[i, j] != otherMap._map[i, j])
{
return false;
}
}
}
return true;
}
private bool CheckCollision(Direction dir) private bool CheckCollision(Direction dir)
{ {
int left = (int)(_drawningObject.GetCurrentPosition().Left / _size_x); int left = (int)(_drawningObject.GetCurrentPosition().Left / _size_x);

View File

@ -0,0 +1,62 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Stormtrooper
{
internal class AirCompareByColor : IComparer<IDrawningObject>
{
public int Compare(IDrawningObject? x, IDrawningObject? y)
{
if (x == null && y == null)
{
return 0;
}
if (x == null && y != null)
{
return 1;
}
if (x != null && y == null)
{
return -1;
}
var xAir = x as DrawningObject;
var yAir = y as DrawningObject;
if (xAir == null && yAir == null)
{
return 0;
}
if (xAir == null && yAir != null)
{
return 1;
}
if (xAir != null && yAir == null)
{
return -1;
}
var xEntityAir = xAir.GetAirplane.Airplane;
var yEntityAir = yAir.GetAirplane.Airplane;
var baseColorCompare = xEntityAir.Color.ToArgb().CompareTo(yEntityAir.Color.ToArgb());
if (baseColorCompare != 0)
{
return baseColorCompare;
}
if (xEntityAir is EntityStormtrooper xStormtrooper && yEntityAir is EntityStormtrooper yStormtrooper)
{
var dopColorCompare = xStormtrooper.AdvColor.ToArgb().CompareTo(yStormtrooper.AdvColor.ToArgb());
if (dopColorCompare != 0)
{
return dopColorCompare;
}
}
var speedCompare = xAir.GetAirplane.Airplane.Speed.CompareTo(yAir.GetAirplane.Airplane.Speed);
if (speedCompare != 0)
{
return speedCompare;
}
return xAir.GetAirplane.Airplane.Weight.CompareTo(yAir.GetAirplane.Airplane.Weight);
}
}
}

View File

@ -0,0 +1,55 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Stormtrooper
{
internal class AirCompareByType : IComparer<IDrawningObject>
{
public int Compare(IDrawningObject? x, IDrawningObject? y)
{
if (x == null && y == null)
{
return 0;
}
if (x == null && y != null)
{
return 1;
}
if (x != null && y == null)
{
return -1;
}
var xAir = x as DrawningObject;
var yAir = y as DrawningObject;
if (xAir == null && yAir == null)
{
return 0;
}
if (xAir == null && yAir != null)
{
return 1;
}
if (xAir != null && yAir == null)
{
return -1;
}
if (xAir.GetAirplane.GetType().Name != yAir.GetAirplane.GetType().Name)
{
if (xAir.GetAirplane.GetType().Name == "DrawningLocomotive")
{
return -1;
}
return 1;
}
var speedCompare = xAir.GetAirplane.Airplane.Speed.CompareTo(yAir.GetAirplane.Airplane.Speed);
if (speedCompare != 0)
{
return speedCompare;
}
return xAir.GetAirplane.Airplane.Weight.CompareTo(yAir.GetAirplane.Airplane.Weight);
}
}
}

View File

@ -10,6 +10,8 @@ namespace Stormtrooper
{ {
private DrawningMilitaryAirplane _airplane; private DrawningMilitaryAirplane _airplane;
public DrawningMilitaryAirplane GetAirplane => _airplane;
public DrawningObject(DrawningMilitaryAirplane airplane) public DrawningObject(DrawningMilitaryAirplane airplane)
{ {
_airplane = airplane; _airplane = airplane;
@ -44,5 +46,55 @@ namespace Stormtrooper
public static IDrawningObject Create(string data) => new DrawningObject(data.CreateDrawningAirplane()); public static IDrawningObject Create(string data) => new DrawningObject(data.CreateDrawningAirplane());
public bool Equals(IDrawningObject? other)
{
if (other == null)
{
return false;
}
var otherAir = other as DrawningObject;
if (otherAir == null)
{
return false;
}
var airplane = _airplane.Airplane;
var otherAirplane = otherAir._airplane.Airplane;
if (airplane.Speed != otherAirplane.Speed)
{
return false;
}
if (airplane.Weight != otherAirplane.Weight)
{
return false;
}
if (airplane.Color != otherAirplane.Color)
{
return false;
}
if (airplane is EntityStormtrooper stormtrooper && otherAirplane is EntityStormtrooper otherStormtrooper)
{
if (stormtrooper.Rockets != otherStormtrooper.Rockets)
{
return false;
}
if (stormtrooper.Radar != otherStormtrooper.Radar)
{
return false;
}
if (stormtrooper.Booster != otherStormtrooper.Booster)
{
return false;
}
if (stormtrooper.AdvColor != otherStormtrooper.AdvColor)
{
return false;
}
}
else if (airplane is EntityStormtrooper || otherAirplane is EntityStormtrooper)
{
return false;
}
return true;
}
} }
} }

View File

@ -51,6 +51,8 @@
this.LoadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.LoadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.buttonSortByColor = new System.Windows.Forms.Button();
this.buttonSortByType = new System.Windows.Forms.Button();
this.groupBoxTools.SuspendLayout(); this.groupBoxTools.SuspendLayout();
this.groupBoxMap.SuspendLayout(); this.groupBoxMap.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
@ -59,6 +61,8 @@
// //
// groupBoxTools // groupBoxTools
// //
this.groupBoxTools.Controls.Add(this.buttonSortByType);
this.groupBoxTools.Controls.Add(this.buttonSortByColor);
this.groupBoxTools.Controls.Add(this.groupBoxMap); this.groupBoxTools.Controls.Add(this.groupBoxMap);
this.groupBoxTools.Controls.Add(this.buttonRight); this.groupBoxTools.Controls.Add(this.buttonRight);
this.groupBoxTools.Controls.Add(this.buttonLeft); this.groupBoxTools.Controls.Add(this.buttonLeft);
@ -86,7 +90,7 @@
this.groupBoxMap.Controls.Add(this.comboBoxMapSelector); this.groupBoxMap.Controls.Add(this.comboBoxMapSelector);
this.groupBoxMap.Location = new System.Drawing.Point(6, 22); this.groupBoxMap.Location = new System.Drawing.Point(6, 22);
this.groupBoxMap.Name = "groupBoxMap"; this.groupBoxMap.Name = "groupBoxMap";
this.groupBoxMap.Size = new System.Drawing.Size(182, 259); this.groupBoxMap.Size = new System.Drawing.Size(182, 240);
this.groupBoxMap.TabIndex = 19; this.groupBoxMap.TabIndex = 19;
this.groupBoxMap.TabStop = false; this.groupBoxMap.TabStop = false;
this.groupBoxMap.Text = "Карты"; this.groupBoxMap.Text = "Карты";
@ -265,14 +269,14 @@
// SaveToolStripMenuItem // SaveToolStripMenuItem
// //
this.SaveToolStripMenuItem.Name = "SaveToolStripMenuItem"; this.SaveToolStripMenuItem.Name = "SaveToolStripMenuItem";
this.SaveToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.SaveToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
this.SaveToolStripMenuItem.Text = "Сохранение"; this.SaveToolStripMenuItem.Text = "Сохранение";
this.SaveToolStripMenuItem.Click += new System.EventHandler(this.SaveToolStripMenuItem_Click); this.SaveToolStripMenuItem.Click += new System.EventHandler(this.SaveToolStripMenuItem_Click);
// //
// LoadToolStripMenuItem // LoadToolStripMenuItem
// //
this.LoadToolStripMenuItem.Name = "LoadToolStripMenuItem"; this.LoadToolStripMenuItem.Name = "LoadToolStripMenuItem";
this.LoadToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.LoadToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
this.LoadToolStripMenuItem.Text = "Загрузка"; this.LoadToolStripMenuItem.Text = "Загрузка";
this.LoadToolStripMenuItem.Click += new System.EventHandler(this.LoadToolStripMenuItem_Click); this.LoadToolStripMenuItem.Click += new System.EventHandler(this.LoadToolStripMenuItem_Click);
// //
@ -280,6 +284,26 @@
// //
this.openFileDialog.FileName = "openFileDialog1"; this.openFileDialog.FileName = "openFileDialog1";
// //
// buttonSortByColor
//
this.buttonSortByColor.Location = new System.Drawing.Point(13, 282);
this.buttonSortByColor.Name = "buttonSortByColor";
this.buttonSortByColor.Size = new System.Drawing.Size(75, 23);
this.buttonSortByColor.TabIndex = 20;
this.buttonSortByColor.Text = "по цвету";
this.buttonSortByColor.UseVisualStyleBackColor = true;
this.buttonSortByColor.Click += new System.EventHandler(this.ButtonSortByColor_Click);
//
// buttonSortByType
//
this.buttonSortByType.Location = new System.Drawing.Point(95, 282);
this.buttonSortByType.Name = "buttonSortByType";
this.buttonSortByType.Size = new System.Drawing.Size(75, 23);
this.buttonSortByType.TabIndex = 21;
this.buttonSortByType.Text = "по типу";
this.buttonSortByType.UseVisualStyleBackColor = true;
this.buttonSortByType.Click += new System.EventHandler(this.ButtonSortByType_Click);
//
// FormMapWithSetAirplane // FormMapWithSetAirplane
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
@ -328,5 +352,7 @@
private ToolStripMenuItem LoadToolStripMenuItem; private ToolStripMenuItem LoadToolStripMenuItem;
private SaveFileDialog saveFileDialog; private SaveFileDialog saveFileDialog;
private OpenFileDialog openFileDialog; private OpenFileDialog openFileDialog;
private Button buttonSortByType;
private Button buttonSortByColor;
} }
} }

View File

@ -122,6 +122,11 @@ namespace Stormtrooper
_logger.LogWarning($"Ошибка переполнения хранилища: {ex.Message}"); _logger.LogWarning($"Ошибка переполнения хранилища: {ex.Message}");
MessageBox.Show($"Ошибка переполнения хранилища: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show($"Ошибка переполнения хранилища: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
} }
catch (ArgumentException ex)
{
_logger.LogWarning($"Ошибка при добавлении: {ex.Message}");
MessageBox.Show($"Ошибка при добавлении: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogWarning($"Неизвестная ошибка: {ex.Message}"); _logger.LogWarning($"Неизвестная ошибка: {ex.Message}");
@ -129,6 +134,35 @@ namespace Stormtrooper
} }
} }
/// <summary>
/// Сортировка по типу
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ButtonSortByType_Click(object sender, EventArgs e)
{
if (listBoxMap.SelectedIndex == -1)
{
return;
}
_mapCollection[listBoxMap.SelectedItem?.ToString() ?? string.Empty].Sort(new AirCompareByType());
pictureBox.Image = _mapCollection[listBoxMap.SelectedItem?.ToString() ?? string.Empty].ShowSet();
}
/// <summary>
/// Сортировка по цвету
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ButtonSortByColor_Click(object sender, EventArgs e)
{
if (listBoxMap.SelectedIndex == -1)
{
return;
}
_mapCollection[listBoxMap.SelectedItem?.ToString() ?? string.Empty].Sort(new AirCompareByColor());
pictureBox.Image = _mapCollection[listBoxMap.SelectedItem?.ToString() ?? string.Empty].ShowSet();
}
/// <summary> /// <summary>
/// Удаление объекта /// Удаление объекта
/// </summary> /// </summary>

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Stormtrooper namespace Stormtrooper
{ {
internal interface IDrawningObject internal interface IDrawningObject : IEquatable<IDrawningObject>
{ {
/// <summary> /// <summary>
/// Шаг перемещения объекта /// Шаг перемещения объекта

View File

@ -8,7 +8,7 @@ using System.Threading.Tasks;
namespace Stormtrooper namespace Stormtrooper
{ {
internal class MapWithSetAirplaneGeneric<T, U> internal class MapWithSetAirplaneGeneric<T, U>
where T : class, IDrawningObject where T : class, IDrawningObject, IEquatable<T>
where U : AbstractMap where U : AbstractMap
{ {
/// <summary> /// <summary>
@ -82,6 +82,15 @@ namespace Stormtrooper
DrawAirs(gr); DrawAirs(gr);
return bmp; return bmp;
} }
/// Сортировка
/// </summary>
/// <param name="comparer"></param>
public void Sort(IComparer<T> comparer)
{
_setAirs.SortSet(comparer);
}
/// <summary> /// <summary>
/// Просмотр объекта на карте /// Просмотр объекта на карте
/// </summary> /// </summary>

View File

@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Stormtrooper namespace Stormtrooper
{ {
internal class SetAirplaneGeneric<T> internal class SetAirplaneGeneric<T>
where T : class where T : class, IEquatable<T>
{ {
/// <summary> /// <summary>
/// List объектов, которые храним /// List объектов, которые храним
@ -34,6 +34,8 @@ namespace Stormtrooper
/// <returns></returns> /// <returns></returns>
public int Insert(T airplane) public int Insert(T airplane)
{ {
if (Count >= _maxCount) if (Count >= _maxCount)
throw new StorageOverflowException(_maxCount); throw new StorageOverflowException(_maxCount);
Insert(airplane, 0); Insert(airplane, 0);
@ -47,6 +49,10 @@ namespace Stormtrooper
/// <returns></returns> /// <returns></returns>
public int Insert(T airplane, int position) public int Insert(T airplane, int position)
{ {
if (_places.Contains(airplane))
{
throw new ArgumentException($"Объект {airplane} уже присутствует в наборе");
}
if (position < 0 || position >= _maxCount - 1) if (position < 0 || position >= _maxCount - 1)
throw new StorageOverflowException(_maxCount); throw new StorageOverflowException(_maxCount);
_places.Insert(position, airplane); _places.Insert(position, airplane);
@ -66,6 +72,21 @@ namespace Stormtrooper
_places.RemoveAt(position); _places.RemoveAt(position);
return air; return air;
} }
/// <summary>
/// Сортировка набора объектов
/// </summary>
/// <param name="comparer"></param>
public void SortSet(IComparer<T> comparer)
{
if (comparer == null)
{
return;
}
_places.Sort(comparer);
}
/// <summary> /// <summary>
/// Получение объекта из набора по позиции /// Получение объекта из набора по позиции
/// </summary> /// </summary>