Переход на конструкторы

This commit is contained in:
Danil Kargin 2022-10-05 22:53:56 +04:00
parent 6eb0ae0dc9
commit 91d21e3081
3 changed files with 4 additions and 6 deletions

View File

@ -45,10 +45,9 @@ namespace AirFighter
/// <param name="speed">Скорость</param>
/// <param name="weight">Вес самолета</param>
/// <param name="bodyColor">Цвет кузова</param>
public void Init(int speed, float weight, Color bodyColor)
public DrawningAirFighter(int speed, float weight, Color bodyColor)
{
AirFighter = new EntityAirFighter();
AirFighter.Init(speed, weight, bodyColor);
AirFighter = new EntityAirFighter(speed, weight, bodyColor);
}
/// <summary>
/// Установка позиции самолета

View File

@ -34,7 +34,7 @@ namespace AirFighter
/// <param name="weight"></param>
/// <param name="bodyColor"></param>
/// <returns></returns>
public void Init(int speed, float weight, Color bodyColor)
public EntityAirFighter(int speed, float weight, Color bodyColor)
{
Random rnd = new();
Speed = speed <= 0 ? rnd.Next(50, 150) : speed;

View File

@ -24,9 +24,8 @@ namespace AirFighter
/// <param name="e"></param>
private void ButtonCreate_Click(object sender, EventArgs e)
{
_airFighter = new DrawningAirFighter();
Random rnd = new Random();
_airFighter.Init(rnd.Next(200, 500), rnd.Next(2000, 5000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)));
_airFighter = new DrawningAirFighter(rnd.Next(200, 500), rnd.Next(2000, 5000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)));
_airFighter.SetPosition(rnd.Next(10, 100), rnd.Next(10, 100), pictureBoxAirFighter.Width, pictureBoxAirFighter.Height);
toolStripStatusLabelSpeed.Text = $"Ñêîðîñòü: {_airFighter.AirFighter?.Speed}";
toolStripStatusLabelWeight.Text = $"Âåñ: {_airFighter.AirFighter?.Weight}";