2022-11-13 20:39:23 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
|
|
namespace WinFormsApp1
|
|
|
|
|
{
|
2022-11-28 22:39:41 +04:00
|
|
|
|
public class EntityTractor
|
2022-11-13 20:39:23 +04:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Скорость
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Speed { get; private set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Вес
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float Weight { get; private set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Цвет кузова
|
|
|
|
|
/// </summary>
|
2022-12-12 23:38:47 +04:00
|
|
|
|
public Color BodyColor { get; set; }
|
2022-11-13 20:39:23 +04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Шаг перемещения автомобиля
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float Step => Speed * 100 / Weight;
|
|
|
|
|
/// <summary>
|
2022-11-14 21:25:33 +04:00
|
|
|
|
|
2022-11-13 21:10:48 +04:00
|
|
|
|
public EntityTractor(int speed, float weight, Color bodyColor)
|
2022-11-13 20:39:23 +04:00
|
|
|
|
{
|
|
|
|
|
Random rnd = new Random();
|
|
|
|
|
Speed = speed <= 0 ? rnd.Next(50, 150) : speed;
|
|
|
|
|
Weight = weight <= 0 ? rnd.Next(40, 70) : weight;
|
|
|
|
|
BodyColor = bodyColor;
|
|
|
|
|
}
|
2022-12-13 01:49:12 +04:00
|
|
|
|
|
|
|
|
|
public static EntityTractor Creator(string data)
|
|
|
|
|
{
|
|
|
|
|
string[] strs = data.Split(':');
|
|
|
|
|
return new EntityTractor(Convert.ToInt32(strs[0]),
|
|
|
|
|
Convert.ToInt32(strs[1]), Color.FromName(strs[2]));
|
|
|
|
|
}
|
2022-11-13 20:39:23 +04:00
|
|
|
|
}
|
|
|
|
|
}
|