2020-05-15 22:34:31 +00:00
|
|
|
|
using AppLauncher.Models;
|
|
|
|
|
using RyzStudio.Windows.Forms;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace AppLauncher.Windows.Forms
|
|
|
|
|
{
|
2020-10-21 00:54:00 +00:00
|
|
|
|
public partial class TTilePanelLayout : TUserControl
|
2020-05-15 22:34:31 +00:00
|
|
|
|
{
|
|
|
|
|
public class Item
|
|
|
|
|
{
|
2020-05-16 12:25:59 +00:00
|
|
|
|
public TTilePanel Tile { get; set; }
|
2020-05-15 22:34:31 +00:00
|
|
|
|
public Point Coord { get; set; } = new Point(0, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected readonly int tileSize = 70;
|
|
|
|
|
protected readonly int margin = 3;
|
|
|
|
|
protected readonly int labelHeight = 20;
|
|
|
|
|
protected readonly int collapseIncrement = 6;
|
|
|
|
|
protected readonly int expandIncrement = 8;
|
|
|
|
|
|
2020-05-20 20:29:51 +00:00
|
|
|
|
protected TileGroupModel groupModel = null;
|
2020-05-15 22:34:31 +00:00
|
|
|
|
protected List<Item> items = new List<Item>();
|
|
|
|
|
|
|
|
|
|
protected int collapseHeight = 0;
|
|
|
|
|
protected int expandedHeight = 0;
|
|
|
|
|
|
|
|
|
|
protected bool isAnimating = false;
|
|
|
|
|
protected bool isChecked = true;
|
2020-05-17 01:17:30 +00:00
|
|
|
|
protected Point lastMousePosition = new Point();
|
2020-05-17 18:52:37 +00:00
|
|
|
|
protected Point gridSize = new Point();
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
2020-05-16 12:25:59 +00:00
|
|
|
|
public TTilePanelLayout(TileGroupModel model) : base()
|
2020-05-15 22:34:31 +00:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
this.AllowDrop = true;
|
|
|
|
|
this.BackColor = Color.Transparent;
|
|
|
|
|
|
|
|
|
|
this.LoadModel(model);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnDragDrop(DragEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
string[] fileList = e.Data.GetData(DataFormats.FileDrop) as string[];
|
|
|
|
|
if (fileList == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (fileList.Length <= 0)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(fileList[0]))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TileModel model = new TileModel()
|
|
|
|
|
{
|
|
|
|
|
ProcessFilename = fileList[0],
|
|
|
|
|
Title = Path.GetFileName(fileList[0])
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// exe
|
|
|
|
|
if (Path.GetExtension(fileList[0]).Equals(".exe", StringComparison.CurrentCultureIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
if (File.Exists(fileList[0]))
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(fileList[0]);
|
|
|
|
|
if (fvi != null)
|
|
|
|
|
{
|
|
|
|
|
model.Title = fvi.ProductName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
// do nothing
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-17 15:48:04 +00:00
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(model.Title))
|
|
|
|
|
{
|
|
|
|
|
model.Title = Path.GetFileNameWithoutExtension(fileList[0]);
|
|
|
|
|
}
|
2020-05-15 22:34:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.AddTile(model);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnDragOver(DragEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.Data.GetDataPresent(DataFormats.FileDrop))
|
|
|
|
|
{
|
|
|
|
|
e.Effect = DragDropEffects.Link;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
e.Effect = DragDropEffects.None;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnLoad(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnLoad(e);
|
|
|
|
|
|
|
|
|
|
this.Margin = new Padding(0);
|
|
|
|
|
this.Padding = new Padding(0, 0, 0, 10);
|
|
|
|
|
//this.MaximumSize = new Size(panel1.Width, ExpandedHeight);
|
|
|
|
|
//this.MinimumSize = new Size(panel1.Width, label1.Height);
|
|
|
|
|
//this.Size = this.MaximumSize;
|
|
|
|
|
//this.Size = new Size(panel1.Width, this.ExpandedHeight);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnPaint(PaintEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnPaint(e);
|
|
|
|
|
|
|
|
|
|
Graphics g = e.Graphics;
|
|
|
|
|
|
|
|
|
|
g.DrawImageUnscaled((isChecked ? Properties.Resources.toggle_right_ea_16 : Properties.Resources.toggle_left_ea_16), 2, 2);
|
|
|
|
|
|
2020-05-20 20:29:51 +00:00
|
|
|
|
TextRenderer.DrawText(g, groupModel?.Title, new Font(this.Font.FontFamily, 8.25F), new Point(25, 4), Color.FromArgb(99, 105, 119));
|
2020-05-15 22:34:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async void OnResize(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnResize(e);
|
|
|
|
|
|
|
|
|
|
await this.InvalidateContainer();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async void OnMouseClick(MouseEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnMouseClick(e);
|
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
lastMousePosition = e.Location;
|
|
|
|
|
|
2020-05-15 22:34:31 +00:00
|
|
|
|
bool isLabel = ((e.Location.X >= 0) && (e.Location.X <= this.Width) && (e.Location.Y >= 0) && (e.Location.Y <= 20));
|
|
|
|
|
|
|
|
|
|
if (e.Button == MouseButtons.Left)
|
|
|
|
|
{
|
|
|
|
|
if (isLabel)
|
|
|
|
|
{
|
|
|
|
|
isChecked = !isChecked;
|
|
|
|
|
|
|
|
|
|
this.Invalidate();
|
2020-05-18 00:37:54 +00:00
|
|
|
|
|
2020-05-15 22:34:31 +00:00
|
|
|
|
await this.InvalidateContainer();
|
2020-05-18 00:37:54 +00:00
|
|
|
|
|
|
|
|
|
// exclusivity
|
|
|
|
|
if (isChecked)
|
|
|
|
|
{
|
|
|
|
|
if (this.Model.IsExclusive)
|
|
|
|
|
{
|
|
|
|
|
if (this.FlowLayoutPanel != null)
|
|
|
|
|
{
|
|
|
|
|
foreach (TTilePanelLayout item in this.FlowLayoutPanel.Controls.OfType<TTilePanelLayout>())
|
|
|
|
|
{
|
|
|
|
|
if (item.Equals(this))
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await item.Collapse();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-15 22:34:31 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2020-05-18 00:37:54 +00:00
|
|
|
|
// do nothing
|
2020-05-15 22:34:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (e.Button == MouseButtons.Right)
|
|
|
|
|
{
|
|
|
|
|
if (isLabel)
|
|
|
|
|
{
|
|
|
|
|
contextMenuStrip2.Show(this, e.Location);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
contextMenuStrip1.Show(this, e.Location);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnMouseDoubleClick(MouseEventArgs e) => base.OnMouseClick(e);
|
|
|
|
|
|
|
|
|
|
public Point GridSize
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2020-05-17 18:52:37 +00:00
|
|
|
|
//int w = (int)Math.Floor(decimal.Divide(this.Width, this.TileSize));
|
|
|
|
|
//int h = (int)Math.Floor(decimal.Divide(this.Height - labelHeight, this.TileSize));
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
2020-05-17 18:52:37 +00:00
|
|
|
|
//return new Point(w, h);
|
|
|
|
|
return gridSize;
|
2020-05-15 22:34:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-18 00:37:54 +00:00
|
|
|
|
public bool EnableAnimation { get; set; } = true;
|
|
|
|
|
|
2020-05-15 22:34:31 +00:00
|
|
|
|
public int CollapseHeight => labelHeight + collapseHeight;
|
|
|
|
|
|
|
|
|
|
public int ExpandedHeight => expandedHeight + this.Padding.Bottom;
|
|
|
|
|
|
|
|
|
|
public TileGroupModel Model
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
TileGroupModel rs = new TileGroupModel()
|
|
|
|
|
{
|
2020-05-20 20:29:51 +00:00
|
|
|
|
Title = groupModel.Title,
|
2020-05-15 22:34:31 +00:00
|
|
|
|
GridSize = new Size(this.GridSize.X, this.GridSize.Y),
|
|
|
|
|
IsExpanded = isChecked,
|
2020-05-20 20:29:51 +00:00
|
|
|
|
IsExclusive = groupModel.IsExclusive,
|
2020-05-15 22:34:31 +00:00
|
|
|
|
Items = this.Tiles
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return rs;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public FlowLayoutPanel FlowLayoutPanel
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (this.Parent == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.Parent.GetType() != typeof(FlowLayoutPanel))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return this.Parent as FlowLayoutPanel;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<TileModel> Tiles
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
List<TileModel> rs = new List<TileModel>();
|
|
|
|
|
foreach (Item item in items)
|
|
|
|
|
{
|
|
|
|
|
TileModel model = item.Tile.ModelInfo;
|
|
|
|
|
model.Position = item.Coord;
|
|
|
|
|
|
|
|
|
|
rs.Add(model);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return rs;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int TileSize => (tileSize + margin);
|
|
|
|
|
|
|
|
|
|
public void AddTile(TileModel tile)
|
|
|
|
|
{
|
|
|
|
|
Point gridSize = this.GridSize;
|
|
|
|
|
|
|
|
|
|
if (items.Count >= (gridSize.X * gridSize.Y))
|
|
|
|
|
{
|
|
|
|
|
this.SetGridSize(gridSize.X, (gridSize.Y + 1));
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
Point? newCoord = tile.Position;
|
|
|
|
|
if ((newCoord == null) || hasTile(tile.Position))
|
|
|
|
|
{
|
|
|
|
|
newCoord = findLastFreeCoord();
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-15 22:34:31 +00:00
|
|
|
|
if (newCoord == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tile.Position = newCoord.Value;
|
|
|
|
|
|
2020-05-16 12:25:59 +00:00
|
|
|
|
TTilePanel panel = new TTilePanel();
|
2020-05-15 22:34:31 +00:00
|
|
|
|
panel.LoadInfo(tile);
|
|
|
|
|
panel.Location = convertCoordToLocation(tile.Position);
|
|
|
|
|
|
|
|
|
|
items.Add(new Item()
|
|
|
|
|
{
|
|
|
|
|
Tile = panel,
|
|
|
|
|
Coord = tile.Position
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.Controls.Add(panel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Clear()
|
|
|
|
|
{
|
|
|
|
|
this.Controls.Clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task Collapse()
|
|
|
|
|
{
|
|
|
|
|
await Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
if (isAnimating) return;
|
|
|
|
|
|
|
|
|
|
isAnimating = true;
|
2020-05-18 00:37:54 +00:00
|
|
|
|
isChecked = false;
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
2020-05-18 00:37:54 +00:00
|
|
|
|
if (this.EnableAnimation)
|
2020-05-15 22:34:31 +00:00
|
|
|
|
{
|
2020-05-18 00:37:54 +00:00
|
|
|
|
while (this.Height > this.CollapseHeight)
|
|
|
|
|
{
|
|
|
|
|
ThreadControl.SetHeight(this, (this.Height - collapseIncrement));
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
2020-05-18 00:37:54 +00:00
|
|
|
|
Thread.Sleep(10);
|
|
|
|
|
}
|
2020-05-15 22:34:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetHeight(this, this.CollapseHeight);
|
|
|
|
|
|
|
|
|
|
isAnimating = false;
|
2020-05-18 00:37:54 +00:00
|
|
|
|
|
2020-10-22 01:01:53 +00:00
|
|
|
|
this.Invalidate(this.DisplayRectangle, false);
|
2020-05-15 22:34:31 +00:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task Expand()
|
|
|
|
|
{
|
|
|
|
|
await Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
if (isAnimating) return;
|
|
|
|
|
|
|
|
|
|
isAnimating = true;
|
2020-05-18 00:37:54 +00:00
|
|
|
|
isChecked = true;
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
2020-05-18 00:37:54 +00:00
|
|
|
|
if (this.EnableAnimation)
|
2020-05-15 22:34:31 +00:00
|
|
|
|
{
|
2020-05-18 00:37:54 +00:00
|
|
|
|
while (this.Height < this.ExpandedHeight)
|
|
|
|
|
{
|
|
|
|
|
ThreadControl.SetHeight(this, (this.Height + expandIncrement));
|
|
|
|
|
Thread.Sleep(10);
|
|
|
|
|
}
|
2020-05-15 22:34:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetHeight(this, this.ExpandedHeight);
|
|
|
|
|
|
|
|
|
|
isAnimating = false;
|
2020-05-18 00:37:54 +00:00
|
|
|
|
|
2020-10-22 01:01:53 +00:00
|
|
|
|
this.Invalidate(this.DisplayRectangle, false);
|
2020-05-15 22:34:31 +00:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Point GetTilePosition(int posX, int posY)
|
|
|
|
|
{
|
|
|
|
|
int x = (int)Math.Round(decimal.Divide(posX, this.TileSize));
|
|
|
|
|
int y = (int)Math.Round(decimal.Divide((posY - labelHeight), this.TileSize));
|
|
|
|
|
|
|
|
|
|
if (x < 0) x = 0;
|
|
|
|
|
if (y < 0) y = 0;
|
|
|
|
|
|
|
|
|
|
return new Point((x * this.TileSize), ((y * this.TileSize) + labelHeight));
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-17 18:52:37 +00:00
|
|
|
|
public async Task InvalidateContainer()
|
2020-05-15 22:34:31 +00:00
|
|
|
|
{
|
|
|
|
|
if (isAnimating)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isChecked)
|
|
|
|
|
{
|
|
|
|
|
await this.Expand();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2020-05-17 18:52:37 +00:00
|
|
|
|
await this.Collapse();
|
2020-05-15 22:34:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void AddGroup()
|
|
|
|
|
{
|
|
|
|
|
if (this.FlowLayoutPanel == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-16 12:25:59 +00:00
|
|
|
|
this.FlowLayoutPanel.Controls.Add(new TTilePanelLayout(new TileGroupModel()
|
2020-05-15 22:34:31 +00:00
|
|
|
|
{
|
|
|
|
|
Title = "New Group",
|
|
|
|
|
GridSize = new Size(8, 1)
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-08 16:12:12 +00:00
|
|
|
|
public void AddRow() => this.SetGridSize(gridSize.X, (gridSize.Y + 1));
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
public void EditGroup() => EditGroupForm.ShowDialog(this);
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
2020-05-16 12:25:59 +00:00
|
|
|
|
public void LoadModel(TileGroupModel model)
|
2020-05-15 22:34:31 +00:00
|
|
|
|
{
|
2020-05-20 20:29:51 +00:00
|
|
|
|
groupModel = model;
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
2020-05-20 20:29:51 +00:00
|
|
|
|
isChecked = groupModel.IsExpanded;
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
2020-05-20 20:29:51 +00:00
|
|
|
|
this.SetGridSize(groupModel.GridSize.Width, groupModel.GridSize.Height);
|
2020-05-16 12:25:59 +00:00
|
|
|
|
this.LoadTiles(model.Items);
|
2020-05-20 20:29:51 +00:00
|
|
|
|
this.SetGridSize(groupModel.GridSize.Width, groupModel.GridSize.Height);
|
2020-05-16 12:25:59 +00:00
|
|
|
|
|
|
|
|
|
this.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdateModel(TileGroupModel model)
|
|
|
|
|
{
|
2020-05-20 20:29:51 +00:00
|
|
|
|
groupModel = model;
|
|
|
|
|
isChecked = groupModel.IsExpanded;
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
|
|
|
|
this.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void LoadTiles(List<TileModel> tiles)
|
|
|
|
|
{
|
|
|
|
|
if (tiles == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tiles.Count() <= 0)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (TileModel item in tiles)
|
|
|
|
|
{
|
|
|
|
|
// resolve final grid position
|
|
|
|
|
Point? confirmedPosition = resolveCoord(item.Position);
|
|
|
|
|
if (confirmedPosition == null)
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// place control
|
2020-05-16 12:25:59 +00:00
|
|
|
|
TTilePanel panel = new TTilePanel();
|
2020-05-15 22:34:31 +00:00
|
|
|
|
panel.LoadInfo(item);
|
|
|
|
|
panel.Location = convertCoordToLocation(confirmedPosition.Value);
|
|
|
|
|
|
|
|
|
|
items.Add(new Item()
|
|
|
|
|
{
|
|
|
|
|
Tile = panel,
|
|
|
|
|
Coord = confirmedPosition.Value
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.Controls.Add(panel);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-16 12:25:59 +00:00
|
|
|
|
public void MoveTile(TTilePanel panel, int posX, int posY)
|
2020-05-15 22:34:31 +00:00
|
|
|
|
{
|
|
|
|
|
Item item = items.Where(x => x.Tile.Equals(panel)).FirstOrDefault();
|
|
|
|
|
if (item == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
Point newPosition = convertLocationToCoord_Nearest(posX, posY);
|
2020-05-15 22:34:31 +00:00
|
|
|
|
if (!isTileInBounds(newPosition))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (hasTile(newPosition))
|
|
|
|
|
{
|
|
|
|
|
Item swapItem = items.Where(x => x.Coord.Equals(newPosition)).FirstOrDefault();
|
|
|
|
|
if (swapItem != null)
|
|
|
|
|
{
|
|
|
|
|
swapItem.Coord = item.Coord;
|
|
|
|
|
swapItem.Tile.Location = convertCoordToLocation(item.Coord);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
item.Coord = newPosition;
|
|
|
|
|
panel.Location = convertCoordToLocation(newPosition);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
item.Coord = newPosition;
|
|
|
|
|
panel.Location = convertCoordToLocation(newPosition);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void MoveTop()
|
|
|
|
|
{
|
|
|
|
|
if (this.FlowLayoutPanel == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.FlowLayoutPanel.Controls.SetChildIndex(this, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void MoveUp()
|
|
|
|
|
{
|
|
|
|
|
if (this.FlowLayoutPanel == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int pos = this.FlowLayoutPanel.Controls.GetChildIndex(this);
|
|
|
|
|
if (pos <= 0)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.FlowLayoutPanel.Controls.SetChildIndex(this, (pos - 1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void MoveDown()
|
|
|
|
|
{
|
|
|
|
|
if (this.FlowLayoutPanel == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int pos = this.FlowLayoutPanel.Controls.GetChildIndex(this);
|
|
|
|
|
if (pos >= (this.FlowLayoutPanel.Controls.Count - 1))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.FlowLayoutPanel.Controls.SetChildIndex(this, (pos + 1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void MoveBottom()
|
|
|
|
|
{
|
|
|
|
|
if (this.FlowLayoutPanel == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.FlowLayoutPanel.Controls.SetChildIndex(this, (this.FlowLayoutPanel.Controls.Count - 1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Remove()
|
|
|
|
|
{
|
|
|
|
|
if (this.FlowLayoutPanel == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.FlowLayoutPanel.Controls.Remove(this);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-16 12:25:59 +00:00
|
|
|
|
public void Remove(TTilePanel panel)
|
2020-05-15 22:34:31 +00:00
|
|
|
|
{
|
|
|
|
|
Item m = items.Where(x => x.Tile.Equals(panel)).FirstOrDefault();
|
|
|
|
|
if (m != null)
|
|
|
|
|
{
|
|
|
|
|
items.Remove(m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.Controls.Remove(panel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetGridSize(int width, int height)
|
|
|
|
|
{
|
2020-05-17 18:52:37 +00:00
|
|
|
|
gridSize = new Point(width, height);
|
|
|
|
|
|
2020-11-08 16:12:12 +00:00
|
|
|
|
groupModel.GridSize.Height = height;
|
|
|
|
|
|
2020-05-15 22:34:31 +00:00
|
|
|
|
expandedHeight = (this.TileSize * height) + labelHeight;
|
|
|
|
|
|
2020-05-20 20:29:51 +00:00
|
|
|
|
int w = (this.TileSize * gridSize.X);
|
|
|
|
|
|
|
|
|
|
this.Size = new Size(w, (isChecked ? this.ExpandedHeight : this.CollapseHeight));
|
2020-05-15 22:34:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected Point convertCoordToLocation(Point position) => new Point((position.X * this.TileSize), ((position.Y * this.TileSize) + labelHeight));
|
|
|
|
|
|
|
|
|
|
protected Point convertLocationToCoord(int posX, int posY)
|
2020-05-17 01:17:30 +00:00
|
|
|
|
{
|
|
|
|
|
int x = (int)Math.Ceiling(decimal.Divide(posX, this.TileSize));
|
|
|
|
|
int y = (int)Math.Ceiling(decimal.Divide((posY - labelHeight), this.TileSize));
|
|
|
|
|
|
|
|
|
|
x--;
|
|
|
|
|
y--;
|
|
|
|
|
|
|
|
|
|
if (x < 0) x = 0;
|
|
|
|
|
if (y < 0) y = 0;
|
|
|
|
|
|
|
|
|
|
return new Point(x, y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected Point convertLocationToCoord_Nearest(int posX, int posY)
|
2020-05-15 22:34:31 +00:00
|
|
|
|
{
|
|
|
|
|
int x = (int)Math.Round(decimal.Divide(posX, this.TileSize));
|
|
|
|
|
int y = (int)Math.Round(decimal.Divide((posY - labelHeight), this.TileSize));
|
|
|
|
|
|
|
|
|
|
if (x < 0) x = 0;
|
|
|
|
|
if (y < 0) y = 0;
|
|
|
|
|
|
|
|
|
|
return new Point(x, y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected Point? findFirstFreeCoord()
|
|
|
|
|
{
|
|
|
|
|
Point gridSize = this.GridSize;
|
|
|
|
|
|
|
|
|
|
for (int y = 0; y < gridSize.Y; y++)
|
|
|
|
|
{
|
|
|
|
|
for (int x = 0; x < gridSize.X; x++)
|
|
|
|
|
{
|
|
|
|
|
if (hasTile(new Point(x, y)))
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new Point(x, y);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected Point? findLastFreeCoord()
|
|
|
|
|
{
|
|
|
|
|
Point gridSize = this.GridSize;
|
|
|
|
|
|
|
|
|
|
// none available
|
|
|
|
|
if (items.Count >= (gridSize.X * gridSize.Y))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (items.Count <= 0)
|
|
|
|
|
{
|
|
|
|
|
return findFirstFreeCoord();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// only one available
|
|
|
|
|
if (items.Count >= ((gridSize.X * gridSize.Y) - 1))
|
|
|
|
|
{
|
|
|
|
|
return findFirstFreeCoord();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Point? rv = null;
|
|
|
|
|
|
|
|
|
|
for (int y = (gridSize.Y - 1); y >= 0; y--)
|
|
|
|
|
{
|
|
|
|
|
for (int x = (gridSize.X - 1); x >= 0; x--)
|
|
|
|
|
{
|
|
|
|
|
if (hasTile(new Point(x, y)))
|
|
|
|
|
{
|
|
|
|
|
if (rv.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
rv = new Point(x, y);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected bool hasTile(Point position)
|
|
|
|
|
{
|
|
|
|
|
if (items == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (items.Count <= 0)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (items.Count(x => x.Coord.Equals(position)) > 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected bool isTileInBounds(Point position)
|
|
|
|
|
{
|
|
|
|
|
Point gridSize = this.GridSize;
|
|
|
|
|
|
|
|
|
|
if (position.X >= gridSize.X)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (position.Y >= gridSize.Y)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected Point? resolveCoord(Point coord)
|
|
|
|
|
{
|
|
|
|
|
if (!isTileInBounds(coord))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!hasTile(coord))
|
|
|
|
|
{
|
|
|
|
|
return coord;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return resolveNextCoord(coord);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected Point? resolveNextCoord(Point coord)
|
|
|
|
|
{
|
|
|
|
|
Point gridSize = this.GridSize;
|
|
|
|
|
Point newCoord = coord;
|
|
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
newCoord.X++;
|
|
|
|
|
|
|
|
|
|
if (newCoord.X >= gridSize.X)
|
|
|
|
|
{
|
|
|
|
|
newCoord.Y++;
|
|
|
|
|
newCoord.X = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!isTileInBounds(newCoord))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (hasTile(newCoord))
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return newCoord;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-17 01:17:30 +00:00
|
|
|
|
private void addTileMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Point coord = convertLocationToCoord(lastMousePosition.X, lastMousePosition.Y);
|
|
|
|
|
|
|
|
|
|
AddTileForm.ShowDialog(this, coord);
|
|
|
|
|
}
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
2020-05-17 02:24:46 +00:00
|
|
|
|
private void addListTileMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Point coord = convertLocationToCoord(lastMousePosition.X, lastMousePosition.Y);
|
|
|
|
|
|
|
|
|
|
AddListTileForm.ShowDialog(this, coord);
|
|
|
|
|
}
|
2020-05-15 22:34:31 +00:00
|
|
|
|
|
|
|
|
|
private void addGroupMenuItem_Click(object sender, EventArgs e) => this.AddGroup();
|
|
|
|
|
|
|
|
|
|
private void addRowMenuItem_Click(object sender, EventArgs e) => this.AddRow();
|
|
|
|
|
|
|
|
|
|
private void editGroupMenuItem_Click(object sender, EventArgs e) => this.EditGroup();
|
|
|
|
|
|
|
|
|
|
private void moveTopMenuItem_Click(object sender, EventArgs e) => this.MoveTop();
|
|
|
|
|
|
|
|
|
|
private void moveUpMenuItem_Click(object sender, EventArgs e) => this.MoveUp();
|
|
|
|
|
|
|
|
|
|
private void moveDownMenuItem_Click(object sender, EventArgs e) => this.MoveDown();
|
|
|
|
|
|
|
|
|
|
private void moveBottomMenuItem_Click(object sender, EventArgs e) => this.MoveBottom();
|
|
|
|
|
|
|
|
|
|
private void removeGroupMenuItem3_Click(object sender, EventArgs e) => this.Remove();
|
|
|
|
|
|
2020-11-08 16:12:12 +00:00
|
|
|
|
private void removeRowToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
bool rs = items.Exists(x => x.Coord.Y.Equals(gridSize.Y - 1));
|
|
|
|
|
if (!rs)
|
|
|
|
|
{
|
|
|
|
|
this.SetGridSize(gridSize.X, (gridSize.Y - 1));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-15 22:34:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|