132 lines
4.7 KiB
C#
132 lines
4.7 KiB
C#
using WarmlyLocomotive.DrawningObjects;
|
||
using WarmlyLocomotive.MovementStrategy;
|
||
namespace WarmlyLocomotive.Generics
|
||
{
|
||
internal class WarmlyLocomotivesGenericCollection<T, U>
|
||
where T : DrawningWarmlyLocomotive
|
||
where U : IMoveableObject
|
||
{
|
||
/// <summary>
|
||
/// Ширина окна прорисовки
|
||
/// </summary>
|
||
private readonly int _pictureWidth;
|
||
/// <summary>
|
||
/// Высота окна прорисовки
|
||
/// </summary>
|
||
private readonly int _pictureHeight;
|
||
/// <summary>
|
||
/// Размер занимаемого объектом места (ширина)
|
||
/// </summary>
|
||
private readonly int _placeSizeWidth = 270;
|
||
/// <summary>
|
||
/// Размер занимаемого объектом места (высота)
|
||
/// </summary>
|
||
private readonly int _placeSizeHeight = 100;
|
||
/// <summary>
|
||
/// Набор объектов
|
||
/// </summary>
|
||
private readonly SetGeneric<T> _collection;
|
||
/// <summary>
|
||
/// Конструктор
|
||
/// </summary>
|
||
/// <param name="picWidth"></param>
|
||
/// <param name="picHeight"></param>
|
||
public WarmlyLocomotivesGenericCollection(int picWidth, int picHeight)
|
||
{
|
||
int width = picWidth / _placeSizeWidth;
|
||
int height = picHeight / _placeSizeHeight;
|
||
_pictureWidth = picWidth;
|
||
_pictureHeight = picHeight;
|
||
_collection = new SetGeneric<T>(width * height);
|
||
}
|
||
/// <summary>
|
||
/// Перегрузка оператора сложения
|
||
/// </summary>
|
||
/// <param name="collect"></param>
|
||
/// <param name="obj"></param>
|
||
/// <returns></returns>
|
||
public static bool operator +(WarmlyLocomotivesGenericCollection<T, U> collect, T? obj)
|
||
{
|
||
if (obj == null)
|
||
{
|
||
return false;
|
||
}
|
||
return (bool)collect?._collection.Insert(obj);
|
||
}
|
||
/// <summary>
|
||
/// Перегрузка оператора вычитания
|
||
/// </summary>
|
||
/// <param name="collect"></param>
|
||
/// <param name="pos"></param>
|
||
/// <returns></returns>
|
||
public static bool operator -(WarmlyLocomotivesGenericCollection<T, U> collect, int pos)
|
||
{
|
||
T? obj = collect._collection[pos];
|
||
if (obj != null)
|
||
{
|
||
collect._collection.Remove(pos);
|
||
}
|
||
return false;
|
||
}
|
||
/// <summary>
|
||
/// Получение объекта IMoveableObject
|
||
/// </summary>
|
||
/// <param name="pos"></param>
|
||
/// <returns></returns>
|
||
public U? GetU(int pos)
|
||
{
|
||
return (U?)_collection[pos]?.GetMoveableObject;
|
||
}
|
||
/// <summary>
|
||
/// Вывод всего набора объектов
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
public Bitmap ShowWarmlyLocomotives()
|
||
{
|
||
Bitmap bmp = new(_pictureWidth, _pictureHeight);
|
||
Graphics gr = Graphics.FromImage(bmp);
|
||
DrawBackground(gr);
|
||
DrawObjects(gr);
|
||
return bmp;
|
||
}
|
||
/// <summary>
|
||
/// Метод отрисовки фона
|
||
/// </summary>
|
||
/// <param name="g"></param>
|
||
private void DrawBackground(Graphics g)
|
||
{
|
||
Pen pen = new(Color.Black, 3);
|
||
for (int i = 0; i < _pictureWidth / _placeSizeWidth; i++)
|
||
{
|
||
for (int j = 0; j < _pictureHeight / _placeSizeHeight +
|
||
1; ++j)
|
||
{
|
||
g.DrawLine(pen, i * _placeSizeWidth, j *
|
||
_placeSizeHeight, i * _placeSizeWidth + _placeSizeWidth / 2, j *
|
||
_placeSizeHeight);
|
||
}
|
||
g.DrawLine(pen, i * _placeSizeWidth, 0, i *
|
||
_placeSizeWidth, _pictureHeight / _placeSizeHeight * _placeSizeHeight);
|
||
}
|
||
}
|
||
/// <summary>
|
||
/// Метод прорисовки объектов
|
||
/// </summary>
|
||
/// <param name="g"></param>
|
||
private void DrawObjects(Graphics g)
|
||
{
|
||
int i = 0;
|
||
int numPlacesInRow = _pictureWidth / _placeSizeWidth;
|
||
foreach (var warmlylocomotive in _collection.GetWarmlyLocomotives())
|
||
{
|
||
if (warmlylocomotive != null)
|
||
{
|
||
warmlylocomotive.SetPosition((i % numPlacesInRow) * _placeSizeWidth + _placeSizeWidth / 20, _placeSizeHeight * (i / numPlacesInRow) + _placeSizeHeight / 10);
|
||
warmlylocomotive.DrawTransport(g);
|
||
}
|
||
i++;
|
||
}
|
||
}
|
||
}
|
||
}
|