PIbd-23-Kondratev-N.D.-Gaso.../GasolineTanker/ProjectGasolineTanker/Generic/TruckGenericCollection.cs

108 lines
3.6 KiB
C#
Raw Normal View History

2024-10-03 01:40:53 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ProjectGasolineTanker.Drawings;
using ProjectGasolineTanker.MovementStratg;
namespace ProjectGasolineTanker.Generic
{
internal class TruckGenericCollection<T, U>
where T : DrawingTruck
where U : IMoveableObject
{
private readonly int _pictureWidth;
private readonly int _pictureHeight;
2024-10-03 01:44:06 +04:00
// Размер занимаемого места
2024-10-03 01:40:53 +04:00
private readonly int _placeSizeWidth = 200;
private readonly int _placeSizeHeight = 80;
2024-10-03 01:44:06 +04:00
// коллекция
2024-10-03 01:40:53 +04:00
private readonly SetGeneric<T> _collection;
public TruckGenericCollection(int picWidth, int picHeight)
{
int width = picWidth / _placeSizeWidth;
int height = picHeight / _placeSizeHeight;
_pictureWidth = picWidth;
_pictureHeight = picHeight;
_collection = new SetGeneric<T>(width * height);
}
public static int operator +(TruckGenericCollection<T, U> collect, T? obj)
{
if (obj != null)
{
return collect._collection.Insert(obj);
}
return -1;
}
public static bool operator -(TruckGenericCollection<T, U> collect, int pos)
{
2024-10-03 01:42:04 +04:00
if (collect._collection.GetTruck(pos) == null)
2024-10-03 01:40:53 +04:00
{
return false;
}
return collect?._collection.Remove(pos) ?? false;
}
2024-10-03 01:44:06 +04:00
// получение объектов коллекции
public IEnumerable<T?> GetTruck => _collection.GetTruck();
// получение объекта IMoveableObjecr
2024-10-03 01:40:53 +04:00
public U? GetU(int pos)
{
2024-10-03 01:42:04 +04:00
return (U?)_collection[pos]?.GetMoveableObject;
2024-10-03 01:40:53 +04:00
}
2024-10-03 01:44:06 +04:00
// вывод всего набора
2024-10-03 01:40:53 +04:00
public Bitmap ShowTruck()
{
Bitmap bmp = new(_pictureWidth, _pictureHeight);
Graphics gr = Graphics.FromImage(bmp);
DrawBackground(gr);
DrawObjects(gr);
return bmp;
}
2024-10-03 01:44:06 +04:00
// прорисовка фона
2024-10-03 01:40:53 +04:00
private void DrawBackground(Graphics gr)
{
Pen pen = new(Color.Black, 3);
for (int i = 0; i < _pictureWidth / _placeSizeWidth; ++i)
{
for (int j = 0; j < _pictureHeight / _placeSizeHeight + 1; ++j)
{
2024-10-03 01:44:06 +04:00
// линия разметки
2024-10-03 01:40:53 +04:00
gr.DrawLine(pen, i * _placeSizeWidth, j * _placeSizeHeight, i * _placeSizeWidth + _placeSizeWidth / 2, j * _placeSizeHeight);
gr.DrawLine(pen, i * _placeSizeWidth, 0, i * _placeSizeWidth, _pictureHeight / _placeSizeHeight * _placeSizeHeight);
}
}
}
private void DrawObjects(Graphics g)
{
2024-10-03 01:44:06 +04:00
// координаты
2024-10-03 01:40:53 +04:00
int x = 0;
2024-10-03 01:42:04 +04:00
int y = _pictureHeight / _placeSizeHeight - 1;
2024-10-03 01:40:53 +04:00
2024-10-03 01:42:04 +04:00
foreach (var truck in _collection.GetTruck())
2024-10-03 01:40:53 +04:00
{
2024-10-03 01:42:04 +04:00
if (truck != null)
2024-10-03 01:40:53 +04:00
{
2024-10-03 01:44:06 +04:00
// TODO получение объекта
2024-10-03 01:42:04 +04:00
if (x > _pictureWidth / _placeSizeWidth - 1)
2024-10-03 01:40:53 +04:00
{
2024-10-03 01:42:04 +04:00
x = 0;
--y;
2024-10-03 01:40:53 +04:00
}
2024-10-03 01:44:06 +04:00
// TODO установка позиции
2024-10-03 01:42:04 +04:00
truck.SetPosition(_placeSizeWidth * x, _placeSizeHeight * y);
2024-10-03 01:44:06 +04:00
// TODO прорисовка объекта
2024-10-03 01:42:04 +04:00
truck.DrawTransport(g);
++x;
2024-10-03 01:40:53 +04:00
}
}
}
}
}