2014-07-22 05:47:18 +00:00
|
|
|
|
using System;
|
2014-10-11 07:22:22 +00:00
|
|
|
|
using System.Collections.Generic;
|
2015-09-21 03:34:09 +00:00
|
|
|
|
using System.IO;
|
2014-07-22 05:47:18 +00:00
|
|
|
|
using System.Linq;
|
2021-01-17 01:25:55 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2014-10-11 07:22:22 +00:00
|
|
|
|
using System.Windows.Forms;
|
2017-01-08 07:54:09 +00:00
|
|
|
|
using PKHeX.Core;
|
2019-09-29 16:47:06 +00:00
|
|
|
|
using PKHeX.Drawing;
|
2018-04-07 04:23:09 +00:00
|
|
|
|
using static PKHeX.Core.MessageStrings;
|
2014-12-14 04:02:15 +00:00
|
|
|
|
|
2017-01-08 07:54:09 +00:00
|
|
|
|
namespace PKHeX.WinForms
|
2014-07-22 05:47:18 +00:00
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public partial class ReportGrid : Form
|
2014-07-22 05:47:18 +00:00
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public ReportGrid()
|
2014-07-22 05:47:18 +00:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2014-07-24 16:20:08 +00:00
|
|
|
|
dgData.DoubleBuffered(true);
|
2016-04-15 23:11:46 +00:00
|
|
|
|
CenterToParent();
|
2017-06-18 01:37:19 +00:00
|
|
|
|
GetContextMenu();
|
2016-12-28 19:31:32 +00:00
|
|
|
|
}
|
2018-08-04 17:06:06 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void GetContextMenu()
|
2016-12-28 19:31:32 +00:00
|
|
|
|
{
|
2018-04-07 04:23:09 +00:00
|
|
|
|
var mnuHide = new ToolStripMenuItem { Name = "mnuHide", Text = MsgReportColumnHide, };
|
2016-12-28 19:31:32 +00:00
|
|
|
|
mnuHide.Click += (sender, e) =>
|
|
|
|
|
{
|
|
|
|
|
int c = dgData.SelectedCells.Count;
|
|
|
|
|
if (c == 0)
|
2018-04-07 04:23:09 +00:00
|
|
|
|
{ WinFormsUtil.Alert(MsgReportColumnHideFail); return; }
|
2016-12-28 19:31:32 +00:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < c; i++)
|
|
|
|
|
dgData.Columns[dgData.SelectedCells[i].ColumnIndex].Visible = false;
|
|
|
|
|
};
|
2018-04-07 04:23:09 +00:00
|
|
|
|
var mnuRestore = new ToolStripMenuItem { Name = "mnuRestore", Text = MsgReportColumnRestore, };
|
2016-12-28 19:31:32 +00:00
|
|
|
|
mnuRestore.Click += (sender, e) =>
|
|
|
|
|
{
|
|
|
|
|
int c = dgData.ColumnCount;
|
|
|
|
|
for (int i = 0; i < c; i++)
|
|
|
|
|
dgData.Columns[i].Visible = true;
|
|
|
|
|
|
2018-04-07 04:23:09 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgReportColumnRestoreSuccess);
|
2016-12-28 19:31:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-12-22 07:37:07 +00:00
|
|
|
|
ContextMenuStrip mnu = new();
|
2016-12-28 19:31:32 +00:00
|
|
|
|
mnu.Items.Add(mnuHide);
|
|
|
|
|
mnu.Items.Add(mnuRestore);
|
|
|
|
|
|
|
|
|
|
dgData.ContextMenuStrip = mnu;
|
2014-07-22 05:47:18 +00:00
|
|
|
|
}
|
2018-07-15 18:12:02 +00:00
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
private sealed class PokemonList<T> : SortableBindingList<T> where T : class { }
|
2018-07-15 18:12:02 +00:00
|
|
|
|
|
2017-09-29 05:20:27 +00:00
|
|
|
|
public void PopulateData(IList<PKM> Data)
|
2015-10-11 01:29:02 +00:00
|
|
|
|
{
|
2016-07-24 08:31:02 +00:00
|
|
|
|
SuspendLayout();
|
2015-10-11 01:29:02 +00:00
|
|
|
|
BoxBar.Step = 1;
|
2019-07-14 00:43:05 +00:00
|
|
|
|
var PL = new PokemonList<PKMSummaryImage>();
|
2018-08-04 17:06:06 +00:00
|
|
|
|
var strings = GameInfo.Strings;
|
2016-06-20 04:22:43 +00:00
|
|
|
|
foreach (PKM pkm in Data.Where(pkm => pkm.ChecksumValid && pkm.Species != 0))
|
|
|
|
|
{
|
2019-11-16 01:34:18 +00:00
|
|
|
|
pkm.Stat_Level = Experience.GetLevel(pkm.EXP, pkm.PersonalInfo.EXPGrowth); // recalc Level
|
2019-07-14 00:43:05 +00:00
|
|
|
|
PL.Add(new PKMSummaryImage(pkm, strings));
|
2016-06-20 04:22:43 +00:00
|
|
|
|
BoxBar.PerformStep();
|
|
|
|
|
}
|
2015-10-11 01:29:02 +00:00
|
|
|
|
|
|
|
|
|
dgData.DataSource = PL;
|
|
|
|
|
dgData.AutoGenerateColumns = true;
|
2017-09-29 05:20:27 +00:00
|
|
|
|
BoxBar.Maximum = Data.Count + dgData.Columns.Count;
|
2015-10-11 01:29:02 +00:00
|
|
|
|
for (int i = 0; i < dgData.Columns.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
BoxBar.PerformStep();
|
|
|
|
|
if (dgData.Columns[i] is DataGridViewImageColumn) continue; // Don't add sorting for Sprites
|
|
|
|
|
dgData.Columns[i].SortMode = DataGridViewColumnSortMode.Automatic;
|
|
|
|
|
}
|
|
|
|
|
BoxBar.Visible = false;
|
2016-12-28 19:31:32 +00:00
|
|
|
|
|
|
|
|
|
// Trigger Resizing
|
|
|
|
|
dgData.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
|
|
|
|
|
for (int i = 0; i < dgData.Columns.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
int w = dgData.Columns[i].Width;
|
|
|
|
|
dgData.Columns[i].AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
|
|
|
|
|
dgData.Columns[i].Width = w;
|
|
|
|
|
}
|
|
|
|
|
dgData.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.None;
|
2020-10-18 18:02:39 +00:00
|
|
|
|
Data_Sorted(this, EventArgs.Empty); // trigger row resizing
|
2016-12-28 19:31:32 +00:00
|
|
|
|
|
2016-07-24 08:31:02 +00:00
|
|
|
|
ResumeLayout();
|
2015-10-11 01:29:02 +00:00
|
|
|
|
}
|
2018-08-04 17:06:06 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void Data_Sorted(object sender, EventArgs e)
|
2016-12-28 19:31:32 +00:00
|
|
|
|
{
|
2020-03-04 04:22:57 +00:00
|
|
|
|
int height = SpriteUtil.GetSprite(1, 0, 0, 0, 0, false, false).Height + 1; // dummy sprite, max height of a row
|
2016-12-28 19:31:32 +00:00
|
|
|
|
for (int i = 0; i < dgData.Rows.Count; i++)
|
|
|
|
|
dgData.Rows[i].Height = height;
|
|
|
|
|
}
|
2018-08-04 17:06:06 +00:00
|
|
|
|
|
2021-01-17 01:25:55 +00:00
|
|
|
|
private async void PromptSaveCSV(object sender, FormClosingEventArgs e)
|
2014-12-14 04:02:15 +00:00
|
|
|
|
{
|
2018-04-07 04:23:09 +00:00
|
|
|
|
if (WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgReportExportCSV) != DialogResult.Yes)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
return;
|
2019-10-26 19:33:58 +00:00
|
|
|
|
using var savecsv = new SaveFileDialog
|
2014-12-14 04:02:15 +00:00
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Filter = "Spreadsheet|*.csv",
|
|
|
|
|
FileName = "Box Data Dump.csv"
|
|
|
|
|
};
|
|
|
|
|
if (savecsv.ShowDialog() == DialogResult.OK)
|
2021-01-17 01:25:55 +00:00
|
|
|
|
await Export_CSV(savecsv.FileName).ConfigureAwait(false);
|
2014-12-14 04:02:15 +00:00
|
|
|
|
}
|
2018-08-04 17:06:06 +00:00
|
|
|
|
|
2021-01-17 01:25:55 +00:00
|
|
|
|
private async Task Export_CSV(string path)
|
2014-12-14 04:02:15 +00:00
|
|
|
|
{
|
2021-01-17 01:25:55 +00:00
|
|
|
|
using var fs = new FileStream(path, FileMode.Create);
|
|
|
|
|
using var s = new StreamWriter(fs);
|
2014-12-14 04:02:15 +00:00
|
|
|
|
|
|
|
|
|
var headers = dgData.Columns.Cast<DataGridViewColumn>();
|
2021-01-17 01:25:55 +00:00
|
|
|
|
await s.WriteLineAsync(string.Join(",", headers.Skip(1).Select(column => $"\"{column.HeaderText}\""))).ConfigureAwait(false);
|
2016-07-24 08:31:02 +00:00
|
|
|
|
|
|
|
|
|
foreach (var cells in from DataGridViewRow row in dgData.Rows select row.Cells.Cast<DataGridViewCell>())
|
2021-01-17 01:25:55 +00:00
|
|
|
|
await s.WriteLineAsync(string.Join(",", cells.Skip(1).Select(cell => $"\"{cell.Value}\""))).ConfigureAwait(false);
|
2014-12-14 04:02:15 +00:00
|
|
|
|
}
|
2018-05-12 15:13:39 +00:00
|
|
|
|
|
2016-12-08 01:48:45 +00:00
|
|
|
|
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
|
|
|
|
|
{
|
|
|
|
|
bool cp = keyData == (Keys.Control | Keys.C) && ActiveControl is DataGridView;
|
|
|
|
|
if (!cp)
|
|
|
|
|
return base.ProcessCmdKey(ref msg, keyData);
|
|
|
|
|
|
|
|
|
|
string data = dgData.GetClipboardContent().GetText();
|
2018-04-07 04:23:09 +00:00
|
|
|
|
var dr = WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgReportExportTable);
|
2016-12-08 01:48:45 +00:00
|
|
|
|
if (dr != DialogResult.Yes)
|
|
|
|
|
{
|
2019-11-23 05:23:00 +00:00
|
|
|
|
WinFormsUtil.SetClipboardText(data);
|
2016-12-08 01:48:45 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Reformat datagrid clipboard content
|
|
|
|
|
string[] lines = data.Split(new[] { Environment.NewLine }, StringSplitOptions.None);
|
2018-07-15 18:12:02 +00:00
|
|
|
|
string[] newlines = ConvertTabbedToRedditTable(lines);
|
2019-11-23 05:23:00 +00:00
|
|
|
|
WinFormsUtil.SetClipboardText(string.Join(Environment.NewLine, newlines));
|
2018-07-15 18:12:02 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2016-12-08 01:48:45 +00:00
|
|
|
|
|
2018-07-15 18:12:02 +00:00
|
|
|
|
private static string[] ConvertTabbedToRedditTable(string[] lines)
|
|
|
|
|
{
|
2016-12-08 01:48:45 +00:00
|
|
|
|
string[] newlines = new string[lines.Length + 1];
|
2018-07-15 18:12:02 +00:00
|
|
|
|
int tabcount = lines[0].Count(c => c == '\t');
|
|
|
|
|
|
2016-12-08 01:48:45 +00:00
|
|
|
|
newlines[0] = lines[0].Replace('\t', '|');
|
2020-07-19 22:48:45 +00:00
|
|
|
|
newlines[1] = string.Join(":--:", Enumerable.Repeat('|', tabcount + 2)); // 2 pipes for each end
|
2016-12-08 01:48:45 +00:00
|
|
|
|
for (int i = 1; i < lines.Length; i++)
|
|
|
|
|
newlines[i + 1] = lines[i].Replace('\t', '|');
|
2018-07-15 18:12:02 +00:00
|
|
|
|
return newlines;
|
2016-12-08 01:48:45 +00:00
|
|
|
|
}
|
2014-07-22 05:47:18 +00:00
|
|
|
|
}
|
2016-11-14 15:08:54 +00:00
|
|
|
|
}
|