ISEbd-22 Alimova M.S. Lab Work 02 #2

Closed
malimova wants to merge 21 commits from Lab2 into Lab1
4 changed files with 31 additions and 4 deletions
Showing only changes of commit 21f5c7ac1b - Show all commits

View File

@ -24,7 +24,7 @@ namespace AirBomber
public DrawningAirBomber(int speed, double weight, Color bodyColor, Color
additionalColor, bool bombs, Color bombsColor, bool fuelTanks, int width, int height) :
base(speed, weight, bodyColor, width, height, 110, 60)
base(speed, weight, bodyColor, width, height, 160, 118)
{
if (EntityAirPlane != null)
{

View File

@ -32,11 +32,11 @@ namespace AirBomber
/// <summary>
/// Ширина прорисовки самолета
/// </summary>
protected readonly int _airPlaneWidth = 100;
protected readonly int _airPlaneWidth = 150;
/// <summary>
/// Высота прорисовки самолета
/// </summary>
protected readonly int _airPlaneHeight = 55;
protected readonly int _airPlaneHeight = 118;
/// <summary>
/// Конструктор
/// </summary>

View File

@ -81,7 +81,7 @@
switch
{
0 => new MoveToCenter(),
//1 => new MoveToBorder(),
1 => new MoveToBorder(),
_ => null,
};
if (_abstractStrategy == null)

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirBomber
{
public class MoveToBorder : AbstractStrategy
{
protected override bool IsTargetDestinaion()
{
var objParams = GetObjectParameters;
if (objParams == null) return false;
return objParams.RightBorder >= FieldWidth - GetStep() && objParams.DownBorder >= FieldHeight - GetStep();
}
protected override void MoveToTarget()
{
var objParams = GetObjectParameters;
if (objParams == null) return;
if (objParams.RightBorder < FieldWidth - GetStep()) MoveRight();
}
}
}