Compare commits

...

23 Commits

Author SHA1 Message Date
sqdselo
c4ee67ab56 Разрешены конфликты 2024-05-05 14:09:36 +04:00
sqdselo
c4546990f8 борюсь с конфликтами 2024-05-05 13:53:24 +04:00
sqdselo
8d7324d52e Разрешены конфликты 2024-05-05 13:23:10 +04:00
sqdselo
f51c2c348f Борюсь с конфликтами 2024-05-05 13:08:21 +04:00
sqdselo
08c1734614 Готовая лаба 4 2024-05-05 00:20:13 +04:00
sqdselo
ad565c92f3 Готовая лаба3 2024-05-04 20:15:42 +04:00
sqdselo
f6f705c9f2 Готовая лабораторная работа 5 2024-05-04 16:00:29 +04:00
sqdselo
7f4d7dfdce Готовая лабораторная работа 4 2024-05-04 15:59:20 +04:00
04c45def82 Готовая лабораторная работа 5 2024-04-29 12:19:14 +04:00
592fd5bea5 Готовая лабораторная работа 4 2024-04-29 12:00:25 +04:00
sqdselo
21f4acf2d5 Готовая лабораторная 4 2024-04-28 10:26:11 +04:00
sqdselo
0a9f5bcbb6 Готовая лабораторная работа 3 2024-04-28 00:31:52 +04:00
sqdselo
052b9929c1 Готовая 4 лабораторная работа 2024-04-28 00:20:54 +04:00
sqdselo
4de1bca002 Лабораторная 3 финал 2024-04-22 19:48:41 +04:00
sqdselo
f57496c459 доделать 2024-04-22 19:10:26 +04:00
ff1e1066b6 доделаю 2024-04-15 14:25:51 +04:00
5f5f61f51b лабораторная 3 2024-04-15 12:30:38 +04:00
sqdselo
50146d6d1b Лаба4 2024-04-14 21:43:46 +04:00
sqdselo
92f30977af Merge branch 'LabWork03' of http://student.git.athene.tech/sqdselo/pibd-12_Tangatarov.I.A._Base into LabWork03 2024-04-04 14:54:22 +04:00
sqdselo
feea0da22b Лабораторная работa 3 2024-04-04 14:53:50 +04:00
4eeaacde4b Удалить 'Безымянный.png' 2024-04-01 18:39:17 +04:00
sqdselo
681e60fbd6 Лабораторная работка #3 2024-04-01 18:26:17 +04:00
dc01587054 Итоговая лабораторная работа 3 2024-04-01 14:05:34 +04:00
10 changed files with 48 additions and 59 deletions

View File

@ -1,5 +1,4 @@
using HoistingCrane.Drawning;
using System;
namespace HoistingCrane.CollectionGenericObjects
{
public abstract class AbstractCompany
@ -48,7 +47,7 @@ namespace HoistingCrane.CollectionGenericObjects
}
public static DrawningTrackedVehicle operator -(AbstractCompany company, int position)
{
return company.arr?.Remove(position) ?? null;
return company.arr?.Remove(position);
}
public DrawningTrackedVehicle? GetRandomObject()
@ -75,7 +74,6 @@ namespace HoistingCrane.CollectionGenericObjects
}
return bitmap;
}
/// <summary>
/// Вывод заднего фона
/// </summary>

View File

@ -1,7 +1,4 @@
using HoistingCrane.Drawning;
using System;
using System.Collections.Specialized;
namespace HoistingCrane.CollectionGenericObjects
{
public class Garage : AbstractCompany
@ -23,7 +20,6 @@ namespace HoistingCrane.CollectionGenericObjects
}
}
}
protected override void SetObjectsPosition()
{
int countWidth = pictureWidth / _placeSizeWidth;
@ -54,5 +50,6 @@ namespace HoistingCrane.CollectionGenericObjects
}
}
}
}

View File

@ -1,5 +1,4 @@
using System;
namespace HoistingCrane.CollectionGenericObjects
namespace HoistingCrane.CollectionGenericObjects
{
public interface ICollectionGenericObjects<T>
where T: class

View File

@ -1,5 +1,6 @@
using System;
using System.CodeDom.Compiler;
using System.Windows.Forms.VisualStyles;
namespace HoistingCrane.CollectionGenericObjects
{
@ -44,16 +45,11 @@ namespace HoistingCrane.CollectionGenericObjects
public T? Get(int position)
{
// TODO проверка позиции
if (position >= Count || position < 0) return null;
return list[position];
}
public int Insert(T obj)
{
// TODO проверка, что не превышено максимальное количество элементов
// TODO вставка в конец набора
if (Count == _maxCount)
{
return -1;
@ -64,9 +60,6 @@ namespace HoistingCrane.CollectionGenericObjects
public int Insert(T obj, int position)
{
// TODO проверка, что не превышено максимальное количество элементов
// TODO проверка позиции
// TODO вставка по позиции
if (position < 0 || position >= Count || Count == _maxCount)
{
return -1;
@ -76,9 +69,7 @@ namespace HoistingCrane.CollectionGenericObjects
}
public T? Remove(int position)
{
// TODO проверка позиции
// TODO удаление объекта из списка
if (position >= 0 && position < list.Count)
if(position >= 0 && position < list.Count)
{
T? temp = list[position];
list.RemoveAt(position);

View File

@ -61,28 +61,33 @@ namespace HoistingCrane.CollectionGenericObjects
public int Insert(T obj, int position)
{
//todo Проверка позиции
if (position < 0 || position > Count)
if (position < 0 || position >= Count)
{
return -1;
}
if (arr[position] == null)
int copyPos = position - 1;
while (position < Count)
{
arr[position] = obj;
return position;
}
else
{
if (Insert(obj, position + 1) != -1)
{
return position;
}
if (Insert(obj, position - 1) != -1)
if (arr[position] == null)
{
arr[position] = obj;
return position;
}
position++;
}
while (copyPos > 0)
{
if (arr[copyPos] == null)
{
arr[copyPos] = obj;
return copyPos;
}
copyPos--;
}
return -1;
}

View File

@ -41,17 +41,12 @@ namespace HoistingCrane.CollectionGenericObjects
/// <param name="collectionType">тип коллекции</param>
public void AddCollection(string name, CollectionType collectionType)
{
if (!string.IsNullOrEmpty(name) && !Keys.Contains(name))
{
if(collectionType == CollectionType.Massive)
{
dict.Add(name, new MassivGenericObjects<T> ());
}
if(collectionType == CollectionType.List)
{
dict.Add(name, new ListGenericObjects<T> ());
}
}
if (dict.ContainsKey(name)) return;
if (collectionType == CollectionType.None) return;
else if (collectionType == CollectionType.Massive)
dict[name] = new MassivGenericObjects<T>();
else if (collectionType == CollectionType.List)
dict[name] = new ListGenericObjects<T>();
}
/// <summary>
/// Удаление коллекции
@ -59,8 +54,10 @@ namespace HoistingCrane.CollectionGenericObjects
/// <param name="name">Название коллекции</param>
public void DelCollection(string name)
{
if (dict.ContainsKey(name))
if (Keys.Contains(name))
{
dict.Remove(name);
}
}
/// <summary>
/// Доступ к коллекции
@ -71,8 +68,9 @@ namespace HoistingCrane.CollectionGenericObjects
{
get
{
if (name == null || !dict.ContainsKey(name)) { return null; }
return dict[name];
if (dict.ContainsKey(name))
return dict[name];
return null;
}
}
/// <summary>
@ -197,5 +195,6 @@ namespace HoistingCrane.CollectionGenericObjects
_ => null,
};
}
}
}

View File

@ -45,7 +45,6 @@ namespace HoistingCrane
{
_carDelegate += carDelegate;
}
}
/// <summary>
/// Отрисовка объекта
@ -105,6 +104,7 @@ namespace HoistingCrane
{
(sender as Panel)?.DoDragDrop((sender as Panel)?.BackColor ?? Color.White, DragDropEffects.Move | DragDropEffects.Copy);
}
/// <summary>
/// Передача объекта
/// </summary>
@ -118,6 +118,7 @@ namespace HoistingCrane
Close();
}
}
/// <summary>
/// Прорисовка основным цветом
/// </summary>

View File

@ -47,7 +47,6 @@
FieldWidth = width;
FieldHeight = height;
}
/// <summary>
/// Шаг перемещения
/// </summary>
@ -119,7 +118,6 @@
/// </summary>
/// <returns></returns>
protected abstract bool IsTargetDestination();
/// <summary>
/// Попытка перемещения в требуемом направлении
/// </summary>

View File

@ -1,4 +1,6 @@
namespace HoistingCrane.MovementStrategy
using System.Configuration;
namespace HoistingCrane.MovementStrategy
{
public class MoveToBorder : AbstractStrategy
{
@ -12,7 +14,6 @@
return objParams.RightBorder + GetStep() >= FieldWidth && objParams.DownBorder + GetStep() >= FieldHeight;
}
protected override void MoveToTarget()
{
ObjectParameters? objParams = GetObjectParameters;