mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
bc1776f8a2
Also finished implementation of PKRS strain/days hiding depending on infected/cured status.
222 lines
No EOL
7.8 KiB
C#
222 lines
No EOL
7.8 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using System.Security.Cryptography;
|
|
using System.Reflection;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace PKHeX
|
|
{
|
|
public partial class frmReport : Form
|
|
{
|
|
private byte[] SaveData;
|
|
public frmReport()
|
|
{
|
|
InitializeComponent();
|
|
dgData.DoubleBuffered(true);
|
|
}
|
|
public void PopulateData(byte[] InputData, int savindex, int baseoffset)
|
|
{
|
|
SaveData = new byte[InputData.Length];
|
|
Array.Copy(InputData, SaveData, InputData.Length);
|
|
PokemonList PL = new PokemonList();
|
|
PKX.Structures.SaveGame SaveGame = new PKX.Structures.SaveGame("XY");
|
|
if (savindex > 1) savindex = 0;
|
|
for (int BoxNum = 0; BoxNum < 31; BoxNum++)
|
|
{
|
|
int boxoffset = baseoffset + 0x7F000 * savindex + BoxNum * (0xE8 * 30);
|
|
for (int SlotNum = 0; SlotNum < 30; SlotNum++)
|
|
{
|
|
int offset = boxoffset + 0xE8 * SlotNum;
|
|
byte[] slotdata = new byte[0xE8];
|
|
Array.Copy(SaveData, offset, slotdata, 0, 0xE8);
|
|
byte[] dslotdata = PKX.decryptArray(slotdata);
|
|
if (BitConverter.ToUInt16(dslotdata, 0x8) == 0) continue;
|
|
string Identifier = String.Format("B{0}:{1}",BoxNum.ToString("00"),SlotNum.ToString("00"));
|
|
PKX pkm = new PKX(dslotdata, Identifier);
|
|
if ((pkm.EC == "00000000") && (pkm.Species == "---")) continue;
|
|
PL.Add(pkm);
|
|
}
|
|
}
|
|
dgData.DataSource = PL;
|
|
dgData.AutoGenerateColumns = true;
|
|
for (int i = 0; i < dgData.Columns.Count; i++)
|
|
{
|
|
if (dgData.Columns[i] is DataGridViewImageColumn) continue; // Don't add sorting for Sprites
|
|
dgData.Columns[i].SortMode = DataGridViewColumnSortMode.Automatic;
|
|
}
|
|
}
|
|
private void promptSaveCSV(object sender, FormClosingEventArgs e)
|
|
{
|
|
if (Util.Prompt(MessageBoxButtons.YesNo,"Save all the data to CSV?") == DialogResult.Yes)
|
|
{
|
|
SaveFileDialog savecsv = new SaveFileDialog();
|
|
savecsv.Filter = "Spreadsheet|*.csv";
|
|
savecsv.FileName = "Box Data Dump.csv";
|
|
if (savecsv.ShowDialog() == DialogResult.OK)
|
|
Export_CSV(savecsv.FileName);
|
|
}
|
|
}
|
|
private void Export_CSV(string path)
|
|
{
|
|
var sb = new StringBuilder();
|
|
|
|
var headers = dgData.Columns.Cast<DataGridViewColumn>();
|
|
sb.AppendLine(string.Join(",", headers.Select(column => "\"" + column.HeaderText + "\"").ToArray()));
|
|
|
|
foreach (DataGridViewRow row in dgData.Rows)
|
|
{
|
|
var cells = row.Cells.Cast<DataGridViewCell>();
|
|
sb.AppendLine(string.Join(",", cells.Select(cell => "\"" + cell.Value + "\"").ToArray()));
|
|
}
|
|
System.IO.File.WriteAllText(path, sb.ToString(), Encoding.UTF8);
|
|
}
|
|
|
|
public class PokemonList : SortableBindingList<PKX> { }
|
|
|
|
}
|
|
public static class ExtensionMethods // Speed up scrolling
|
|
{
|
|
public static void DoubleBuffered(this DataGridView dgv, bool setting)
|
|
{
|
|
Type dgvType = dgv.GetType();
|
|
PropertyInfo pi = dgvType.GetProperty("DoubleBuffered", BindingFlags.Instance | BindingFlags.NonPublic);
|
|
pi.SetValue(dgv, setting, null);
|
|
}
|
|
}
|
|
public class SortableBindingList<T> : BindingList<T>
|
|
{
|
|
private readonly Dictionary<Type, PropertyComparer<T>> comparers;
|
|
private bool isSorted;
|
|
private ListSortDirection listSortDirection;
|
|
private PropertyDescriptor propertyDescriptor;
|
|
|
|
public SortableBindingList()
|
|
: base(new List<T>())
|
|
{
|
|
this.comparers = new Dictionary<Type, PropertyComparer<T>>();
|
|
}
|
|
|
|
public SortableBindingList(IEnumerable<T> enumeration)
|
|
: base(new List<T>(enumeration))
|
|
{
|
|
this.comparers = new Dictionary<Type, PropertyComparer<T>>();
|
|
}
|
|
|
|
protected override bool SupportsSortingCore
|
|
{
|
|
get { return true; }
|
|
}
|
|
|
|
protected override bool IsSortedCore
|
|
{
|
|
get { return this.isSorted; }
|
|
}
|
|
|
|
protected override PropertyDescriptor SortPropertyCore
|
|
{
|
|
get { return this.propertyDescriptor; }
|
|
}
|
|
|
|
protected override ListSortDirection SortDirectionCore
|
|
{
|
|
get { return this.listSortDirection; }
|
|
}
|
|
|
|
protected override bool SupportsSearchingCore
|
|
{
|
|
get { return true; }
|
|
}
|
|
|
|
protected override void ApplySortCore(PropertyDescriptor property, ListSortDirection direction)
|
|
{
|
|
List<T> itemsList = (List<T>)this.Items;
|
|
|
|
Type propertyType = property.PropertyType;
|
|
PropertyComparer<T> comparer;
|
|
if (!this.comparers.TryGetValue(propertyType, out comparer))
|
|
{
|
|
comparer = new PropertyComparer<T>(property, direction);
|
|
this.comparers.Add(propertyType, comparer);
|
|
}
|
|
|
|
comparer.SetPropertyAndDirection(property, direction);
|
|
itemsList.Sort(comparer);
|
|
|
|
this.propertyDescriptor = property;
|
|
this.listSortDirection = direction;
|
|
this.isSorted = true;
|
|
|
|
this.OnListChanged(new ListChangedEventArgs(ListChangedType.Reset, -1));
|
|
}
|
|
|
|
protected override void RemoveSortCore()
|
|
{
|
|
this.isSorted = false;
|
|
this.propertyDescriptor = base.SortPropertyCore;
|
|
this.listSortDirection = base.SortDirectionCore;
|
|
|
|
this.OnListChanged(new ListChangedEventArgs(ListChangedType.Reset, -1));
|
|
}
|
|
|
|
protected override int FindCore(PropertyDescriptor property, object key)
|
|
{
|
|
int count = this.Count;
|
|
for (int i = 0; i < count; ++i)
|
|
{
|
|
T element = this[i];
|
|
if (property.GetValue(element).Equals(key))
|
|
{
|
|
return i;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
}
|
|
public class PropertyComparer<T> : IComparer<T>
|
|
{
|
|
private readonly IComparer comparer;
|
|
private PropertyDescriptor propertyDescriptor;
|
|
private int reverse;
|
|
|
|
public PropertyComparer(PropertyDescriptor property, ListSortDirection direction)
|
|
{
|
|
this.propertyDescriptor = property;
|
|
Type comparerForPropertyType = typeof(Comparer<>).MakeGenericType(property.PropertyType);
|
|
this.comparer = (IComparer)comparerForPropertyType.InvokeMember("Default", BindingFlags.Static | BindingFlags.GetProperty | BindingFlags.Public, null, null, null);
|
|
this.SetListSortDirection(direction);
|
|
}
|
|
|
|
#region IComparer<T> Members
|
|
|
|
public int Compare(T x, T y)
|
|
{
|
|
return this.reverse * this.comparer.Compare(this.propertyDescriptor.GetValue(x), this.propertyDescriptor.GetValue(y));
|
|
}
|
|
|
|
#endregion
|
|
|
|
private void SetPropertyDescriptor(PropertyDescriptor descriptor)
|
|
{
|
|
this.propertyDescriptor = descriptor;
|
|
}
|
|
|
|
private void SetListSortDirection(ListSortDirection direction)
|
|
{
|
|
this.reverse = direction == ListSortDirection.Ascending ? 1 : -1;
|
|
}
|
|
|
|
public void SetPropertyAndDirection(PropertyDescriptor descriptor, ListSortDirection direction)
|
|
{
|
|
this.SetPropertyDescriptor(descriptor);
|
|
this.SetListSortDirection(direction);
|
|
}
|
|
}
|
|
} |