PKHeX/PKHeX.WinForms/Subforms/Save Editors/Gen6/SAV_PokeBlockORAS.cs
Kurt fc754b346b
File scoped namespaces (#3529)
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces)

Updates all the files, one less level of indentation.

Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
2022-06-18 11:04:24 -07:00

72 lines
2.6 KiB
C#

using System;
using System.Windows.Forms;
using PKHeX.Core;
using static System.Buffers.Binary.BinaryPrimitives;
namespace PKHeX.WinForms;
public partial class SAV_PokeBlockORAS : Form
{
private readonly SaveFile Origin;
private readonly SAV6AO SAV;
public SAV_PokeBlockORAS(SaveFile sav)
{
InitializeComponent();
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
SAV = (SAV6AO)(Origin = sav).Clone();
nup_spec = new[] { NUP_Red, NUP_Blue, NUP_Pink, NUP_Green, NUP_Yellow, NUP_Rainbow, NUP_RedPlus, NUP_BluePlus, NUP_PinkPlus, NUP_GreenPlus, NUP_YellowPlus, NUP_RainbowPlus };
Label[] lbl_spec = { L_Red, L_Blue, L_Pink, L_Green, L_Yellow, L_Rainbow, L_RedPlus, L_BluePlus, L_PinkPlus, L_GreenPlus, L_YellowPlus, L_RainbowPlus };
var span = SAV.Data.AsSpan(SAV6AO.Contest);
for (int i = 0; i < lbl_spec.Length; i++)
{
lbl_spec[i].Text = $"{GameInfo.Strings.pokeblocks[94 + i]}:";
nup_spec[i].Value = ReadUInt32LittleEndian(span[(i * 4)..]);
}
}
private readonly NumericUpDown[] nup_spec;
private void B_Cancel_Click(object sender, EventArgs e)
{
Close();
}
private void B_Save_Click(object sender, EventArgs e)
{
var span = SAV.Data.AsSpan(SAV6AO.Contest);
for (int i = 0; i < nup_spec.Length; i++)
WriteUInt32LittleEndian(span[(i*4)..], (uint)nup_spec[i].Value);
Origin.CopyChangesFrom(SAV);
Close();
}
private void B_RandomizeBerries_Click(object sender, EventArgs e)
{
if (DialogResult.Yes != WinFormsUtil.Prompt(MessageBoxButtons.YesNo, "Repopulate all berry plots with random berries?"))
return;
// Randomize the trees.
Span<byte> tree = stackalloc byte[] { 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x80, 0x40, 0x01, 0x00, 0x00, 0x00 };
var plantable = Legal.Pouch_Berry_XY; // 0 index is None, skip with rand
var rnd = Util.Rand;
var plots = SAV.Data.AsSpan(SAV.BerryField);
for (int i = 0; i < 90; i++) // amount of plots in the game
{
var plot = plots[(i * 0x10)..];
tree.CopyTo(plot); // put tree into plot
ushort berry = plantable[rnd.Next(1, plantable.Length)]; // get random berry item ID from list
WriteUInt16LittleEndian(plot[6..], berry); // put berry into tree.
}
}
private void B_GiveAllBlocks_Click(object sender, EventArgs e)
{
foreach (NumericUpDown n in nup_spec)
n.Value = ModifierKeys == Keys.Control ? 0 : 999;
}
}