94 lines
2.6 KiB
C#
94 lines
2.6 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace AirFighter
|
||
{
|
||
internal abstract class AbstractMap
|
||
{
|
||
private IDrawingObject _drawingObject = null;
|
||
protected int[,] _map = null;
|
||
protected int _width;
|
||
protected int _height;
|
||
protected float _size_x;
|
||
protected float _size_y;
|
||
protected readonly Random _random = new();
|
||
protected readonly int _freeRoad = 0;
|
||
protected readonly int _barrier = 1;
|
||
|
||
public Bitmap CreateMap(int width, int height, IDrawingObject drawingObject)
|
||
{
|
||
_width = width;
|
||
_height = height;
|
||
_drawingObject = drawingObject;
|
||
GenerateMap();
|
||
while (!SetObjectOnMap())
|
||
{
|
||
GenerateMap();
|
||
}
|
||
return DrawMapWithObject();
|
||
|
||
}
|
||
|
||
public Bitmap MoveObject(Direction direction)
|
||
{
|
||
//ПРОВЕРКА НА СТОЛКНОВЕНИЕ
|
||
if (true)
|
||
{
|
||
_drawingObject.MoveObject(direction);
|
||
}
|
||
return DrawMapWithObject();
|
||
}
|
||
|
||
private bool SetObjectOnMap()
|
||
{
|
||
if (_drawingObject == null || _map == null)
|
||
{
|
||
return false;
|
||
|
||
}
|
||
|
||
int x = _random.Next(0, 10);
|
||
int y = _random.Next(0,10);
|
||
_drawingObject.SetObject(x, y, _width, _height);
|
||
//ПРОВЕРКА ЕСТЬ ЛИ УЖЕ НА ЭТОМ МЕСТЕ ОБЪЕКТ
|
||
return true;
|
||
|
||
}
|
||
|
||
private Bitmap DrawMapWithObject()
|
||
{
|
||
Bitmap bmp = new(_width, _height);
|
||
if (_drawingObject == null || _map == null)
|
||
{
|
||
return bmp;
|
||
}
|
||
Graphics gr = Graphics.FromImage(bmp);
|
||
for (int i = 0; i < _map.GetLength(0); i++)
|
||
{
|
||
for(int j = 0; j < _map.GetLength(1);j++)
|
||
{
|
||
if (_map[i, j] == _freeRoad)
|
||
{
|
||
DrawRoadPart(gr, i, j);
|
||
}
|
||
else if (_map[i, j] == _barrier)
|
||
{
|
||
DrawBarrierPart(gr, i, j);
|
||
}
|
||
}
|
||
}
|
||
_drawingObject.DrawingObject(gr);
|
||
return bmp;
|
||
}
|
||
|
||
protected abstract void GenerateMap();
|
||
|
||
protected abstract void DrawRoadPart(Graphics g, int i, int j);
|
||
|
||
protected abstract void DrawBarrierPart(Graphics g, int i, int j);
|
||
}
|
||
}
|