using WarmlyShip.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WarmlyShip.DrawningObjects { /// /// Расширение для класса EntityShip /// public static class ExtentionDrawningShip { /// /// Создание объекта из строки /// /// Строка с данными для создания объекта /// Разделитель даннных /// Ширина /// Высота /// Объект public static DrawningShip? CreateDrawningShip(this string info, char separatorForObject, int width, int height) { string[] strs = info.Split(separatorForObject); if (strs.Length == 3) { return new DrawningShip(Convert.ToInt32(strs[0]), Convert.ToInt32(strs[1]), Color.FromName(strs[2]), width, height); } if (strs.Length == 6) { return new DrawningWarmlyShip(Convert.ToInt32(strs[0]), Convert.ToInt32(strs[1]), Color.FromName(strs[2]), Color.FromName(strs[3]), Convert.ToBoolean(strs[4]), Convert.ToBoolean(strs[5]), width, height); } return null; } /// /// Получение данных для сохранения в файл /// /// Сохраняемый объект /// Разделитель даннных /// Строка с данными по объекту public static string GetDataForSave(this DrawningShip drawningship, char separatorForObject) { var ship = drawningship.EntityShip; if (ship == null) { return string.Empty; } var str = $"{ship.Speed}{separatorForObject}{ship.Weight}{separatorForObject}{ship.BodyColor.Name}"; if (ship is not EntityWarmlyShip warmlyShip) { return str; } return $"{str}{separatorForObject}{warmlyShip.AdditionalColor.Name}{separatorForObject}{warmlyShip.Pipe}" + $"{separatorForObject}{warmlyShip.FuelCompartment}"; } } }