PKHeX/Subforms/Save Editors/Gen6/SAV_BoxLayout.cs

66 lines
2.2 KiB
C#
Raw Normal View History

2014-06-28 21:22:05 +00:00
using System;
using System.Windows.Forms;
namespace PKHeX
{
public partial class SAV_BoxLayout : Form
{
public SAV_BoxLayout(int box)
2014-06-28 21:22:05 +00:00
{
InitializeComponent();
Util.TranslateInterface(this, Main.curlanguage);
editing = true;
2015-12-15 06:14:57 +00:00
2014-08-02 06:03:14 +00:00
// Repopulate Wallpaper names
CB_BG.Items.Clear();
foreach (string wallpaper in Main.wallpapernames)
CB_BG.Items.Add(wallpaper);
2015-12-15 06:14:57 +00:00
2014-08-02 06:03:14 +00:00
// Go
MT_BG1.Text = SAV.Data[SAV.PCFlags + 0].ToString();
CB_Unlocked.SelectedIndex = SAV.Data[SAV.PCFlags + 1] - 1;
MT_BG2.Text = SAV.Data[SAV.PCFlags + 2].ToString();
LB_BoxSelect.SelectedIndex = box;
2014-06-28 21:22:05 +00:00
}
private readonly SAV6 SAV = new SAV6(Main.SAV.Data);
private bool editing;
2014-06-28 21:22:05 +00:00
private void changeBox(object sender, EventArgs e)
{
editing = true;
int bgoff = SAV.PCBackgrounds + LB_BoxSelect.SelectedIndex;
CB_BG.SelectedIndex = SAV.Data[bgoff];
TB_BoxName.Text = SAV.getBoxName(LB_BoxSelect.SelectedIndex);
2014-06-28 21:22:05 +00:00
editing = false;
}
private void changeBoxDetails(object sender, EventArgs e)
{
2015-12-15 06:14:57 +00:00
if (!editing)
SAV.setBoxName(LB_BoxSelect.SelectedIndex, TB_BoxName.Text);
2014-06-28 21:22:05 +00:00
}
private void B_Cancel_Click(object sender, EventArgs e)
{
Close();
}
private void B_Save_Click(object sender, EventArgs e)
{
SAV.Data[SAV.PCFlags + 0] = (byte)Util.ToUInt32(MT_BG1.Text);
SAV.Data[SAV.PCFlags + 1] = (byte)Util.ToUInt32(CB_Unlocked.Text);
SAV.Data[SAV.PCFlags + 2] = (byte)Util.ToUInt32(MT_BG2.Text);
2015-12-15 06:14:57 +00:00
Array.Copy(SAV.Data, Main.SAV.Data, SAV.Data.Length);
Main.SAV.Edited = true;
2014-06-28 21:22:05 +00:00
Close();
}
2014-08-02 06:03:14 +00:00
private void changeBoxBG(object sender, EventArgs e)
{
2015-12-15 06:14:57 +00:00
if (!editing)
SAV.Data[SAV.PCBackgrounds + LB_BoxSelect.SelectedIndex] = (byte)CB_BG.SelectedIndex;
2014-11-22 03:26:16 +00:00
PAN_BG.BackgroundImage = BoxWallpaper.getWallpaper(SAV, CB_BG.SelectedIndex + 1);
2014-08-02 06:03:14 +00:00
}
2014-06-28 21:22:05 +00:00
}
}