2024-04-24 09:28:37 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace lab1.Entities;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Класс-сущность "Гусеничная машина"
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class EntityTrackedVehicle
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Скорость
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Speed { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Вес
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double Weight { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Основной цвет
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Color BodyColor { get; private set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Шаг перемещения истребителя
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double Step => Speed * 100 / Weight;
|
2024-08-29 19:32:46 +04:00
|
|
|
|
public void setBodyColor(Color color)
|
|
|
|
|
{
|
|
|
|
|
BodyColor = color;
|
|
|
|
|
}
|
2024-04-24 09:28:37 +04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Конструктор сущности
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="speed">Скорость</param>
|
|
|
|
|
/// <param name="weight">>Вес истребителя</param>
|
|
|
|
|
/// <param name="bodyColor">Основной цвет</param>
|
|
|
|
|
public EntityTrackedVehicle(int speed, double weight, Color bodyColor)
|
|
|
|
|
{
|
|
|
|
|
Speed = speed;
|
|
|
|
|
Weight = weight;
|
|
|
|
|
BodyColor = bodyColor;
|
2024-10-22 13:37:29 +04:00
|
|
|
|
|
|
|
|
|
|
2024-04-24 09:28:37 +04:00
|
|
|
|
}
|
2024-08-29 19:32:46 +04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Получение строк со значениями свойств объекта класса-сущности
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public virtual string[] GetStringRepresentation()
|
|
|
|
|
{
|
|
|
|
|
return new[] { nameof(EntityTrackedVehicle), Speed.ToString(), Weight.ToString(), BodyColor.Name };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Создание объекта из массива строк
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="strs"></param>
|
|
|
|
|
/// <returns></returns>
|
2024-10-22 13:37:29 +04:00
|
|
|
|
public static EntityTrackedVehicle? CreateEntityBaseStormtrooper(string[] strs)
|
2024-08-29 19:32:46 +04:00
|
|
|
|
{
|
|
|
|
|
if (strs.Length != 4 || strs[0] != nameof(EntityTrackedVehicle))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return new EntityTrackedVehicle(Convert.ToInt32(strs[1]), Convert.ToDouble(strs[2]), Color.FromName(strs[3]));
|
|
|
|
|
}
|
2024-10-22 13:37:29 +04:00
|
|
|
|
|
|
|
|
|
internal static EntityTrackedVehicle? CreateEntityTrackedVehicle(string[] strs)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
2024-04-24 09:28:37 +04:00
|
|
|
|
}
|