PIbd-21. Alekseev I.S. Lab work 01. Base #1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "Lab1Base"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Зачтено с понижением балла(ов)
@ -0,0 +59,4 @@
_bomberHeight = bomberheight;
EntityBomber = new EntityBomber();
EntityBomber.Init(speed, weight, bodyColor, additionalColor, bombs, fuelTanks, line);
if ((_bomberWidth >= _pictureWidth) || (_bomberHeight >= _pictureHeight))
Сначала выполняются проверки и только потом, если они пройдены успешно, запоминаются данные
@ -0,0 +61,4 @@
EntityBomber.Init(speed, weight, bodyColor, additionalColor, bombs, fuelTanks, line);
if ((_bomberWidth >= _pictureWidth) || (_bomberHeight >= _pictureHeight))
{
Console.WriteLine("Объект не прошел проверку");
В консоль не пишут в классе с логикой, максимум - в логи
@ -0,0 +76,4 @@
_startPosX = x;
_startPosY = y;
// если выходит за границы, возвращаем на форму
if (_startPosX + _bomberWidth > _pictureWidth)
Не учтены все условия, при которых объект может выйти за границы
@ -10,11 +10,69 @@ using System.Windows.Forms;
Имя файла не соответствует имени класса
Pull request closed