Доработка
This commit is contained in:
parent
71fb1ccbde
commit
7699e88659
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace AirPlaneWithRadar
|
namespace AirPlaneWithRadar
|
||||||
{
|
{
|
||||||
internal abstract class AbstractMap
|
internal abstract class AbstractMap : IEquatable<AbstractMap>
|
||||||
{
|
{
|
||||||
private IDrawingObject _drawningObject = null;
|
private IDrawingObject _drawningObject = null;
|
||||||
protected int[,] _map = null;
|
protected int[,] _map = null;
|
||||||
@ -145,5 +145,37 @@ namespace AirPlaneWithRadar
|
|||||||
protected abstract void GenerateMap();
|
protected abstract void GenerateMap();
|
||||||
protected abstract void DrawRoadPart(Graphics g, int i, int j);
|
protected abstract void DrawRoadPart(Graphics g, int i, int j);
|
||||||
protected abstract void DrawBarrierPart(Graphics g, int i, int j);
|
protected abstract void DrawBarrierPart(Graphics g, int i, int j);
|
||||||
|
|
||||||
|
public string ArrToStr(int[,] arr)
|
||||||
|
{
|
||||||
|
string res = "";
|
||||||
|
foreach (int i in arr)
|
||||||
|
{
|
||||||
|
res += i;
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
public bool Equals(AbstractMap? other)
|
||||||
|
{
|
||||||
|
if (other == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
var curMap = this;
|
||||||
|
var otherMap = other;
|
||||||
|
if (curMap._height != otherMap._height)
|
||||||
|
return false;
|
||||||
|
if (curMap._width != otherMap._width)
|
||||||
|
return false;
|
||||||
|
if (curMap._size_x != otherMap._size_x)
|
||||||
|
return false;
|
||||||
|
if (curMap._size_y != otherMap._size_y)
|
||||||
|
return false;
|
||||||
|
string arr1 = ArrToStr(curMap._map);
|
||||||
|
string arr2 = ArrToStr(curMap._map);
|
||||||
|
if (!arr1.Equals(arr2))
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -66,7 +66,19 @@ namespace AirPlaneWithRadar
|
|||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
var RadPlain = plain as RadioPlane;
|
||||||
|
var otherRadPlain = otherPlainPlain as RadioPlane;
|
||||||
|
if (RadPlain == null && otherRadPlain == null)
|
||||||
|
return true;
|
||||||
|
if (RadPlain == null || otherRadPlain == null)
|
||||||
|
return false;
|
||||||
|
if (!(RadPlain.DopColor.Equals(otherRadPlain.DopColor)))
|
||||||
|
return false;
|
||||||
|
if (!(RadPlain.Radar.Equals(otherRadPlain.Radar)))
|
||||||
|
return false;
|
||||||
|
if (!(RadPlain.OilBox.Equals(otherRadPlain.OilBox)))
|
||||||
|
return false;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -287,7 +287,12 @@ namespace AirPlaneWithRadar
|
|||||||
|
|
||||||
private void ButtonSortByColor_Click(object sender, EventArgs e)
|
private void ButtonSortByColor_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
if (listBoxMaps.SelectedIndex == -1)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].Sort(new PlaneCompareByColor());
|
||||||
|
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -37,3 +37,61 @@
|
|||||||
2022-12-02 19:35:15.398 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
|
2022-12-02 19:35:15.398 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
|
||||||
2022-12-02 19:35:20.416 +03:00 [INF] С карты 1234 был удален самолет
|
2022-12-02 19:35:20.416 +03:00 [INF] С карты 1234 был удален самолет
|
||||||
2022-12-02 19:35:24.176 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
|
2022-12-02 19:35:24.176 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
|
||||||
|
2022-12-02 20:58:51.450 +03:00 [INF] Переключение на карту 0
|
||||||
|
2022-12-02 20:58:51.469 +03:00 [INF] Была проведена загрузка из файла C:\Users\Вова\Documents\test2.txt
|
||||||
|
2022-12-02 20:58:52.939 +03:00 [INF] Переключение на карту 2
|
||||||
|
2022-12-02 20:58:53.435 +03:00 [INF] Переключение на карту 123
|
||||||
|
2022-12-02 20:58:53.906 +03:00 [INF] Переключение на карту 2
|
||||||
|
2022-12-02 20:59:11.008 +03:00 [INF] На карту 2 добавлен новый самолет
|
||||||
|
2022-12-02 20:59:17.699 +03:00 [INF] На карту 2 добавлен новый самолет
|
||||||
|
2022-12-02 21:02:18.006 +03:00 [INF] Переключение на карту 1
|
||||||
|
2022-12-02 21:02:18.017 +03:00 [INF] Добавлена карта: 1
|
||||||
|
2022-12-02 21:02:23.228 +03:00 [INF] На карту 1 добавлен новый самолет
|
||||||
|
2022-12-02 21:02:29.188 +03:00 [INF] На карту 1 добавлен новый самолет
|
||||||
|
2022-12-02 21:02:41.779 +03:00 [INF] На карту 1 добавлен новый самолет
|
||||||
|
2022-12-02 21:04:40.932 +03:00 [INF] Переключение на карту 12
|
||||||
|
2022-12-02 21:04:40.942 +03:00 [INF] Добавлена карта: 12
|
||||||
|
2022-12-02 21:04:47.181 +03:00 [INF] На карту 12 добавлен новый самолет
|
||||||
|
2022-12-02 21:04:51.926 +03:00 [INF] На карту 12 добавлен новый самолет
|
||||||
|
2022-12-02 21:06:03.473 +03:00 [INF] Переключение на карту 12
|
||||||
|
2022-12-02 21:06:03.483 +03:00 [INF] Добавлена карта: 12
|
||||||
|
2022-12-02 21:06:11.530 +03:00 [INF] На карту 12 добавлен новый самолет
|
||||||
|
2022-12-02 21:08:09.171 +03:00 [INF] Переключение на карту 12
|
||||||
|
2022-12-02 21:08:09.180 +03:00 [INF] Добавлена карта: 12
|
||||||
|
2022-12-02 21:09:01.146 +03:00 [INF] На карту 12 добавлен новый самолет
|
||||||
|
2022-12-02 21:10:09.720 +03:00 [INF] Переключение на карту 12
|
||||||
|
2022-12-02 21:10:09.734 +03:00 [INF] Добавлена карта: 12
|
||||||
|
2022-12-02 21:10:19.563 +03:00 [INF] На карту 12 добавлен новый самолет
|
||||||
|
2022-12-02 21:10:27.721 +03:00 [INF] Добавление самолета на карту 12 прошло неудачно
|
||||||
|
2022-12-02 21:10:36.916 +03:00 [INF] Переключение на карту 0
|
||||||
|
2022-12-02 21:10:36.917 +03:00 [INF] Была проведена загрузка из файла C:\Users\Вова\Documents\test.txt
|
||||||
|
2022-12-02 21:10:37.991 +03:00 [INF] Переключение на карту 123
|
||||||
|
2022-12-02 21:10:38.462 +03:00 [INF] Переключение на карту 2
|
||||||
|
2022-12-02 21:10:54.307 +03:00 [INF] На карту 2 добавлен новый самолет
|
||||||
|
2022-12-02 21:11:04.627 +03:00 [INF] На карту 2 добавлен новый самолет
|
||||||
|
2022-12-02 21:11:11.001 +03:00 [INF] Добавление самолета на карту 2 прошло неудачно
|
||||||
|
2022-12-02 21:11:30.530 +03:00 [INF] На карту 2 добавлен новый самолет
|
||||||
|
2022-12-02 21:11:42.503 +03:00 [INF] Переключение на карту 2
|
||||||
|
2022-12-02 21:11:42.503 +03:00 [INF] Добавлена карта: 2
|
||||||
|
2022-12-02 21:11:43.232 +03:00 [INF] Переключение на карту 2
|
||||||
|
2022-12-02 21:11:43.232 +03:00 [INF] Добавлена карта: 2
|
||||||
|
2022-12-02 21:11:43.412 +03:00 [INF] Переключение на карту 2
|
||||||
|
2022-12-02 21:11:43.412 +03:00 [INF] Добавлена карта: 2
|
||||||
|
2022-12-02 21:11:45.214 +03:00 [INF] Переключение на карту 2
|
||||||
|
2022-12-02 21:11:45.214 +03:00 [INF] Добавлена карта: 2
|
||||||
|
2022-12-02 21:11:47.256 +03:00 [INF] Переключение на карту 2
|
||||||
|
2022-12-02 21:11:47.256 +03:00 [INF] Добавлена карта: 2
|
||||||
|
2022-12-02 21:11:47.612 +03:00 [INF] Переключение на карту 2
|
||||||
|
2022-12-02 21:11:47.612 +03:00 [INF] Добавлена карта: 2
|
||||||
|
2022-12-02 21:11:47.780 +03:00 [INF] Переключение на карту 2
|
||||||
|
2022-12-02 21:11:47.780 +03:00 [INF] Добавлена карта: 2
|
||||||
|
2022-12-02 21:11:47.996 +03:00 [INF] Переключение на карту 2
|
||||||
|
2022-12-02 21:11:47.996 +03:00 [INF] Добавлена карта: 2
|
||||||
|
2022-12-02 21:22:56.692 +03:00 [INF] Переключение на карту 123
|
||||||
|
2022-12-02 21:22:56.708 +03:00 [INF] Добавлена карта: 123
|
||||||
|
2022-12-02 21:23:01.316 +03:00 [INF] На карту 123 добавлен новый самолет
|
||||||
|
2022-12-02 21:23:05.600 +03:00 [INF] Добавление самолета на карту 123 прошло неудачно
|
||||||
|
2022-12-02 21:23:09.917 +03:00 [INF] На карту 123 добавлен новый самолет
|
||||||
|
2022-12-02 21:23:19.050 +03:00 [INF] На карту 123 добавлен новый самолет
|
||||||
|
2022-12-02 21:23:30.002 +03:00 [INF] На карту 123 добавлен новый самолет
|
||||||
|
2022-12-02 21:23:34.691 +03:00 [INF] На карту 123 добавлен новый самолет
|
||||||
|
@ -10,7 +10,43 @@ namespace AirPlaneWithRadar
|
|||||||
{
|
{
|
||||||
public int Compare(IDrawingObject? x, IDrawingObject? y)
|
public int Compare(IDrawingObject? x, IDrawingObject? y)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
if (x == null && y == null)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if (x == null && y != null)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (x != null && y == null)
|
||||||
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
var xPlain = x as DrawingObjectPlane;
|
||||||
|
var yPlain = y as DrawingObjectPlane;
|
||||||
|
if (xPlain == null && yPlain == null)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if (xPlain == null && yPlain != null)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (xPlain != null && yPlain == null)
|
||||||
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
int res = string.Compare(xPlain.GetPlane.Plain.BodyColor.Name, yPlain.GetPlane.Plain.BodyColor.Name);
|
||||||
|
if (res != 0)
|
||||||
|
{
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
var speedCompare = xPlain.GetPlane.Plain.Speed.CompareTo(yPlain.GetPlane.Plain.Speed);
|
||||||
|
if (speedCompare != 0)
|
||||||
|
{
|
||||||
|
return speedCompare;
|
||||||
|
}
|
||||||
|
return xPlain.GetPlane.Plain.Weight.CompareTo(yPlain.GetPlane.Plain.Weight);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -20,13 +20,13 @@ namespace AirPlaneWithRadar
|
|||||||
}
|
}
|
||||||
public int Insert(T plain)
|
public int Insert(T plain)
|
||||||
{
|
{
|
||||||
|
if (_places.Contains(plain)) { return -1; }
|
||||||
Insert(plain, 0);
|
Insert(plain, 0);
|
||||||
return _places.Count;
|
return _places.Count;
|
||||||
}
|
}
|
||||||
public int Insert(T plain, int position)
|
public int Insert(T plain, int position)
|
||||||
{
|
{
|
||||||
/////
|
|
||||||
if (_places.Count == _maxCount)
|
if (_places.Count == _maxCount)
|
||||||
{
|
{
|
||||||
throw new StorageOverFullException(_maxCount);
|
throw new StorageOverFullException(_maxCount);
|
||||||
|
Loading…
Reference in New Issue
Block a user