Готовая 4 лаба
This commit is contained in:
parent
b906b3f880
commit
431f46b2bb
@ -31,6 +31,8 @@ namespace Tank.Generics
|
|||||||
{
|
{
|
||||||
if (position < 0 || position > _maxCount)
|
if (position < 0 || position > _maxCount)
|
||||||
return false;
|
return false;
|
||||||
|
if (Count >= _maxCount)
|
||||||
|
return false;
|
||||||
_places.Insert(0, tank);
|
_places.Insert(0, tank);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -46,7 +48,7 @@ namespace Tank.Generics
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
if (position < 0)
|
if (position < 0 || position > _maxCount)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -54,13 +56,14 @@ namespace Tank.Generics
|
|||||||
}
|
}
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (position < 0)
|
if (position < 0 || position > _maxCount)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_places[position] = value;
|
_places[position] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public IEnumerable<T?> GetTanks(int? maxTanks = null)
|
public IEnumerable<T?> GetTanks(int? maxTanks = null)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < _places.Count; ++i)
|
for (int i = 0; i < _places.Count; ++i)
|
||||||
|
@ -6,6 +6,7 @@ using System.Threading.Tasks;
|
|||||||
using Tank.Generics;
|
using Tank.Generics;
|
||||||
using Tank.DrawingObjects;
|
using Tank.DrawingObjects;
|
||||||
using Tank.MovementStrategy;
|
using Tank.MovementStrategy;
|
||||||
|
using System.Globalization;
|
||||||
|
|
||||||
namespace Tank.Generics
|
namespace Tank.Generics
|
||||||
{
|
{
|
||||||
@ -84,5 +85,6 @@ namespace Tank.Generics
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user