Lab8
This commit is contained in:
parent
13cdd03f7e
commit
7159bf359b
@ -47,6 +47,7 @@ namespace Lab.Generics
|
|||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Sort(IComparer<T> comparer) => _collection.SortSet(comparer);
|
||||||
public U? GetU(int pos)
|
public U? GetU(int pos)
|
||||||
{
|
{
|
||||||
return (U?)_collection[pos]?.GetMoveableObject;
|
return (U?)_collection[pos]?.GetMoveableObject;
|
||||||
|
@ -6,13 +6,14 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using System.Xml.Linq;
|
||||||
|
|
||||||
namespace Lab.Generics
|
namespace Lab.Generics
|
||||||
{
|
{
|
||||||
internal class CarsGenericStorage
|
internal class CarsGenericStorage
|
||||||
{
|
{
|
||||||
readonly Dictionary<string, CarsGenericCollection<DrawTanker, DrawingObjectTanker>> _carStorages;
|
readonly Dictionary<TankerCollectionInfo, CarsGenericCollection<DrawTanker, DrawingObjectTanker>> _carStorages;
|
||||||
public List<string> Keys => _carStorages.Keys.ToList();
|
public List<TankerCollectionInfo> Keys => _carStorages.Keys.ToList();
|
||||||
private readonly int _pictureWidth;
|
private readonly int _pictureWidth;
|
||||||
private readonly int _pictureHeight;
|
private readonly int _pictureHeight;
|
||||||
|
|
||||||
@ -22,20 +23,22 @@ namespace Lab.Generics
|
|||||||
|
|
||||||
public CarsGenericStorage(int pictureWidth, int pictureHeight)
|
public CarsGenericStorage(int pictureWidth, int pictureHeight)
|
||||||
{
|
{
|
||||||
_carStorages = new Dictionary<string, CarsGenericCollection<DrawTanker, DrawingObjectTanker>>();
|
_carStorages = new Dictionary<TankerCollectionInfo, CarsGenericCollection<DrawTanker, DrawingObjectTanker>>();
|
||||||
_pictureWidth = pictureWidth;
|
_pictureWidth = pictureWidth;
|
||||||
_pictureHeight = pictureHeight;
|
_pictureHeight = pictureHeight;
|
||||||
}
|
}
|
||||||
public void AddSet(string name)
|
public void AddSet(string name)
|
||||||
{
|
{
|
||||||
if (_carStorages.ContainsKey(name)) return;
|
TankerCollectionInfo Info = new TankerCollectionInfo(name, string.Empty);
|
||||||
_carStorages[name] = new CarsGenericCollection<DrawTanker, DrawingObjectTanker>(_pictureWidth, _pictureHeight);
|
if (_carStorages.ContainsKey(Info)) return;
|
||||||
|
_carStorages[Info] = new CarsGenericCollection<DrawTanker, DrawingObjectTanker>(_pictureWidth, _pictureHeight);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void DelSet(string name)
|
public void DelSet(string name)
|
||||||
{
|
{
|
||||||
if (!_carStorages.ContainsKey(name)) return;
|
TankerCollectionInfo Info = new TankerCollectionInfo(name, string.Empty);
|
||||||
_carStorages.Remove(name);
|
if (!_carStorages.ContainsKey(Info)) return;
|
||||||
|
_carStorages.Remove(Info);
|
||||||
}
|
}
|
||||||
|
|
||||||
public CarsGenericCollection<DrawTanker, DrawingObjectTanker>?
|
public CarsGenericCollection<DrawTanker, DrawingObjectTanker>?
|
||||||
@ -43,7 +46,8 @@ namespace Lab.Generics
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
if (_carStorages.ContainsKey(ind)) return _carStorages[ind];
|
TankerCollectionInfo Info = new TankerCollectionInfo(ind, string.Empty);
|
||||||
|
if (_carStorages.ContainsKey(Info)) return _carStorages[Info];
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -54,14 +58,14 @@ namespace Lab.Generics
|
|||||||
File.Delete(filename);
|
File.Delete(filename);
|
||||||
}
|
}
|
||||||
StringBuilder data = new();
|
StringBuilder data = new();
|
||||||
foreach (KeyValuePair<string, CarsGenericCollection<DrawTanker, DrawingObjectTanker>> record in _carStorages)
|
foreach (KeyValuePair<TankerCollectionInfo, CarsGenericCollection<DrawTanker, DrawingObjectTanker>> record in _carStorages)
|
||||||
{
|
{
|
||||||
StringBuilder records = new();
|
StringBuilder records = new();
|
||||||
foreach (DrawTanker? elem in record.Value.GetCars)
|
foreach (DrawTanker? elem in record.Value.GetCars)
|
||||||
{
|
{
|
||||||
records.Append($"{elem?.GetDataForSave(_separatorForObject)}{_separatorRecords}");
|
records.Append($"{elem?.GetDataForSave(_separatorForObject)}{_separatorRecords}");
|
||||||
}
|
}
|
||||||
data.AppendLine($"{record.Key}{_separatorForKeyValue}{records}");
|
data.AppendLine($"{record.Key.Name}{_separatorForKeyValue}{records}");
|
||||||
|
|
||||||
}
|
}
|
||||||
if (data.Length == 0)
|
if (data.Length == 0)
|
||||||
@ -118,7 +122,7 @@ namespace Lab.Generics
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_carStorages.Add(name, collection);
|
_carStorages.Add(new TankerCollectionInfo(name, string.Empty), collection);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
76
Lab/CollectionsFrame.Designer.cs
generated
76
Lab/CollectionsFrame.Designer.cs
generated
@ -29,6 +29,8 @@
|
|||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
panel1 = new Panel();
|
panel1 = new Panel();
|
||||||
|
SortColorButton = new Button();
|
||||||
|
SortTypeButton = new Button();
|
||||||
panel2 = new Panel();
|
panel2 = new Panel();
|
||||||
DeleteCollectButton = new Button();
|
DeleteCollectButton = new Button();
|
||||||
CollectionListBox = new ListBox();
|
CollectionListBox = new ListBox();
|
||||||
@ -40,21 +42,23 @@
|
|||||||
AddButton = new Button();
|
AddButton = new Button();
|
||||||
CarTextBox = new TextBox();
|
CarTextBox = new TextBox();
|
||||||
label1 = new Label();
|
label1 = new Label();
|
||||||
DrawTank = new PictureBox();
|
|
||||||
openFileDialog = new OpenFileDialog();
|
|
||||||
saveFileDialog = new SaveFileDialog();
|
|
||||||
menuStrip1 = new MenuStrip();
|
menuStrip1 = new MenuStrip();
|
||||||
StripMenu = new ToolStripMenuItem();
|
StripMenu = new ToolStripMenuItem();
|
||||||
SaveItem = new ToolStripMenuItem();
|
SaveItem = new ToolStripMenuItem();
|
||||||
LoadItem = new ToolStripMenuItem();
|
LoadItem = new ToolStripMenuItem();
|
||||||
|
DrawTank = new PictureBox();
|
||||||
|
openFileDialog = new OpenFileDialog();
|
||||||
|
saveFileDialog = new SaveFileDialog();
|
||||||
panel1.SuspendLayout();
|
panel1.SuspendLayout();
|
||||||
panel2.SuspendLayout();
|
panel2.SuspendLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)DrawTank).BeginInit();
|
|
||||||
menuStrip1.SuspendLayout();
|
menuStrip1.SuspendLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)DrawTank).BeginInit();
|
||||||
SuspendLayout();
|
SuspendLayout();
|
||||||
//
|
//
|
||||||
// panel1
|
// panel1
|
||||||
//
|
//
|
||||||
|
panel1.Controls.Add(SortColorButton);
|
||||||
|
panel1.Controls.Add(SortTypeButton);
|
||||||
panel1.Controls.Add(panel2);
|
panel1.Controls.Add(panel2);
|
||||||
panel1.Controls.Add(UpdateButton);
|
panel1.Controls.Add(UpdateButton);
|
||||||
panel1.Controls.Add(DeleteButton);
|
panel1.Controls.Add(DeleteButton);
|
||||||
@ -68,6 +72,26 @@
|
|||||||
panel1.Size = new Size(250, 514);
|
panel1.Size = new Size(250, 514);
|
||||||
panel1.TabIndex = 0;
|
panel1.TabIndex = 0;
|
||||||
//
|
//
|
||||||
|
// SortColorButton
|
||||||
|
//
|
||||||
|
SortColorButton.Location = new Point(19, 301);
|
||||||
|
SortColorButton.Name = "SortColorButton";
|
||||||
|
SortColorButton.Size = new Size(208, 29);
|
||||||
|
SortColorButton.TabIndex = 8;
|
||||||
|
SortColorButton.Text = "Сортировка по цвету";
|
||||||
|
SortColorButton.UseVisualStyleBackColor = true;
|
||||||
|
SortColorButton.Click += ButtonSortByColor_Click;
|
||||||
|
//
|
||||||
|
// SortTypeButton
|
||||||
|
//
|
||||||
|
SortTypeButton.Location = new Point(19, 266);
|
||||||
|
SortTypeButton.Name = "SortTypeButton";
|
||||||
|
SortTypeButton.Size = new Size(208, 29);
|
||||||
|
SortTypeButton.TabIndex = 7;
|
||||||
|
SortTypeButton.Text = "Сортировка по типу";
|
||||||
|
SortTypeButton.UseVisualStyleBackColor = true;
|
||||||
|
SortTypeButton.Click += ButtonSortByType_Click;
|
||||||
|
//
|
||||||
// panel2
|
// panel2
|
||||||
//
|
//
|
||||||
panel2.Controls.Add(DeleteCollectButton);
|
panel2.Controls.Add(DeleteCollectButton);
|
||||||
@ -77,7 +101,7 @@
|
|||||||
panel2.Controls.Add(label2);
|
panel2.Controls.Add(label2);
|
||||||
panel2.Location = new Point(16, 38);
|
panel2.Location = new Point(16, 38);
|
||||||
panel2.Name = "panel2";
|
panel2.Name = "panel2";
|
||||||
panel2.Size = new Size(214, 220);
|
panel2.Size = new Size(214, 217);
|
||||||
panel2.TabIndex = 5;
|
panel2.TabIndex = 5;
|
||||||
//
|
//
|
||||||
// DeleteCollectButton
|
// DeleteCollectButton
|
||||||
@ -128,7 +152,7 @@
|
|||||||
//
|
//
|
||||||
// UpdateButton
|
// UpdateButton
|
||||||
//
|
//
|
||||||
UpdateButton.Location = new Point(6, 383);
|
UpdateButton.Location = new Point(6, 465);
|
||||||
UpdateButton.Name = "UpdateButton";
|
UpdateButton.Name = "UpdateButton";
|
||||||
UpdateButton.Size = new Size(228, 37);
|
UpdateButton.Size = new Size(228, 37);
|
||||||
UpdateButton.TabIndex = 4;
|
UpdateButton.TabIndex = 4;
|
||||||
@ -138,7 +162,7 @@
|
|||||||
//
|
//
|
||||||
// DeleteButton
|
// DeleteButton
|
||||||
//
|
//
|
||||||
DeleteButton.Location = new Point(6, 340);
|
DeleteButton.Location = new Point(6, 422);
|
||||||
DeleteButton.Name = "DeleteButton";
|
DeleteButton.Name = "DeleteButton";
|
||||||
DeleteButton.Size = new Size(228, 37);
|
DeleteButton.Size = new Size(228, 37);
|
||||||
DeleteButton.TabIndex = 3;
|
DeleteButton.TabIndex = 3;
|
||||||
@ -148,7 +172,7 @@
|
|||||||
//
|
//
|
||||||
// AddButton
|
// AddButton
|
||||||
//
|
//
|
||||||
AddButton.Location = new Point(6, 264);
|
AddButton.Location = new Point(6, 346);
|
||||||
AddButton.Name = "AddButton";
|
AddButton.Name = "AddButton";
|
||||||
AddButton.Size = new Size(228, 37);
|
AddButton.Size = new Size(228, 37);
|
||||||
AddButton.TabIndex = 2;
|
AddButton.TabIndex = 2;
|
||||||
@ -158,7 +182,7 @@
|
|||||||
//
|
//
|
||||||
// CarTextBox
|
// CarTextBox
|
||||||
//
|
//
|
||||||
CarTextBox.Location = new Point(6, 307);
|
CarTextBox.Location = new Point(6, 389);
|
||||||
CarTextBox.Name = "CarTextBox";
|
CarTextBox.Name = "CarTextBox";
|
||||||
CarTextBox.Size = new Size(228, 27);
|
CarTextBox.Size = new Size(228, 27);
|
||||||
CarTextBox.TabIndex = 1;
|
CarTextBox.TabIndex = 1;
|
||||||
@ -172,19 +196,6 @@
|
|||||||
label1.TabIndex = 0;
|
label1.TabIndex = 0;
|
||||||
label1.Text = "Инструменты";
|
label1.Text = "Инструменты";
|
||||||
//
|
//
|
||||||
// DrawTank
|
|
||||||
//
|
|
||||||
DrawTank.Dock = DockStyle.Fill;
|
|
||||||
DrawTank.Location = new Point(0, 0);
|
|
||||||
DrawTank.Name = "DrawTank";
|
|
||||||
DrawTank.Size = new Size(550, 514);
|
|
||||||
DrawTank.TabIndex = 1;
|
|
||||||
DrawTank.TabStop = false;
|
|
||||||
//
|
|
||||||
// openFileDialog
|
|
||||||
//
|
|
||||||
openFileDialog.FileName = "openFileDialog1";
|
|
||||||
//
|
|
||||||
// menuStrip1
|
// menuStrip1
|
||||||
//
|
//
|
||||||
menuStrip1.ImageScalingSize = new Size(20, 20);
|
menuStrip1.ImageScalingSize = new Size(20, 20);
|
||||||
@ -205,17 +216,30 @@
|
|||||||
// SaveItem
|
// SaveItem
|
||||||
//
|
//
|
||||||
SaveItem.Name = "SaveItem";
|
SaveItem.Name = "SaveItem";
|
||||||
SaveItem.Size = new Size(224, 26);
|
SaveItem.Size = new Size(166, 26);
|
||||||
SaveItem.Text = "Сохранить";
|
SaveItem.Text = "Сохранить";
|
||||||
SaveItem.Click += SaveToolStripMenuItem_Click;
|
SaveItem.Click += SaveToolStripMenuItem_Click;
|
||||||
//
|
//
|
||||||
// LoadItem
|
// LoadItem
|
||||||
//
|
//
|
||||||
LoadItem.Name = "LoadItem";
|
LoadItem.Name = "LoadItem";
|
||||||
LoadItem.Size = new Size(224, 26);
|
LoadItem.Size = new Size(166, 26);
|
||||||
LoadItem.Text = "Загрузить";
|
LoadItem.Text = "Загрузить";
|
||||||
LoadItem.Click += LoadToolStripMenuItem_Click;
|
LoadItem.Click += LoadToolStripMenuItem_Click;
|
||||||
//
|
//
|
||||||
|
// DrawTank
|
||||||
|
//
|
||||||
|
DrawTank.Dock = DockStyle.Fill;
|
||||||
|
DrawTank.Location = new Point(0, 0);
|
||||||
|
DrawTank.Name = "DrawTank";
|
||||||
|
DrawTank.Size = new Size(550, 514);
|
||||||
|
DrawTank.TabIndex = 1;
|
||||||
|
DrawTank.TabStop = false;
|
||||||
|
//
|
||||||
|
// openFileDialog
|
||||||
|
//
|
||||||
|
openFileDialog.FileName = "openFileDialog1";
|
||||||
|
//
|
||||||
// CollectionsFrame
|
// CollectionsFrame
|
||||||
//
|
//
|
||||||
AutoScaleDimensions = new SizeF(8F, 20F);
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
||||||
@ -230,9 +254,9 @@
|
|||||||
panel1.PerformLayout();
|
panel1.PerformLayout();
|
||||||
panel2.ResumeLayout(false);
|
panel2.ResumeLayout(false);
|
||||||
panel2.PerformLayout();
|
panel2.PerformLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)DrawTank).EndInit();
|
|
||||||
menuStrip1.ResumeLayout(false);
|
menuStrip1.ResumeLayout(false);
|
||||||
menuStrip1.PerformLayout();
|
menuStrip1.PerformLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)DrawTank).EndInit();
|
||||||
ResumeLayout(false);
|
ResumeLayout(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -257,5 +281,7 @@
|
|||||||
private ToolStripMenuItem StripMenu;
|
private ToolStripMenuItem StripMenu;
|
||||||
private ToolStripMenuItem SaveItem;
|
private ToolStripMenuItem SaveItem;
|
||||||
private ToolStripMenuItem LoadItem;
|
private ToolStripMenuItem LoadItem;
|
||||||
|
private Button SortColorButton;
|
||||||
|
private Button SortTypeButton;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -11,6 +11,7 @@ using System.Text;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
|
using System.Drawing.Text;
|
||||||
|
|
||||||
namespace Lab
|
namespace Lab
|
||||||
{
|
{
|
||||||
@ -31,7 +32,7 @@ namespace Lab
|
|||||||
CollectionListBox.Items.Clear();
|
CollectionListBox.Items.Clear();
|
||||||
foreach (var key in _storage.Keys)
|
foreach (var key in _storage.Keys)
|
||||||
{
|
{
|
||||||
CollectionListBox.Items.Add(key);
|
CollectionListBox.Items.Add(key.Name);
|
||||||
}
|
}
|
||||||
if (CollectionListBox.Items.Count > 0 && (index == -1 || index
|
if (CollectionListBox.Items.Count > 0 && (index == -1 || index
|
||||||
>= CollectionListBox.Items.Count))
|
>= CollectionListBox.Items.Count))
|
||||||
@ -57,11 +58,9 @@ namespace Lab
|
|||||||
ReloadObjects();
|
ReloadObjects();
|
||||||
_logger.LogInformation($"Добавлен набор: {SetTextBox.Text}");
|
_logger.LogInformation($"Добавлен набор: {SetTextBox.Text}");
|
||||||
}
|
}
|
||||||
private void ListBoxObjects_SelectedIndexChanged(object sender,
|
private void ListBoxObjects_SelectedIndexChanged(object sender, EventArgs e)
|
||||||
EventArgs e)
|
|
||||||
{
|
{
|
||||||
DrawTank.Image =
|
DrawTank.Image = _storage[CollectionListBox.SelectedItem?.ToString() ?? string.Empty]?.ShowCars();
|
||||||
_storage[CollectionListBox.SelectedItem?.ToString() ?? string.Empty]?.ShowCars();
|
|
||||||
}
|
}
|
||||||
private void ButtonDelObject_Click(object sender, EventArgs e)
|
private void ButtonDelObject_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
@ -98,6 +97,11 @@ namespace Lab
|
|||||||
DrawTank.Image = obj.ShowCars();
|
DrawTank.Image = obj.ShowCars();
|
||||||
_logger.LogInformation($"Добавлен объект в набор {CollectionListBox.SelectedItem.ToString()}");
|
_logger.LogInformation($"Добавлен объект в набор {CollectionListBox.SelectedItem.ToString()}");
|
||||||
}
|
}
|
||||||
|
catch (ArgumentException ex)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Такой объект уже существует");
|
||||||
|
_logger.LogWarning($"{ex.Message} в наборе {CollectionListBox.SelectedItem.ToString()}");
|
||||||
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Не удалось добавить объект");
|
MessageBox.Show("Не удалось добавить объект");
|
||||||
@ -153,8 +157,7 @@ namespace Lab
|
|||||||
_logger.LogWarning($"{ex.Message} из набора {CollectionListBox.SelectedItem.ToString()}");
|
_logger.LogWarning($"{ex.Message} из набора {CollectionListBox.SelectedItem.ToString()}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void ButtonRefreshCollection_Click(object sender, EventArgs
|
private void ButtonRefreshCollection_Click(object sender, EventArgs e)
|
||||||
e)
|
|
||||||
{
|
{
|
||||||
if (CollectionListBox.SelectedIndex == -1)
|
if (CollectionListBox.SelectedIndex == -1)
|
||||||
{
|
{
|
||||||
@ -204,5 +207,22 @@ namespace Lab
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void ButtonSortByType_Click(object sender, EventArgs e) => CompareTanker(new TankerCompareByType());
|
||||||
|
|
||||||
|
private void ButtonSortByColor_Click(object sender, EventArgs e) => CompareTanker(new TankerCompareByColor());
|
||||||
|
|
||||||
|
private void CompareTanker(IComparer<DrawTanker?> comparer)
|
||||||
|
{
|
||||||
|
if (CollectionListBox.SelectedIndex == -1)
|
||||||
|
return;
|
||||||
|
var obj = _storage[CollectionListBox.SelectedItem.ToString() ?? string.Empty];
|
||||||
|
if (obj == null)
|
||||||
|
return;
|
||||||
|
obj.Sort(comparer);
|
||||||
|
DrawTank.Image = obj.ShowCars();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
67
Lab/DrawiningTankerEqutables.cs
Normal file
67
Lab/DrawiningTankerEqutables.cs
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
using Lab.DrawningObjects;
|
||||||
|
using Lab.Entities;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics.CodeAnalysis;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Lab
|
||||||
|
{
|
||||||
|
internal class DrawiningTankerEqutables : IEqualityComparer<DrawTanker?>
|
||||||
|
{
|
||||||
|
public bool Equals(DrawTanker? x, DrawTanker? y)
|
||||||
|
{
|
||||||
|
if (x == null || x._gasolineTanker == null)
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException(nameof(x));
|
||||||
|
}
|
||||||
|
if (y == null || y._gasolineTanker == null)
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException(nameof(y));
|
||||||
|
}
|
||||||
|
if (x.GetType() != y.GetType())
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (x._gasolineTanker.Speed != y._gasolineTanker.Speed)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (x._gasolineTanker.Weight != y._gasolineTanker.Weight)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (x._gasolineTanker.BodyColor != y._gasolineTanker.BodyColor)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (x is DrawGasolineTanker && y is DrawGasolineTanker)
|
||||||
|
{
|
||||||
|
if ((x._gasolineTanker as GasolineTanker).AdditionalColor != (y._gasolineTanker as GasolineTanker).AdditionalColor)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if ((x._gasolineTanker as GasolineTanker).Wing != (y._gasolineTanker as GasolineTanker).Wing)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if ((x._gasolineTanker as GasolineTanker).BodyKit != (y._gasolineTanker as GasolineTanker).BodyKit)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if ((x._gasolineTanker as GasolineTanker).SportLine != (y._gasolineTanker as GasolineTanker).SportLine)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int GetHashCode([DisallowNull]DrawTanker obj)
|
||||||
|
{
|
||||||
|
return obj.GetHashCode();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -19,17 +19,24 @@ namespace Lab.Generics
|
|||||||
_places = new List<T?>(_maxCount);
|
_places = new List<T?>(_maxCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool Insert(T car)
|
public bool Insert(T car, IEqualityComparer<T?>? equal = null)
|
||||||
{
|
{
|
||||||
return Insert(car, 0);
|
return Insert(car, 0, equal);
|
||||||
}
|
}
|
||||||
public bool Insert(T car, int position)
|
public bool Insert(T car, int position, IEqualityComparer<T?>? equal = null)
|
||||||
{
|
{
|
||||||
if (position < 0 || position >= _maxCount)
|
if (position < 0 || position >= _maxCount)
|
||||||
throw new CarNotFoundException(position);
|
throw new CarNotFoundException(position);
|
||||||
|
|
||||||
if (Count >= _maxCount)
|
if (Count >= _maxCount)
|
||||||
throw new StorageOverflowException(position);
|
throw new StorageOverflowException(position);
|
||||||
|
if (equal != null)
|
||||||
|
{
|
||||||
|
foreach (var i in _places)
|
||||||
|
{
|
||||||
|
if (equal.Equals(i, car))
|
||||||
|
throw new ArgumentException($"Объект {car} уже существует");
|
||||||
|
}
|
||||||
|
}
|
||||||
_places.Insert(0, car);
|
_places.Insert(0, car);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -74,5 +81,7 @@ namespace Lab.Generics
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void SortSet(IComparer<T?> comparer) => _places.Sort(comparer);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
31
Lab/TankerCollectionInfo.cs
Normal file
31
Lab/TankerCollectionInfo.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics.CodeAnalysis;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Lab.DrawningObjects;
|
||||||
|
using Lab.Generics;
|
||||||
|
namespace Lab
|
||||||
|
{
|
||||||
|
internal class TankerCollectionInfo : IEquatable<TankerCollectionInfo>
|
||||||
|
{
|
||||||
|
public string Name { get; private set; }
|
||||||
|
public string Description { get; private set; }
|
||||||
|
public TankerCollectionInfo(string name, string description)
|
||||||
|
{
|
||||||
|
Name = name;
|
||||||
|
Description = description;
|
||||||
|
}
|
||||||
|
public bool Equals(TankerCollectionInfo? other)
|
||||||
|
{
|
||||||
|
if (other == null || Name == null || other.Name == null) return false;
|
||||||
|
if (Name == other.Name) return true;
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
public override int GetHashCode()
|
||||||
|
{
|
||||||
|
return Name?.GetHashCode() ?? 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
34
Lab/TankerCompareByColor.cs
Normal file
34
Lab/TankerCompareByColor.cs
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Lab.DrawningObjects;
|
||||||
|
|
||||||
|
namespace Lab
|
||||||
|
{
|
||||||
|
internal class TankerCompareByColor : IComparer<DrawTanker?>
|
||||||
|
{
|
||||||
|
public int Compare(DrawTanker? x, DrawTanker? y)
|
||||||
|
{
|
||||||
|
if (x == null || x._gasolineTanker == null)
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException(nameof(x));
|
||||||
|
}
|
||||||
|
if (y == null || y._gasolineTanker == null)
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException(nameof(y));
|
||||||
|
}
|
||||||
|
if (x._gasolineTanker.BodyColor != y._gasolineTanker.BodyColor)
|
||||||
|
{
|
||||||
|
return x._gasolineTanker.BodyColor.Name.CompareTo(y._gasolineTanker.BodyColor.Name);
|
||||||
|
}
|
||||||
|
var speedCompare = x._gasolineTanker.Speed.CompareTo(y._gasolineTanker.Speed);
|
||||||
|
if (speedCompare != 0)
|
||||||
|
{
|
||||||
|
return speedCompare;
|
||||||
|
}
|
||||||
|
return x._gasolineTanker.Weight.CompareTo(y._gasolineTanker.Weight);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
34
Lab/TankerCompareByType.cs
Normal file
34
Lab/TankerCompareByType.cs
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Lab.DrawningObjects;
|
||||||
|
|
||||||
|
namespace Lab
|
||||||
|
{
|
||||||
|
internal class TankerCompareByType : IComparer<DrawTanker?>
|
||||||
|
{
|
||||||
|
public int Compare(DrawTanker? x, DrawTanker? y)
|
||||||
|
{
|
||||||
|
if (x == null || x._gasolineTanker == null)
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException(nameof(x));
|
||||||
|
}
|
||||||
|
if (y == null || y._gasolineTanker == null)
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException(nameof(y));
|
||||||
|
}
|
||||||
|
if (x.GetType().Name != y.GetType().Name)
|
||||||
|
{
|
||||||
|
return x.GetType().Name.CompareTo(y.GetType().Name);
|
||||||
|
}
|
||||||
|
var speedCompare = x._gasolineTanker.Speed.CompareTo(y._gasolineTanker.Speed);
|
||||||
|
if (speedCompare != 0)
|
||||||
|
{
|
||||||
|
return speedCompare;
|
||||||
|
}
|
||||||
|
return x._gasolineTanker.Weight.CompareTo(y._gasolineTanker.Weight);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user