Первая лабораторная работа.

This commit is contained in:
Артём Алейкин 2022-09-20 17:22:22 +04:00
parent 0caa128262
commit 372c0be8d8
3 changed files with 123 additions and 51 deletions

View File

@ -74,11 +74,10 @@ namespace AirBomber
return; return;
} }
Pen pen = new(Color.Black);
SolidBrush brush = new SolidBrush(AirBomber?.BodyColor ?? Color.Cyan); SolidBrush brush = new SolidBrush(AirBomber?.BodyColor ?? Color.Cyan);
g.FillPolygon(brush, new[] { g.FillPolygon(brush, new[] {
new Point((int)(_startPosX + _airBomberWidth), (int)(_startPosY + _airBomberHeight / 2 - 20)), new Point((int)(_startPosX + _airBomberWidth), (int)(_startPosY + _airBomberHeight / 2 - 20)),
new Point((int)(_startPosX + _airBomberWidth), (int)(_startPosY + _airBomberHeight / 2 + 20)), new Point((int)(_startPosX + _airBomberWidth), (int)(_startPosY + _airBomberHeight / 2 + 20)),
new Point((int)(_startPosX + _airBomberWidth - 10), (int)(_startPosY + _airBomberHeight / 2 + 10)), new Point((int)(_startPosX + _airBomberWidth - 10), (int)(_startPosY + _airBomberHeight / 2 + 10)),
new Point((int)(_startPosX + _airBomberWidth - 10), (int)(_startPosY + _airBomberHeight / 2 - 10)) new Point((int)(_startPosX + _airBomberWidth - 10), (int)(_startPosY + _airBomberHeight / 2 - 10))
@ -91,6 +90,20 @@ namespace AirBomber
new Point((int)(_startPosX + _airBomberWidth / 2 + 10), (int)(_startPosY + _airBomberHeight)), new Point((int)(_startPosX + _airBomberWidth / 2 + 10), (int)(_startPosY + _airBomberHeight)),
new Point((int)(_startPosX + _airBomberWidth / 2), (int)(_startPosY + _airBomberHeight)) new Point((int)(_startPosX + _airBomberWidth / 2), (int)(_startPosY + _airBomberHeight))
}); });
g.FillPolygon(brush, new[] {
new Point((int)(_startPosX + 20), (int)(_startPosY + _airBomberHeight / 2 - 5)),
new Point((int)(_startPosX + _airBomberWidth), (int)(_startPosY + _airBomberHeight / 2 - 5)),
new Point((int)(_startPosX + _airBomberWidth), (int)(_startPosY + _airBomberHeight / 2 + 5)),
new Point((int)(_startPosX + 20), (int)(_startPosY + _airBomberHeight / 2 + 5)),
});
g.FillPolygon(brush, new[] {
new Point((int)(_startPosX), (int)(_startPosY + _airBomberHeight / 2)),
new Point((int)(_startPosX + 20), (int)(_startPosY + _airBomberHeight / 2 - 5)),
new Point((int)(_startPosX + 20), (int)(_startPosY + _airBomberHeight / 2 + 5)),
});
} }
public void ChangeBorders(int width, int height) public void ChangeBorders(int width, int height)

View File

@ -34,10 +34,10 @@
this.toolStripStatusLabelWeight = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabelWeight = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabelBodyColor = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabelBodyColor = new System.Windows.Forms.ToolStripStatusLabel();
this.buttonCreate = new System.Windows.Forms.Button(); this.buttonCreate = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button(); this.buttonUp = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button(); this.buttonLeft = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button(); this.buttonDown = new System.Windows.Forms.Button();
this.button5 = new System.Windows.Forms.Button(); this.buttonRight = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxAirBomber)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxAirBomber)).BeginInit();
this.statusStrip.SuspendLayout(); this.statusStrip.SuspendLayout();
this.SuspendLayout(); this.SuspendLayout();
@ -47,9 +47,10 @@
this.pictureBoxAirBomber.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBoxAirBomber.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBoxAirBomber.Location = new System.Drawing.Point(0, 0); this.pictureBoxAirBomber.Location = new System.Drawing.Point(0, 0);
this.pictureBoxAirBomber.Name = "pictureBoxAirBomber"; this.pictureBoxAirBomber.Name = "pictureBoxAirBomber";
this.pictureBoxAirBomber.Size = new System.Drawing.Size(800, 450); this.pictureBoxAirBomber.Size = new System.Drawing.Size(874, 515);
this.pictureBoxAirBomber.TabIndex = 0; this.pictureBoxAirBomber.TabIndex = 0;
this.pictureBoxAirBomber.TabStop = false; this.pictureBoxAirBomber.TabStop = false;
this.pictureBoxAirBomber.Resize += new System.EventHandler(this.PictureBoxAirBomber_Resize);
// //
// statusStrip // statusStrip
// //
@ -57,9 +58,9 @@
this.toolStripStatusLabelSpeed, this.toolStripStatusLabelSpeed,
this.toolStripStatusLabelWeight, this.toolStripStatusLabelWeight,
this.toolStripStatusLabelBodyColor}); this.toolStripStatusLabelBodyColor});
this.statusStrip.Location = new System.Drawing.Point(0, 428); this.statusStrip.Location = new System.Drawing.Point(0, 493);
this.statusStrip.Name = "statusStrip"; this.statusStrip.Name = "statusStrip";
this.statusStrip.Size = new System.Drawing.Size(800, 22); this.statusStrip.Size = new System.Drawing.Size(874, 22);
this.statusStrip.TabIndex = 1; this.statusStrip.TabIndex = 1;
// //
// toolStripStatusLabelSpeed // toolStripStatusLabelSpeed
@ -82,62 +83,72 @@
// //
// buttonCreate // buttonCreate
// //
this.buttonCreate.Location = new System.Drawing.Point(12, 390); this.buttonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.buttonCreate.Location = new System.Drawing.Point(12, 455);
this.buttonCreate.Name = "buttonCreate"; this.buttonCreate.Name = "buttonCreate";
this.buttonCreate.Size = new System.Drawing.Size(79, 35); this.buttonCreate.Size = new System.Drawing.Size(79, 35);
this.buttonCreate.TabIndex = 2; this.buttonCreate.TabIndex = 2;
this.buttonCreate.Text = "Создать"; this.buttonCreate.Text = "Создать";
this.buttonCreate.UseVisualStyleBackColor = true; this.buttonCreate.UseVisualStyleBackColor = true;
this.buttonCreate.Click += new System.EventHandler(this.ButtonCreate_Click);
// //
// button2 // buttonUp
// //
this.button2.BackgroundImage = global::AirBomber.Properties.Resources.ArrowUp; this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.buttonUp.BackgroundImage = global::AirBomber.Properties.Resources.ArrowUp;
this.button2.Location = new System.Drawing.Point(722, 367); this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.button2.Name = "button2"; this.buttonUp.Location = new System.Drawing.Point(796, 432);
this.button2.Size = new System.Drawing.Size(30, 30); this.buttonUp.Name = "buttonUp";
this.button2.TabIndex = 3; this.buttonUp.Size = new System.Drawing.Size(30, 30);
this.button2.UseVisualStyleBackColor = true; this.buttonUp.TabIndex = 3;
this.buttonUp.UseVisualStyleBackColor = true;
this.buttonUp.Click += new System.EventHandler(this.ButtonCreate_Move);
// //
// button3 // buttonLeft
// //
this.button3.BackgroundImage = global::AirBomber.Properties.Resources.ArrowLeft; this.buttonLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.buttonLeft.BackgroundImage = global::AirBomber.Properties.Resources.ArrowLeft;
this.button3.Location = new System.Drawing.Point(686, 403); this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.button3.Name = "button3"; this.buttonLeft.Location = new System.Drawing.Point(760, 468);
this.button3.Size = new System.Drawing.Size(30, 30); this.buttonLeft.Name = "buttonLeft";
this.button3.TabIndex = 4; this.buttonLeft.Size = new System.Drawing.Size(30, 30);
this.button3.UseVisualStyleBackColor = true; this.buttonLeft.TabIndex = 4;
this.buttonLeft.UseVisualStyleBackColor = true;
this.buttonLeft.Click += new System.EventHandler(this.ButtonCreate_Move);
// //
// button4 // buttonDown
// //
this.button4.BackgroundImage = global::AirBomber.Properties.Resources.ArrowDown; this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.buttonDown.BackgroundImage = global::AirBomber.Properties.Resources.ArrowDown;
this.button4.Location = new System.Drawing.Point(722, 403); this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.button4.Name = "button4"; this.buttonDown.Location = new System.Drawing.Point(796, 468);
this.button4.Size = new System.Drawing.Size(30, 30); this.buttonDown.Name = "buttonDown";
this.button4.TabIndex = 5; this.buttonDown.Size = new System.Drawing.Size(30, 30);
this.button4.UseVisualStyleBackColor = true; this.buttonDown.TabIndex = 5;
this.buttonDown.UseVisualStyleBackColor = true;
this.buttonDown.Click += new System.EventHandler(this.ButtonCreate_Move);
// //
// button5 // buttonRight
// //
this.button5.BackgroundImage = global::AirBomber.Properties.Resources.ArrowRight; this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.buttonRight.BackgroundImage = global::AirBomber.Properties.Resources.ArrowRight;
this.button5.Location = new System.Drawing.Point(758, 403); this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.button5.Name = "button5"; this.buttonRight.Location = new System.Drawing.Point(832, 468);
this.button5.Size = new System.Drawing.Size(30, 30); this.buttonRight.Name = "buttonRight";
this.button5.TabIndex = 6; this.buttonRight.Size = new System.Drawing.Size(30, 30);
this.button5.UseVisualStyleBackColor = true; this.buttonRight.TabIndex = 6;
this.buttonRight.UseVisualStyleBackColor = true;
this.buttonRight.Click += new System.EventHandler(this.ButtonCreate_Move);
// //
// FormAirBomber // FormAirBomber
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450); this.ClientSize = new System.Drawing.Size(874, 515);
this.Controls.Add(this.button5); this.Controls.Add(this.buttonRight);
this.Controls.Add(this.button4); this.Controls.Add(this.buttonDown);
this.Controls.Add(this.button3); this.Controls.Add(this.buttonLeft);
this.Controls.Add(this.button2); this.Controls.Add(this.buttonUp);
this.Controls.Add(this.buttonCreate); this.Controls.Add(this.buttonCreate);
this.Controls.Add(this.statusStrip); this.Controls.Add(this.statusStrip);
this.Controls.Add(this.pictureBoxAirBomber); this.Controls.Add(this.pictureBoxAirBomber);
@ -159,9 +170,9 @@
private ToolStripStatusLabel toolStripStatusLabelWeight; private ToolStripStatusLabel toolStripStatusLabelWeight;
private ToolStripStatusLabel toolStripStatusLabelBodyColor; private ToolStripStatusLabel toolStripStatusLabelBodyColor;
private Button buttonCreate; private Button buttonCreate;
private Button button2; private Button buttonUp;
private Button button3; private Button buttonLeft;
private Button button4; private Button buttonDown;
private Button button5; private Button buttonRight;
} }
} }

View File

@ -2,9 +2,57 @@ namespace AirBomber
{ {
public partial class FormAirBomber : Form public partial class FormAirBomber : Form
{ {
private DrawningBomber _airBomber;
public FormAirBomber() public FormAirBomber()
{ {
InitializeComponent(); InitializeComponent();
} }
private void Draw()
{
Bitmap bmp = new(pictureBoxAirBomber.Width, pictureBoxAirBomber.Height);
Graphics gr = Graphics.FromImage(bmp);
_airBomber?.DrawTransport(gr);
pictureBoxAirBomber.Image = bmp;
}
private void ButtonCreate_Click(object sender, EventArgs e)
{
Random rnd = new();
_airBomber = new DrawningBomber();
_airBomber.Init(rnd.Next(100, 300), rnd.Next(1000, 2000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)));
_airBomber.SetPosition(rnd.Next(10, 100), rnd.Next(10, 100), pictureBoxAirBomber.Width, pictureBoxAirBomber.Height);
toolStripStatusLabelSpeed.Text = $"Ñêîðîñòü: {_airBomber.AirBomber.Speed}";
toolStripStatusLabelWeight.Text = $"Âåñ: {_airBomber.AirBomber.Weight}";
toolStripStatusLabelBodyColor.Text = $"Öâåò: {_airBomber.AirBomber.BodyColor}";
Draw();
}
private void ButtonCreate_Move(object sender, EventArgs e)
{
string name = ((Button)sender)?.Name ?? string.Empty;
switch(name)
{
case "buttonUp":
_airBomber?.MoveTransport(Direction.Up);
break;
case "buttonDown":
_airBomber?.MoveTransport(Direction.Down);
break;
case "buttonLeft":
_airBomber?.MoveTransport(Direction.Left);
break;
case "buttonRight":
_airBomber?.MoveTransport(Direction.Right);
break;
}
Draw();
}
private void PictureBoxAirBomber_Resize(object sender, EventArgs e)
{
_airBomber?.ChangeBorders(pictureBoxAirBomber.Width, pictureBoxAirBomber.Height);
Draw();
}
} }
} }