Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 92c6f9dc76 | |||
| 1136a176ea | |||
| 6a441f2fe7 | |||
| 05134ead4f | |||
| 6cfe8083f8 | |||
| e396498be1 | |||
| 3ac1a746a0 | |||
| eb8186c60a | |||
| 915ad90162 |
@@ -14,6 +14,11 @@ namespace AirBomber.Generics
|
|||||||
where T : DrawningBomber
|
where T : DrawningBomber
|
||||||
where U : IMoveableObject
|
where U : IMoveableObject
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Получение объектов коллекции
|
||||||
|
/// </summary>
|
||||||
|
public IEnumerable<T?> GetPlane => _collection.GetPlane();
|
||||||
|
|
||||||
private readonly int _pictureWidth;
|
private readonly int _pictureWidth;
|
||||||
private readonly int _pictureHeight;
|
private readonly int _pictureHeight;
|
||||||
private readonly int _placeSizeWidth = 155;
|
private readonly int _placeSizeWidth = 155;
|
||||||
@@ -38,15 +43,14 @@ namespace AirBomber.Generics
|
|||||||
return collect._collection.Insert(obj);
|
return collect._collection.Insert(obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static bool operator -(BomberGenericCollection<T, U> collect, int
|
public static T? operator -(BomberGenericCollection<T, U> collect, int pos)
|
||||||
pos)
|
|
||||||
{
|
{
|
||||||
T? obj = collect._collection[pos];
|
T? obj = collect._collection[pos];
|
||||||
if (obj == null)
|
if (obj != null)
|
||||||
{
|
{
|
||||||
return false;
|
collect._collection.Remove(pos);
|
||||||
}
|
}
|
||||||
return collect._collection.Remove(pos);
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
public U? GetU(int pos)
|
public U? GetU(int pos)
|
||||||
|
|||||||
@@ -25,6 +25,18 @@ namespace AirBomber.Generics
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private readonly int _pictureHeight;
|
private readonly int _pictureHeight;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Разделитель для записи ключа и значения элемента словаря
|
||||||
|
/// </summary>
|
||||||
|
private static readonly char _separatorForKeyValue = '|';
|
||||||
|
/// <summary>
|
||||||
|
/// Разделитель для записей коллекции данных в файл
|
||||||
|
/// </summary>
|
||||||
|
private readonly char _separatorRecords = ';';
|
||||||
|
/// <summary>
|
||||||
|
/// Разделитель для записи информации по объекту в файл
|
||||||
|
/// </summary>
|
||||||
|
private static readonly char _separatorForObject = ':';
|
||||||
|
/// <summary>
|
||||||
/// Конструктор
|
/// Конструктор
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="pictureWidth"></param>
|
/// <param name="pictureWidth"></param>
|
||||||
@@ -65,5 +77,91 @@ namespace AirBomber.Generics
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
public bool SaveData(string filename)
|
||||||
|
{
|
||||||
|
if (File.Exists(filename))
|
||||||
|
{
|
||||||
|
File.Delete(filename);
|
||||||
|
}
|
||||||
|
StringBuilder data = new();
|
||||||
|
foreach (KeyValuePair<string, BomberGenericCollection<DrawningBomber, DrawningObjectBomber>> record in _bomberStorage)
|
||||||
|
{
|
||||||
|
StringBuilder records = new();
|
||||||
|
foreach (DrawningBomber? elem in record.Value.GetPlane)
|
||||||
|
{
|
||||||
|
records.Append($"{elem?.GetDataForSave(_separatorForObject)}{_separatorRecords}");
|
||||||
|
}
|
||||||
|
data.AppendLine($"{record.Key}{_separatorForKeyValue}{records}");
|
||||||
|
}
|
||||||
|
if (data.Length == 0)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
using (StreamWriter writer = new StreamWriter(filename))
|
||||||
|
{
|
||||||
|
writer.Write($"BomberStorage{Environment.NewLine}{data}");
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Загрузка информации по установкам в хранилище из файла
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="filename">Путь и имя файла</param>
|
||||||
|
/// <returns>true - загрузка прошла успешно, false - ошибка при загрузке данных</returns>
|
||||||
|
public bool LoadData(string filename)
|
||||||
|
{
|
||||||
|
if (!File.Exists(filename))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
using (StreamReader reader = new StreamReader(filename))
|
||||||
|
{
|
||||||
|
string cheker = reader.ReadLine();
|
||||||
|
if (cheker == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!cheker.StartsWith("BomberStorage"))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
_bomberStorage.Clear();
|
||||||
|
string strs;
|
||||||
|
bool firstinit = true;
|
||||||
|
while ((strs = reader.ReadLine()) != null)
|
||||||
|
{
|
||||||
|
if (strs == null && firstinit)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (strs == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
firstinit = false;
|
||||||
|
string name = strs.Split(_separatorForKeyValue)[0];
|
||||||
|
BomberGenericCollection<DrawningBomber, DrawningObjectBomber> collection = new(_pictureWidth, _pictureHeight);
|
||||||
|
foreach (string data in strs.Split(_separatorForKeyValue)[1].Split(_separatorRecords))
|
||||||
|
{
|
||||||
|
DrawningBomber? air =
|
||||||
|
data?.CreateDrawningBomber(_separatorForObject, _pictureWidth, _pictureHeight);
|
||||||
|
if (air != null)
|
||||||
|
{
|
||||||
|
int? result = collection + air;
|
||||||
|
if (result == null || result.Value == -1)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_bomberStorage.Add(name, collection);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -65,5 +65,12 @@ namespace AirBomber.DrawningObjects
|
|||||||
}
|
}
|
||||||
base.DrawBomber(g);
|
base.DrawBomber(g);
|
||||||
}
|
}
|
||||||
|
public void setAddColor(Color color)
|
||||||
|
{
|
||||||
|
if (EntityBomber is EntityAirBomber airbomber)
|
||||||
|
{
|
||||||
|
airbomber.setAddColor(color);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -162,5 +162,9 @@ namespace AirBomber.DrawningObjects
|
|||||||
wing_2.CloseFigure();
|
wing_2.CloseFigure();
|
||||||
g.DrawPath(Pens.Black, wing_2);
|
g.DrawPath(Pens.Black, wing_2);
|
||||||
}
|
}
|
||||||
|
public void setColor(Color color)
|
||||||
|
{
|
||||||
|
EntityBomber.setColor(color);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,5 +12,9 @@
|
|||||||
Toplivo = toplivo;
|
Toplivo = toplivo;
|
||||||
Rocket = ropcket;
|
Rocket = ropcket;
|
||||||
}
|
}
|
||||||
|
public void setAddColor(Color color)
|
||||||
|
{
|
||||||
|
DopColor = color;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ namespace AirBomber.Entities
|
|||||||
{
|
{
|
||||||
public int Speed { get; private set; }
|
public int Speed { get; private set; }
|
||||||
public double Weight { get; private set; }
|
public double Weight { get; private set; }
|
||||||
public Color BodyColor { get; private set; }
|
public Color BodyColor { get; set; }
|
||||||
public double Step => (double)Speed * 100 / Weight;
|
public double Step => (double)Speed * 100 / Weight;
|
||||||
|
|
||||||
public EntityBomber(int speed, double weight, Color bodycolor)
|
public EntityBomber(int speed, double weight, Color bodycolor)
|
||||||
@@ -19,5 +19,9 @@ namespace AirBomber.Entities
|
|||||||
Weight = weight;
|
Weight = weight;
|
||||||
BodyColor = bodycolor;
|
BodyColor = bodycolor;
|
||||||
}
|
}
|
||||||
|
public void setColor(Color color)
|
||||||
|
{
|
||||||
|
BodyColor = color;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
62
AirBomber/ExtentionDrawningBomber.cs
Normal file
62
AirBomber/ExtentionDrawningBomber.cs
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
using AirBomber.Entities;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace AirBomber.DrawningObjects
|
||||||
|
{
|
||||||
|
public static class ExtentionDrawningBomber
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Создание объекта из строки
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="info">Строка с данными для создания объекта</param>
|
||||||
|
/// <param name="separatorForObject">Разделитель даннных</param>
|
||||||
|
/// <param name="width">Ширина</param>
|
||||||
|
/// <param name="height">Высота</param>
|
||||||
|
/// <returns>Объект</returns>
|
||||||
|
public static DrawningBomber? CreateDrawningBomber(this string info, char separatorForObject, int width, int height)
|
||||||
|
{
|
||||||
|
string[] strs = info.Split(separatorForObject);
|
||||||
|
if (strs.Length == 3)
|
||||||
|
{
|
||||||
|
return new DrawningBomber(Convert.ToInt32(strs[0]),
|
||||||
|
Convert.ToInt32(strs[1]), Color.FromName(strs[2]), width, height);
|
||||||
|
}
|
||||||
|
else if (strs.Length == 6)
|
||||||
|
{
|
||||||
|
return new DrawningAirBomber(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;
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// Получение данных для сохранения в файл
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="drawningBomber">Сохраняемый объект</param>
|
||||||
|
/// <param name="separatorForObject">Разделитель даннных</param>
|
||||||
|
/// <returns>Строка с данными по объекту</returns>
|
||||||
|
public static string GetDataForSave(this DrawningBomber drawningBomber,
|
||||||
|
char separatorForAir)
|
||||||
|
{
|
||||||
|
var air = drawningBomber.EntityBomber;
|
||||||
|
if (air == null)
|
||||||
|
{
|
||||||
|
return string.Empty;
|
||||||
|
}
|
||||||
|
var str =
|
||||||
|
$"{air.Speed}{separatorForAir}{air.Weight}{separatorForAir}{air.BodyColor.Name}";
|
||||||
|
if (air is not EntityAirBomber airBomber)
|
||||||
|
{
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
return $"{str}{separatorForAir}{airBomber.DopColor.Name}{separatorForAir}{airBomber.Toplivo}{separatorForAir}{airBomber.Rocket}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
67
AirBomber/FormBomberCollection.Designer.cs
generated
67
AirBomber/FormBomberCollection.Designer.cs
generated
@@ -39,9 +39,16 @@
|
|||||||
ButtonAddBomber = new Button();
|
ButtonAddBomber = new Button();
|
||||||
MessageBoxBomber = new TextBox();
|
MessageBoxBomber = new TextBox();
|
||||||
PicBoxBomberCollection = new PictureBox();
|
PicBoxBomberCollection = new PictureBox();
|
||||||
|
menuStrip = new MenuStrip();
|
||||||
|
fileToolStripMenuItem = new ToolStripMenuItem();
|
||||||
|
SaveToolStripMenuItem = new ToolStripMenuItem();
|
||||||
|
LoadToolStripMenuItem = new ToolStripMenuItem();
|
||||||
|
openFileDialog = new OpenFileDialog();
|
||||||
|
saveFileDialog = new OpenFileDialog();
|
||||||
Tools.SuspendLayout();
|
Tools.SuspendLayout();
|
||||||
Kit.SuspendLayout();
|
Kit.SuspendLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)PicBoxBomberCollection).BeginInit();
|
((System.ComponentModel.ISupportInitialize)PicBoxBomberCollection).BeginInit();
|
||||||
|
menuStrip.SuspendLayout();
|
||||||
SuspendLayout();
|
SuspendLayout();
|
||||||
//
|
//
|
||||||
// Tools
|
// Tools
|
||||||
@@ -110,7 +117,7 @@
|
|||||||
//
|
//
|
||||||
// ButtonRefreshCollection
|
// ButtonRefreshCollection
|
||||||
//
|
//
|
||||||
ButtonRefreshCollection.Location = new Point(28, 481);
|
ButtonRefreshCollection.Location = new Point(28, 448);
|
||||||
ButtonRefreshCollection.Name = "ButtonRefreshCollection";
|
ButtonRefreshCollection.Name = "ButtonRefreshCollection";
|
||||||
ButtonRefreshCollection.Size = new Size(193, 37);
|
ButtonRefreshCollection.Size = new Size(193, 37);
|
||||||
ButtonRefreshCollection.TabIndex = 3;
|
ButtonRefreshCollection.TabIndex = 3;
|
||||||
@@ -120,7 +127,7 @@
|
|||||||
//
|
//
|
||||||
// ButtonRemoveBomber
|
// ButtonRemoveBomber
|
||||||
//
|
//
|
||||||
ButtonRemoveBomber.Location = new Point(28, 416);
|
ButtonRemoveBomber.Location = new Point(28, 401);
|
||||||
ButtonRemoveBomber.Name = "ButtonRemoveBomber";
|
ButtonRemoveBomber.Name = "ButtonRemoveBomber";
|
||||||
ButtonRemoveBomber.Size = new Size(193, 41);
|
ButtonRemoveBomber.Size = new Size(193, 41);
|
||||||
ButtonRemoveBomber.TabIndex = 2;
|
ButtonRemoveBomber.TabIndex = 2;
|
||||||
@@ -147,19 +154,62 @@
|
|||||||
//
|
//
|
||||||
// PicBoxBomberCollection
|
// PicBoxBomberCollection
|
||||||
//
|
//
|
||||||
PicBoxBomberCollection.Location = new Point(1, -2);
|
PicBoxBomberCollection.Location = new Point(0, 38);
|
||||||
PicBoxBomberCollection.Name = "PicBoxBomberCollection";
|
PicBoxBomberCollection.Name = "PicBoxBomberCollection";
|
||||||
PicBoxBomberCollection.Size = new Size(473, 563);
|
PicBoxBomberCollection.Size = new Size(473, 563);
|
||||||
PicBoxBomberCollection.TabIndex = 1;
|
PicBoxBomberCollection.TabIndex = 1;
|
||||||
PicBoxBomberCollection.TabStop = false;
|
PicBoxBomberCollection.TabStop = false;
|
||||||
//
|
//
|
||||||
|
// menuStrip
|
||||||
|
//
|
||||||
|
menuStrip.ImageScalingSize = new Size(20, 20);
|
||||||
|
menuStrip.Items.AddRange(new ToolStripItem[] { fileToolStripMenuItem });
|
||||||
|
menuStrip.Location = new Point(0, 0);
|
||||||
|
menuStrip.Name = "menuStrip";
|
||||||
|
menuStrip.Size = new Size(800, 28);
|
||||||
|
menuStrip.TabIndex = 2;
|
||||||
|
menuStrip.Text = "Файл";
|
||||||
|
//
|
||||||
|
// fileToolStripMenuItem
|
||||||
|
//
|
||||||
|
fileToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { SaveToolStripMenuItem, LoadToolStripMenuItem });
|
||||||
|
fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
||||||
|
fileToolStripMenuItem.Size = new Size(59, 24);
|
||||||
|
fileToolStripMenuItem.Text = "Файл";
|
||||||
|
//
|
||||||
|
// SaveToolStripMenuItem
|
||||||
|
//
|
||||||
|
SaveToolStripMenuItem.Name = "SaveToolStripMenuItem";
|
||||||
|
SaveToolStripMenuItem.Size = new Size(224, 26);
|
||||||
|
SaveToolStripMenuItem.Text = "Сохранение";
|
||||||
|
SaveToolStripMenuItem.Click += SaveToolStripMenuItem_Click;
|
||||||
|
//
|
||||||
|
// LoadToolStripMenuItem
|
||||||
|
//
|
||||||
|
LoadToolStripMenuItem.Name = "LoadToolStripMenuItem";
|
||||||
|
LoadToolStripMenuItem.Size = new Size(224, 26);
|
||||||
|
LoadToolStripMenuItem.Text = "Загрузка";
|
||||||
|
LoadToolStripMenuItem.Click += LoadToolStripMenuItem_Click;
|
||||||
|
//
|
||||||
|
// openFileDialog
|
||||||
|
//
|
||||||
|
openFileDialog.FileName = "openFileDialog";
|
||||||
|
openFileDialog.Filter = "txt file | *.txt";
|
||||||
|
//
|
||||||
|
// saveFileDialog
|
||||||
|
//
|
||||||
|
saveFileDialog.FileName = "saveFileDialog";
|
||||||
|
saveFileDialog.Filter = "txt file | *.txt";
|
||||||
|
//
|
||||||
// FormBomberCollection
|
// FormBomberCollection
|
||||||
//
|
//
|
||||||
AutoScaleDimensions = new SizeF(8F, 20F);
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
||||||
AutoScaleMode = AutoScaleMode.Font;
|
AutoScaleMode = AutoScaleMode.Font;
|
||||||
ClientSize = new Size(800, 581);
|
ClientSize = new Size(800, 619);
|
||||||
Controls.Add(PicBoxBomberCollection);
|
Controls.Add(PicBoxBomberCollection);
|
||||||
Controls.Add(Tools);
|
Controls.Add(Tools);
|
||||||
|
Controls.Add(menuStrip);
|
||||||
|
MainMenuStrip = menuStrip;
|
||||||
Name = "FormBomberCollection";
|
Name = "FormBomberCollection";
|
||||||
Text = "FormBomberCollection";
|
Text = "FormBomberCollection";
|
||||||
Tools.ResumeLayout(false);
|
Tools.ResumeLayout(false);
|
||||||
@@ -167,7 +217,10 @@
|
|||||||
Kit.ResumeLayout(false);
|
Kit.ResumeLayout(false);
|
||||||
Kit.PerformLayout();
|
Kit.PerformLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)PicBoxBomberCollection).EndInit();
|
((System.ComponentModel.ISupportInitialize)PicBoxBomberCollection).EndInit();
|
||||||
|
menuStrip.ResumeLayout(false);
|
||||||
|
menuStrip.PerformLayout();
|
||||||
ResumeLayout(false);
|
ResumeLayout(false);
|
||||||
|
PerformLayout();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
@@ -183,5 +236,11 @@
|
|||||||
private Button RemoveKit;
|
private Button RemoveKit;
|
||||||
private Button AddKit;
|
private Button AddKit;
|
||||||
private TextBox KitTextbox;
|
private TextBox KitTextbox;
|
||||||
|
private MenuStrip menuStrip;
|
||||||
|
private ToolStripMenuItem fileToolStripMenuItem;
|
||||||
|
private ToolStripMenuItem SaveToolStripMenuItem;
|
||||||
|
private ToolStripMenuItem LoadToolStripMenuItem;
|
||||||
|
private OpenFileDialog openFileDialog;
|
||||||
|
private OpenFileDialog saveFileDialog;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -64,24 +64,28 @@ namespace AirBomber
|
|||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var obj = _bomber[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
|
var formBomberConfig = new FormBomberConfig();
|
||||||
if (obj == null)
|
|
||||||
|
formBomberConfig.AddEvent(bomber =>
|
||||||
{
|
{
|
||||||
return;
|
if (listBoxStorages.SelectedIndex != -1)
|
||||||
}
|
|
||||||
FormAirBomber form = new();
|
|
||||||
if (form.ShowDialog() == DialogResult.OK)
|
|
||||||
{
|
|
||||||
if (obj + form.SelectedBomber != 1)
|
|
||||||
{
|
{
|
||||||
MessageBox.Show("Объект добавлен");
|
var obj = _bomber[listBoxStorages.SelectedItem?.ToString() ?? string.Empty];
|
||||||
PicBoxBomberCollection.Image = obj.ShowBomber();
|
if (obj != null)
|
||||||
|
{
|
||||||
|
if (obj + bomber != 1)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Объект добавлен");
|
||||||
|
PicBoxBomberCollection.Image = obj.ShowBomber();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MessageBox.Show("Не удалось добавить объект");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
});
|
||||||
{
|
formBomberConfig.Show();
|
||||||
MessageBox.Show("Не удалось добавить объект");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ButtonRemoveBomber_Click(object sender, EventArgs e)
|
private void ButtonRemoveBomber_Click(object sender, EventArgs e)
|
||||||
@@ -143,5 +147,38 @@ namespace AirBomber
|
|||||||
PicBoxBomberCollection.Image =
|
PicBoxBomberCollection.Image =
|
||||||
_bomber[listBoxStorages.SelectedItem?.ToString() ?? string.Empty]?.ShowBomber();
|
_bomber[listBoxStorages.SelectedItem?.ToString() ?? string.Empty]?.ShowBomber();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (saveFileDialog.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
if (_bomber.SaveData(saveFileDialog.FileName))
|
||||||
|
{
|
||||||
|
MessageBox.Show("Сохранение прошло успешно",
|
||||||
|
"Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MessageBox.Show("Не сохранилось", "Результат",
|
||||||
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LoadToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (openFileDialog.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
if (_bomber.LoadData(openFileDialog.FileName))
|
||||||
|
{
|
||||||
|
MessageBox.Show("Данные успешно загружены.", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
|
ReloadObjects();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MessageBox.Show("Ошибка при загрузке данных.", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -117,4 +117,16 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
|
<metadata name="menuStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="openFileDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>145, 1</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="saveFileDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>315, 1</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>25</value>
|
||||||
|
</metadata>
|
||||||
</root>
|
</root>
|
||||||
363
AirBomber/FormBomberConfig.Designer.cs
generated
Normal file
363
AirBomber/FormBomberConfig.Designer.cs
generated
Normal file
@@ -0,0 +1,363 @@
|
|||||||
|
namespace AirBomber
|
||||||
|
{
|
||||||
|
partial class FormBomberConfig
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
groupBox1 = new GroupBox();
|
||||||
|
hardLabel = new Label();
|
||||||
|
easyLabel = new Label();
|
||||||
|
colorGroupBox = new GroupBox();
|
||||||
|
purplePanel = new Panel();
|
||||||
|
blackPanel = new Panel();
|
||||||
|
greyPanel = new Panel();
|
||||||
|
whitePanel = new Panel();
|
||||||
|
yellowPanel = new Panel();
|
||||||
|
bluePanel = new Panel();
|
||||||
|
greenPanel = new Panel();
|
||||||
|
redPanel = new Panel();
|
||||||
|
rocketCheckBox = new CheckBox();
|
||||||
|
bakCheckBox = new CheckBox();
|
||||||
|
WeightNumericUpDown = new NumericUpDown();
|
||||||
|
SpeedNumericUpDown = new NumericUpDown();
|
||||||
|
weight = new Label();
|
||||||
|
speed = new Label();
|
||||||
|
PanelColor = new Panel();
|
||||||
|
labelDopColor = new Label();
|
||||||
|
labelColor = new Label();
|
||||||
|
pictureBoxConfig = new PictureBox();
|
||||||
|
AddButton = new Button();
|
||||||
|
buttonStop = new Button();
|
||||||
|
groupBox1.SuspendLayout();
|
||||||
|
colorGroupBox.SuspendLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)WeightNumericUpDown).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)SpeedNumericUpDown).BeginInit();
|
||||||
|
PanelColor.SuspendLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)pictureBoxConfig).BeginInit();
|
||||||
|
SuspendLayout();
|
||||||
|
//
|
||||||
|
// groupBox1
|
||||||
|
//
|
||||||
|
groupBox1.Controls.Add(hardLabel);
|
||||||
|
groupBox1.Controls.Add(easyLabel);
|
||||||
|
groupBox1.Controls.Add(colorGroupBox);
|
||||||
|
groupBox1.Controls.Add(rocketCheckBox);
|
||||||
|
groupBox1.Controls.Add(bakCheckBox);
|
||||||
|
groupBox1.Controls.Add(WeightNumericUpDown);
|
||||||
|
groupBox1.Controls.Add(SpeedNumericUpDown);
|
||||||
|
groupBox1.Controls.Add(weight);
|
||||||
|
groupBox1.Controls.Add(speed);
|
||||||
|
groupBox1.Location = new Point(12, 12);
|
||||||
|
groupBox1.Name = "groupBox1";
|
||||||
|
groupBox1.Size = new Size(636, 296);
|
||||||
|
groupBox1.TabIndex = 0;
|
||||||
|
groupBox1.TabStop = false;
|
||||||
|
groupBox1.Text = "Параметры";
|
||||||
|
//
|
||||||
|
// hardLabel
|
||||||
|
//
|
||||||
|
hardLabel.BorderStyle = BorderStyle.FixedSingle;
|
||||||
|
hardLabel.Location = new Point(421, 228);
|
||||||
|
hardLabel.Name = "hardLabel";
|
||||||
|
hardLabel.Size = new Size(127, 47);
|
||||||
|
hardLabel.TabIndex = 8;
|
||||||
|
hardLabel.Text = "Продвинутый";
|
||||||
|
hardLabel.TextAlign = ContentAlignment.MiddleCenter;
|
||||||
|
hardLabel.MouseDown += LableObject_MouseDown;
|
||||||
|
//
|
||||||
|
// easyLabel
|
||||||
|
//
|
||||||
|
easyLabel.BorderStyle = BorderStyle.FixedSingle;
|
||||||
|
easyLabel.Location = new Point(266, 228);
|
||||||
|
easyLabel.Name = "easyLabel";
|
||||||
|
easyLabel.Size = new Size(116, 47);
|
||||||
|
easyLabel.TabIndex = 7;
|
||||||
|
easyLabel.Text = "Простой";
|
||||||
|
easyLabel.TextAlign = ContentAlignment.MiddleCenter;
|
||||||
|
easyLabel.MouseDown += LableObject_MouseDown;
|
||||||
|
//
|
||||||
|
// colorGroupBox
|
||||||
|
//
|
||||||
|
colorGroupBox.Controls.Add(purplePanel);
|
||||||
|
colorGroupBox.Controls.Add(blackPanel);
|
||||||
|
colorGroupBox.Controls.Add(greyPanel);
|
||||||
|
colorGroupBox.Controls.Add(whitePanel);
|
||||||
|
colorGroupBox.Controls.Add(yellowPanel);
|
||||||
|
colorGroupBox.Controls.Add(bluePanel);
|
||||||
|
colorGroupBox.Controls.Add(greenPanel);
|
||||||
|
colorGroupBox.Controls.Add(redPanel);
|
||||||
|
colorGroupBox.Location = new Point(248, 34);
|
||||||
|
colorGroupBox.Name = "colorGroupBox";
|
||||||
|
colorGroupBox.Size = new Size(315, 176);
|
||||||
|
colorGroupBox.TabIndex = 6;
|
||||||
|
colorGroupBox.TabStop = false;
|
||||||
|
colorGroupBox.Text = "Цвета";
|
||||||
|
//
|
||||||
|
// purplePanel
|
||||||
|
//
|
||||||
|
purplePanel.BackColor = Color.Purple;
|
||||||
|
purplePanel.Location = new Point(250, 103);
|
||||||
|
purplePanel.Name = "purplePanel";
|
||||||
|
purplePanel.Size = new Size(50, 50);
|
||||||
|
purplePanel.TabIndex = 3;
|
||||||
|
purplePanel.MouseClick += PanelColor_MouseDown;
|
||||||
|
//
|
||||||
|
// blackPanel
|
||||||
|
//
|
||||||
|
blackPanel.BackColor = Color.Black;
|
||||||
|
blackPanel.Location = new Point(174, 103);
|
||||||
|
blackPanel.Name = "blackPanel";
|
||||||
|
blackPanel.Size = new Size(50, 50);
|
||||||
|
blackPanel.TabIndex = 4;
|
||||||
|
blackPanel.MouseClick += PanelColor_MouseDown;
|
||||||
|
//
|
||||||
|
// greyPanel
|
||||||
|
//
|
||||||
|
greyPanel.BackColor = Color.Silver;
|
||||||
|
greyPanel.Location = new Point(97, 103);
|
||||||
|
greyPanel.Name = "greyPanel";
|
||||||
|
greyPanel.Size = new Size(50, 50);
|
||||||
|
greyPanel.TabIndex = 5;
|
||||||
|
greyPanel.MouseClick += PanelColor_MouseDown;
|
||||||
|
//
|
||||||
|
// whitePanel
|
||||||
|
//
|
||||||
|
whitePanel.BackColor = Color.White;
|
||||||
|
whitePanel.Location = new Point(18, 103);
|
||||||
|
whitePanel.Name = "whitePanel";
|
||||||
|
whitePanel.Size = new Size(50, 50);
|
||||||
|
whitePanel.TabIndex = 2;
|
||||||
|
whitePanel.MouseClick += PanelColor_MouseDown;
|
||||||
|
//
|
||||||
|
// yellowPanel
|
||||||
|
//
|
||||||
|
yellowPanel.BackColor = Color.Yellow;
|
||||||
|
yellowPanel.Location = new Point(250, 37);
|
||||||
|
yellowPanel.Name = "yellowPanel";
|
||||||
|
yellowPanel.Size = new Size(50, 50);
|
||||||
|
yellowPanel.TabIndex = 1;
|
||||||
|
yellowPanel.MouseClick += PanelColor_MouseDown;
|
||||||
|
//
|
||||||
|
// bluePanel
|
||||||
|
//
|
||||||
|
bluePanel.BackColor = Color.Blue;
|
||||||
|
bluePanel.Location = new Point(174, 37);
|
||||||
|
bluePanel.Name = "bluePanel";
|
||||||
|
bluePanel.Size = new Size(50, 50);
|
||||||
|
bluePanel.TabIndex = 1;
|
||||||
|
bluePanel.MouseClick += PanelColor_MouseDown;
|
||||||
|
//
|
||||||
|
// greenPanel
|
||||||
|
//
|
||||||
|
greenPanel.BackColor = Color.FromArgb(0, 192, 0);
|
||||||
|
greenPanel.Location = new Point(97, 37);
|
||||||
|
greenPanel.Name = "greenPanel";
|
||||||
|
greenPanel.Size = new Size(50, 50);
|
||||||
|
greenPanel.TabIndex = 1;
|
||||||
|
greenPanel.MouseClick += PanelColor_MouseDown;
|
||||||
|
//
|
||||||
|
// redPanel
|
||||||
|
//
|
||||||
|
redPanel.BackColor = Color.Red;
|
||||||
|
redPanel.Location = new Point(18, 37);
|
||||||
|
redPanel.Name = "redPanel";
|
||||||
|
redPanel.Size = new Size(50, 50);
|
||||||
|
redPanel.TabIndex = 0;
|
||||||
|
redPanel.MouseClick += PanelColor_MouseDown;
|
||||||
|
//
|
||||||
|
// rocketCheckBox
|
||||||
|
//
|
||||||
|
rocketCheckBox.AutoSize = true;
|
||||||
|
rocketCheckBox.Location = new Point(15, 200);
|
||||||
|
rocketCheckBox.Name = "rocketCheckBox";
|
||||||
|
rocketCheckBox.Size = new Size(196, 24);
|
||||||
|
rocketCheckBox.TabIndex = 5;
|
||||||
|
rocketCheckBox.Text = "Признак наличия ракет";
|
||||||
|
rocketCheckBox.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// bakCheckBox
|
||||||
|
//
|
||||||
|
bakCheckBox.AutoSize = true;
|
||||||
|
bakCheckBox.Location = new Point(15, 152);
|
||||||
|
bakCheckBox.Name = "bakCheckBox";
|
||||||
|
bakCheckBox.Size = new Size(199, 24);
|
||||||
|
bakCheckBox.TabIndex = 4;
|
||||||
|
bakCheckBox.Text = "Признак наличия баков";
|
||||||
|
bakCheckBox.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// WeightNumericUpDown
|
||||||
|
//
|
||||||
|
WeightNumericUpDown.Location = new Point(113, 82);
|
||||||
|
WeightNumericUpDown.Name = "WeightNumericUpDown";
|
||||||
|
WeightNumericUpDown.Size = new Size(83, 27);
|
||||||
|
WeightNumericUpDown.TabIndex = 3;
|
||||||
|
WeightNumericUpDown.Value = new decimal(new int[] { 100, 0, 0, 0 });
|
||||||
|
//
|
||||||
|
// SpeedNumericUpDown
|
||||||
|
//
|
||||||
|
SpeedNumericUpDown.Location = new Point(113, 34);
|
||||||
|
SpeedNumericUpDown.Name = "SpeedNumericUpDown";
|
||||||
|
SpeedNumericUpDown.Size = new Size(83, 27);
|
||||||
|
SpeedNumericUpDown.TabIndex = 2;
|
||||||
|
SpeedNumericUpDown.Value = new decimal(new int[] { 100, 0, 0, 0 });
|
||||||
|
//
|
||||||
|
// weight
|
||||||
|
//
|
||||||
|
weight.AutoSize = true;
|
||||||
|
weight.Location = new Point(15, 84);
|
||||||
|
weight.Name = "weight";
|
||||||
|
weight.Size = new Size(40, 20);
|
||||||
|
weight.TabIndex = 1;
|
||||||
|
weight.Text = "Вес: ";
|
||||||
|
//
|
||||||
|
// speed
|
||||||
|
//
|
||||||
|
speed.AutoSize = true;
|
||||||
|
speed.Location = new Point(15, 41);
|
||||||
|
speed.Name = "speed";
|
||||||
|
speed.Size = new Size(80, 20);
|
||||||
|
speed.TabIndex = 0;
|
||||||
|
speed.Text = "Скорость: ";
|
||||||
|
//
|
||||||
|
// PanelColor
|
||||||
|
//
|
||||||
|
PanelColor.AllowDrop = true;
|
||||||
|
PanelColor.Controls.Add(labelDopColor);
|
||||||
|
PanelColor.Controls.Add(labelColor);
|
||||||
|
PanelColor.Controls.Add(pictureBoxConfig);
|
||||||
|
PanelColor.Location = new Point(654, 12);
|
||||||
|
PanelColor.Name = "PanelColor";
|
||||||
|
PanelColor.Size = new Size(304, 275);
|
||||||
|
PanelColor.TabIndex = 2;
|
||||||
|
PanelColor.DragDrop += PanelObject_DragDrop;
|
||||||
|
PanelColor.DragEnter += PanelObject_DragEnter;
|
||||||
|
PanelColor.MouseDown += PanelColor_MouseDown;
|
||||||
|
//
|
||||||
|
// labelDopColor
|
||||||
|
//
|
||||||
|
labelDopColor.AllowDrop = true;
|
||||||
|
labelDopColor.BorderStyle = BorderStyle.FixedSingle;
|
||||||
|
labelDopColor.Location = new Point(152, 12);
|
||||||
|
labelDopColor.Name = "labelDopColor";
|
||||||
|
labelDopColor.Size = new Size(144, 34);
|
||||||
|
labelDopColor.TabIndex = 2;
|
||||||
|
labelDopColor.Text = "Доп. цвет";
|
||||||
|
labelDopColor.TextAlign = ContentAlignment.MiddleCenter;
|
||||||
|
labelDopColor.DragDrop += labelAddBoxColor_DragDrop;
|
||||||
|
labelDopColor.DragEnter += LabelColor_DragEnter;
|
||||||
|
labelDopColor.MouseDown += LableObject_MouseDown;
|
||||||
|
//
|
||||||
|
// labelColor
|
||||||
|
//
|
||||||
|
labelColor.AllowDrop = true;
|
||||||
|
labelColor.BorderStyle = BorderStyle.FixedSingle;
|
||||||
|
labelColor.Location = new Point(12, 12);
|
||||||
|
labelColor.Name = "labelColor";
|
||||||
|
labelColor.Size = new Size(134, 34);
|
||||||
|
labelColor.TabIndex = 1;
|
||||||
|
labelColor.Text = "Цвет";
|
||||||
|
labelColor.TextAlign = ContentAlignment.MiddleCenter;
|
||||||
|
labelColor.DragDrop += LabelBaseColor_DragDrop;
|
||||||
|
labelColor.DragEnter += LabelColor_DragEnter;
|
||||||
|
labelColor.MouseDown += LableObject_MouseDown;
|
||||||
|
//
|
||||||
|
// pictureBoxConfig
|
||||||
|
//
|
||||||
|
pictureBoxConfig.Location = new Point(12, 54);
|
||||||
|
pictureBoxConfig.Name = "pictureBoxConfig";
|
||||||
|
pictureBoxConfig.Size = new Size(284, 209);
|
||||||
|
pictureBoxConfig.TabIndex = 0;
|
||||||
|
pictureBoxConfig.TabStop = false;
|
||||||
|
//
|
||||||
|
// AddButton
|
||||||
|
//
|
||||||
|
AddButton.Location = new Point(661, 293);
|
||||||
|
AddButton.Name = "AddButton";
|
||||||
|
AddButton.Size = new Size(139, 36);
|
||||||
|
AddButton.TabIndex = 3;
|
||||||
|
AddButton.Text = "Добавить";
|
||||||
|
AddButton.UseVisualStyleBackColor = true;
|
||||||
|
AddButton.Click += AddButton_Click;
|
||||||
|
//
|
||||||
|
// buttonStop
|
||||||
|
//
|
||||||
|
buttonStop.Location = new Point(806, 293);
|
||||||
|
buttonStop.Name = "buttonStop";
|
||||||
|
buttonStop.Size = new Size(131, 36);
|
||||||
|
buttonStop.TabIndex = 4;
|
||||||
|
buttonStop.Text = "Отмена";
|
||||||
|
buttonStop.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// FormBomberConfig
|
||||||
|
//
|
||||||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
||||||
|
AutoScaleMode = AutoScaleMode.Font;
|
||||||
|
ClientSize = new Size(962, 337);
|
||||||
|
Controls.Add(buttonStop);
|
||||||
|
Controls.Add(AddButton);
|
||||||
|
Controls.Add(PanelColor);
|
||||||
|
Controls.Add(groupBox1);
|
||||||
|
Name = "FormBomberConfig";
|
||||||
|
Text = "FormBomberConfig";
|
||||||
|
groupBox1.ResumeLayout(false);
|
||||||
|
groupBox1.PerformLayout();
|
||||||
|
colorGroupBox.ResumeLayout(false);
|
||||||
|
((System.ComponentModel.ISupportInitialize)WeightNumericUpDown).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)SpeedNumericUpDown).EndInit();
|
||||||
|
PanelColor.ResumeLayout(false);
|
||||||
|
((System.ComponentModel.ISupportInitialize)pictureBoxConfig).EndInit();
|
||||||
|
ResumeLayout(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private GroupBox groupBox1;
|
||||||
|
private Label weight;
|
||||||
|
private Label speed;
|
||||||
|
private GroupBox colorGroupBox;
|
||||||
|
private Panel purplePanel;
|
||||||
|
private Panel blackPanel;
|
||||||
|
private Panel greyPanel;
|
||||||
|
private Panel whitePanel;
|
||||||
|
private Panel yellowPanel;
|
||||||
|
private Panel bluePanel;
|
||||||
|
private Panel greenPanel;
|
||||||
|
private Panel redPanel;
|
||||||
|
private CheckBox rocketCheckBox;
|
||||||
|
private CheckBox bakCheckBox;
|
||||||
|
private NumericUpDown WeightNumericUpDown;
|
||||||
|
private NumericUpDown SpeedNumericUpDown;
|
||||||
|
private Label hardLabel;
|
||||||
|
private Label easyLabel;
|
||||||
|
private Panel PanelColor;
|
||||||
|
private Label labelDopColor;
|
||||||
|
private Label labelColor;
|
||||||
|
private PictureBox pictureBoxConfig;
|
||||||
|
private Button AddButton;
|
||||||
|
private Button buttonStop;
|
||||||
|
}
|
||||||
|
}
|
||||||
141
AirBomber/FormBomberConfig.cs
Normal file
141
AirBomber/FormBomberConfig.cs
Normal file
@@ -0,0 +1,141 @@
|
|||||||
|
using AirBomber.DrawningObjects;
|
||||||
|
using AirBomber.Entities;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Data;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace AirBomber
|
||||||
|
{
|
||||||
|
public partial class FormBomberConfig : Form
|
||||||
|
{
|
||||||
|
private event Action<DrawningBomber>? EventAddBomber;
|
||||||
|
DrawningBomber? _bomber = null;
|
||||||
|
|
||||||
|
public FormBomberConfig()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
redPanel.MouseDown += PanelColor_MouseDown;
|
||||||
|
greenPanel.MouseDown += PanelColor_MouseDown;
|
||||||
|
bluePanel.MouseDown += PanelColor_MouseDown;
|
||||||
|
yellowPanel.MouseDown += PanelColor_MouseDown;
|
||||||
|
whitePanel.MouseDown += PanelColor_MouseDown;
|
||||||
|
greyPanel.MouseDown += PanelColor_MouseDown;
|
||||||
|
blackPanel.MouseDown += PanelColor_MouseDown;
|
||||||
|
purplePanel.MouseDown += PanelColor_MouseDown;
|
||||||
|
buttonStop.Click += (sender, e) => Close();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void DrawBomber()
|
||||||
|
{
|
||||||
|
Bitmap bmp = new(pictureBoxConfig.Width, pictureBoxConfig.Height);
|
||||||
|
Graphics gr = Graphics.FromImage(bmp);
|
||||||
|
_bomber?.SetPosition(5, 5);
|
||||||
|
_bomber?.DrawBomber(gr);
|
||||||
|
pictureBoxConfig.Image = bmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void AddEvent(Action<DrawningBomber> ev)
|
||||||
|
{
|
||||||
|
if (EventAddBomber == null)
|
||||||
|
{
|
||||||
|
EventAddBomber = new Action<DrawningBomber>(ev);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
EventAddBomber += ev;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LableObject_MouseDown(object sender, MouseEventArgs e)
|
||||||
|
{
|
||||||
|
(sender as Label)?.DoDragDrop((sender as Label)?.Name, DragDropEffects.Move | DragDropEffects.Copy);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void PanelObject_DragEnter(object sender, DragEventArgs e)
|
||||||
|
{
|
||||||
|
if (e.Data?.GetDataPresent(DataFormats.Text) ?? false)
|
||||||
|
{
|
||||||
|
e.Effect = DragDropEffects.Copy;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
e.Effect = DragDropEffects.None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void PanelObject_DragDrop(object sender, DragEventArgs e)
|
||||||
|
{
|
||||||
|
switch (e.Data?.GetData(DataFormats.Text).ToString())
|
||||||
|
{
|
||||||
|
case "easyLabel":
|
||||||
|
_bomber = new DrawningBomber((int)SpeedNumericUpDown.Value,
|
||||||
|
(int)WeightNumericUpDown.Value, Color.White, pictureBoxConfig.Width,
|
||||||
|
pictureBoxConfig.Height);
|
||||||
|
break;
|
||||||
|
case "hardLabel":
|
||||||
|
_bomber = new DrawningAirBomber((int)SpeedNumericUpDown.Value,
|
||||||
|
(int)WeightNumericUpDown.Value, Color.Red, Color.Black,
|
||||||
|
bakCheckBox.Checked, rocketCheckBox.Checked, pictureBoxConfig.Width,
|
||||||
|
pictureBoxConfig.Height);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
DrawBomber();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void PanelColor_MouseDown(object sender, MouseEventArgs e)
|
||||||
|
{
|
||||||
|
(sender as Panel)?.DoDragDrop((sender as Panel)?.BackColor, DragDropEffects.Move | DragDropEffects.Copy);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void AddButton_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
EventAddBomber?.Invoke(_bomber);
|
||||||
|
Close();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LabelBaseColor_DragDrop(object sender, DragEventArgs e)
|
||||||
|
{
|
||||||
|
if (_bomber is DrawningBomber entityAirBomber)
|
||||||
|
{
|
||||||
|
labelColor.BackColor = (Color)e.Data.GetData(typeof(Color));
|
||||||
|
_bomber.setColor((Color)e.Data.GetData(typeof(Color)));
|
||||||
|
}
|
||||||
|
DrawBomber();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LabelColor_DragEnter(object sender, DragEventArgs e)
|
||||||
|
{
|
||||||
|
if (_bomber != null && _bomber.EntityBomber is EntityAirBomber entityAirBomber)
|
||||||
|
{
|
||||||
|
labelDopColor.AllowDrop = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
labelDopColor.AllowDrop = false;
|
||||||
|
|
||||||
|
if (e.Data.GetDataPresent(typeof(Color)))
|
||||||
|
{
|
||||||
|
e.Effect = DragDropEffects.Copy;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
e.Effect = DragDropEffects.None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void labelAddBoxColor_DragDrop(object sender, DragEventArgs e)
|
||||||
|
{
|
||||||
|
if (_bomber is DrawningAirBomber entityAirBomber)
|
||||||
|
{
|
||||||
|
labelDopColor.BackColor = (Color)e.Data.GetData(typeof(Color));
|
||||||
|
entityAirBomber.setAddColor((Color)e.Data.GetData(typeof(Color)));
|
||||||
|
}
|
||||||
|
DrawBomber();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
120
AirBomber/FormBomberConfig.resx
Normal file
120
AirBomber/FormBomberConfig.resx
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
||||||
Reference in New Issue
Block a user