pkNX/pkNX.WinForms/Controls/LandmarkEditor8a.cs
Kurt 8e83b63d95
Flatsharp codegen (#326)
* Manually translated/attributed fbs files.

* Include fields in obj-as-table dump

* Emit fields for json too. FlatSharp generates structs with fields rather than properties at fixed offsets (maybe I'm missing a setting)

* Update .editorconfig to ignore generated code files (unsure if this actually works).
2023-04-06 18:00:19 -07:00

66 lines
1.8 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using pkNX.Structures.FlatBuffers.Arceus;
namespace pkNX.WinForms.Controls;
public partial class LandmarkEditor8a : UserControl
{
public IList<LandmarkItemSpawn> Spawners = Array.Empty<LandmarkItemSpawn>();
public LandmarkEditor8a() => InitializeComponent();
public void LoadTable(IList<LandmarkItemSpawn> table, string path)
{
Spawners = table;
if (table.Count == 0)
{
Visible = false;
return;
}
Visible = true;
L_ConfigName.Text = path;
var items = table.Select(z => new ComboItem(z.NameSummary.Replace("\"", ""), z)).ToArray();
CB_Encounters.DisplayMember = nameof(ComboItem.Text);
CB_Encounters.ValueMember = nameof(ComboItem.Value);
CB_Encounters.DataSource = new BindingSource(items, null);
CB_Encounters.SelectedIndex = 0;
}
private class ComboItem
{
public ComboItem(string text, LandmarkItemSpawn value)
{
Text = text;
Value = value;
}
public string Text { get; }
public LandmarkItemSpawn Value { get; }
}
private void CB_Encounters_SelectedIndexChanged(object sender, EventArgs e)
{
if (CB_Encounters.SelectedValue is not LandmarkItemSpawn spawner)
throw new ArgumentException(nameof(CB_Encounters.SelectedValue));
PG_Encounters.SelectedObject = spawner;
}
private void B_HighEncounterChance_Click(object sender, EventArgs e)
{
const int chance = 75;
foreach (var spawner in Spawners)
{
spawner.ActivationRate = chance;
}
WinFormsUtil.Alert($"Changed all encounter chance to {chance}%.");
CB_Encounters_SelectedIndexChanged(sender, e);
}
}