Сравнение объектов.
This commit is contained in:
parent
c915bfbae1
commit
e1515f7771
@ -46,5 +46,41 @@ namespace Airbus
|
||||
|
||||
public static IDrawningObject Create(string data) => new DrawningObjectPlane(data.CreateDrawningPlane());
|
||||
|
||||
public bool Equals(IDrawningObject? other)
|
||||
{
|
||||
if(other == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
var otherPlane = other as DrawningObjectPlane;
|
||||
|
||||
if(otherPlane == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
var plane = _airbus.Airbus;
|
||||
var otherPlanePlane = otherPlane._airbus.Airbus;
|
||||
|
||||
if(plane.Speed != otherPlanePlane.Speed)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if(plane.Weight != otherPlanePlane.Weight)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if(plane.CorpusColor != otherPlanePlane.CorpusColor)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
//TODO доделать проверки на случай продвинутого объекта
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Airbus
|
||||
{
|
||||
internal interface IDrawningObject
|
||||
internal interface IDrawningObject : IEquatable<IDrawningObject>
|
||||
{
|
||||
//шаг перемещения объекта
|
||||
public float Step { get; }
|
||||
|
@ -10,7 +10,7 @@ namespace Airbus
|
||||
{
|
||||
//карта с набором объектов под неё
|
||||
internal class MapWithSetPlanesGeneric<T, U>
|
||||
where T : class, IDrawningObject
|
||||
where T : class, IDrawningObject, IEquatable<T>
|
||||
where U : AbstractMap
|
||||
{
|
||||
//ширина окна отрисовки
|
||||
|
@ -8,7 +8,7 @@ using System.Threading.Tasks;
|
||||
namespace Airbus
|
||||
{
|
||||
internal class SetPlanesGeneric<T>
|
||||
where T: class
|
||||
where T: class, IEquatable<T>
|
||||
{
|
||||
//список объектов, которые храним
|
||||
private readonly List<T> _places;
|
||||
@ -29,6 +29,8 @@ namespace Airbus
|
||||
//добавление объекта в набор
|
||||
public int Insert(T plane)
|
||||
{
|
||||
//TODO проверка на уникальность элемента в списке, делаем перед сообщением о переполнении
|
||||
|
||||
if (Count == _maxCount)
|
||||
{
|
||||
throw new StorageOverflowException(_maxCount);
|
||||
|
Loading…
Reference in New Issue
Block a user