всё работает
This commit is contained in:
parent
d1b29031d2
commit
cc3bc5bf34
@ -40,8 +40,7 @@ namespace ProjectAirbus
|
||||
{
|
||||
return;
|
||||
}
|
||||
var obj = _storage[listBoxStorages.SelectedItem.ToString() ??
|
||||
string.Empty];
|
||||
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
|
||||
if (obj == null)
|
||||
{
|
||||
return;
|
||||
@ -96,7 +95,7 @@ namespace ProjectAirbus
|
||||
listBoxStorages.Items.Clear();
|
||||
for (int i = 0; i < _storage.Keys.Count; i++)
|
||||
{
|
||||
listBoxStorages.Items.Add(_storage.Keys[i]);
|
||||
listBoxStorages.Items.Add(_storage.Keys[i].Name);
|
||||
}
|
||||
if (listBoxStorages.Items.Count > 0 && (index == -1 || index >= listBoxStorages.Items.Count))
|
||||
{
|
||||
@ -184,6 +183,11 @@ namespace ProjectAirbus
|
||||
MessageBox.Show(ex.Message);
|
||||
_logger.LogWarning(ex.Message);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message);
|
||||
_logger.LogWarning(ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
// удалить самолёт
|
||||
|
27
Airbus/Generics/AirbusCollectionInfo.cs
Normal file
27
Airbus/Generics/AirbusCollectionInfo.cs
Normal file
@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ProjectAirbus.Generics
|
||||
{
|
||||
internal class AirbusCollectionInfo : IEquatable<AirbusCollectionInfo>
|
||||
{
|
||||
public string Name { get; private set; }
|
||||
public string Description { get; private set; }
|
||||
public AirbusCollectionInfo(string name, string description)
|
||||
{
|
||||
Name = name;
|
||||
Description = description;
|
||||
}
|
||||
public bool Equals(AirbusCollectionInfo? other)
|
||||
{
|
||||
if (ReferenceEquals(other, null))
|
||||
return false;
|
||||
|
||||
return Name.Equals(other.Name);
|
||||
}
|
||||
public override int GetHashCode() => Name.GetHashCode();
|
||||
}
|
||||
}
|
@ -38,7 +38,7 @@ namespace ProjectAirbus.Generics
|
||||
{
|
||||
if (obj != null)
|
||||
{
|
||||
return collect._collection.Insert(obj);
|
||||
return collect._collection.Insert(obj, new DrawningAirbusEqutables());
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
@ -13,9 +13,9 @@ namespace ProjectAirbus.Generics
|
||||
internal class AirbusGenericStorage
|
||||
{
|
||||
//Словарь (хранилище)
|
||||
readonly Dictionary<string, AirbusGenericCollection<DrawningAirbus, DrawningObjectAirbus>> _airbusStorages;
|
||||
readonly Dictionary<AirbusCollectionInfo, AirbusGenericCollection<DrawningAirbus, DrawningObjectAirbus>> _airbusStorages;
|
||||
//Возвращение списка названий наборов
|
||||
public List<string> Keys => _airbusStorages.Keys.ToList();
|
||||
public List<AirbusCollectionInfo> Keys => _airbusStorages.Keys.ToList();
|
||||
//Ширина окна отрисовки
|
||||
private readonly int _pictureWidth;
|
||||
//Высота окна отрисовки
|
||||
@ -28,10 +28,9 @@ namespace ProjectAirbus.Generics
|
||||
// Разделитель для записи информации по объекту в файл
|
||||
private static readonly char _separatorForObject = ':';
|
||||
|
||||
|
||||
public AirbusGenericStorage(int pictureWidth, int pictureHeight)
|
||||
{
|
||||
_airbusStorages = new Dictionary<string, AirbusGenericCollection<DrawningAirbus, DrawningObjectAirbus>>();
|
||||
_airbusStorages = new Dictionary<AirbusCollectionInfo, AirbusGenericCollection<DrawningAirbus, DrawningObjectAirbus>>();
|
||||
_pictureWidth = pictureWidth;
|
||||
_pictureHeight = pictureHeight;
|
||||
}
|
||||
@ -39,25 +38,24 @@ namespace ProjectAirbus.Generics
|
||||
// Добавление набора
|
||||
public void AddSet(string name)
|
||||
{
|
||||
// проверка, что нет набора с таким именем
|
||||
foreach (string nameStorage in Keys)
|
||||
{
|
||||
if (nameStorage == name)
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
_airbusStorages.Add(name, new AirbusGenericCollection<DrawningAirbus, DrawningObjectAirbus>(_pictureWidth, _pictureHeight));
|
||||
AirbusCollectionInfo set = new AirbusCollectionInfo(name, string.Empty);
|
||||
|
||||
if (_airbusStorages.ContainsKey(set))
|
||||
return;
|
||||
|
||||
_airbusStorages.Add(set, new AirbusGenericCollection<DrawningAirbus, DrawningObjectAirbus>(_pictureWidth, _pictureHeight));
|
||||
}
|
||||
|
||||
// Удаление набора
|
||||
public void DelSet(string name)
|
||||
{
|
||||
if ( _airbusStorages.ContainsKey(name))
|
||||
{
|
||||
_airbusStorages.Remove(name);
|
||||
}
|
||||
AirbusCollectionInfo set = new AirbusCollectionInfo(name, string.Empty);
|
||||
|
||||
// проверка, что нет набора с таким именем
|
||||
if (!_airbusStorages.ContainsKey(set))
|
||||
return;
|
||||
|
||||
_airbusStorages.Remove(set);
|
||||
}
|
||||
|
||||
// Доступ к набору
|
||||
@ -65,11 +63,13 @@ namespace ProjectAirbus.Generics
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_airbusStorages.ContainsKey(ind))
|
||||
AirbusCollectionInfo set = new AirbusCollectionInfo(ind, string.Empty);
|
||||
|
||||
if (!_airbusStorages.ContainsKey(set))
|
||||
{
|
||||
return _airbusStorages[ind];
|
||||
return null;
|
||||
}
|
||||
return null;
|
||||
return _airbusStorages[set];
|
||||
}
|
||||
}
|
||||
|
||||
@ -162,7 +162,7 @@ namespace ProjectAirbus.Generics
|
||||
}
|
||||
}
|
||||
}
|
||||
_airbusStorages.Add(record[0], collection);
|
||||
_airbusStorages.Add(new AirbusCollectionInfo(record[0], string.Empty), collection);
|
||||
curLine = sr.ReadLine();
|
||||
}
|
||||
}
|
||||
|
@ -48,7 +48,7 @@ namespace ProjectAirbus.Generics
|
||||
return true;
|
||||
}
|
||||
|
||||
public int GetHashCode([DisallowNull] DrawningAirbus obj)
|
||||
public int GetHashCode([DisallowNull] DrawningAirbus? obj)
|
||||
{
|
||||
return obj.GetHashCode();
|
||||
}
|
||||
|
@ -29,7 +29,7 @@ namespace ProjectAirbus.Generics
|
||||
// Добавление объекта в начало набора
|
||||
public int Insert(T airbus, IEqualityComparer<T?>? equal = null)
|
||||
{
|
||||
return Insert(airbus, 0);
|
||||
return Insert(airbus, 0, equal);
|
||||
}
|
||||
|
||||
// Добавление объекта в набор на конкретную позицию
|
||||
@ -43,6 +43,11 @@ namespace ProjectAirbus.Generics
|
||||
{
|
||||
throw new IndexOutOfRangeException("Индекс вне границ коллекции");
|
||||
}
|
||||
if (equal != null && _places.Contains(airbus,equal))
|
||||
{
|
||||
throw new ArgumentException("Данный объект уже есть в коллекции");
|
||||
}
|
||||
|
||||
_places.Insert(position, airbus);
|
||||
return 0;
|
||||
}
|
||||
|
@ -36,9 +36,6 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="nlog.config">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</None>
|
||||
<None Update="serilog.json">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</None>
|
||||
|
@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" autoReload="true" internalLogLevel="Info">
|
||||
<targets>
|
||||
<target xsi:type="File" name="tofile" fileName="carlog-${shortdate}.log" />
|
||||
</targets>
|
||||
<rules>
|
||||
<logger name="*" minlevel="Debug" writeTo="tofile" />
|
||||
</rules>
|
||||
</nlog>
|
||||
</configuration>
|
Loading…
Reference in New Issue
Block a user