b8c8ef8395
The aamp editor now acts like the byaml one. Fixed aamp files saving with improper strings. Added toggle for viewport in bfres editor. The setting will apply to the config so you can always disable it for quicker previewing for bfres. More editors for bfres now dock rather than convering the whole screen. Plugins can have icons for the toolstrip that contains the save/update icons. Force PTCL texture injection due to an alignment thing
137 lines
4.0 KiB
C#
137 lines
4.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Windows.Forms;
|
|
using Bfres.Structs;
|
|
|
|
namespace FirstPlugin.Forms
|
|
{
|
|
public partial class SamplerEditorSimple : UserControl
|
|
{
|
|
private Thread Thread;
|
|
|
|
public SamplerEditorSimple()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void LoadTexture(MatTexture texture)
|
|
{
|
|
nameTB.Text = texture.Name;
|
|
|
|
samplerCB.Items.Clear();
|
|
samplerCB.Items.Add(texture.SamplerName);
|
|
samplerCB.SelectedItem = texture.SamplerName;
|
|
|
|
if (texture.wiiUSampler != null)
|
|
{
|
|
stPropertyGrid1.LoadProperty(texture.wiiUSampler , OnPropertyChanged);
|
|
}
|
|
else
|
|
{
|
|
stPropertyGrid1.LoadProperty(texture.switchSampler, OnPropertyChanged);
|
|
}
|
|
|
|
foreach (BNTX bntx in PluginRuntime.bntxContainers)
|
|
{
|
|
if (bntx.Textures.ContainsKey(texture.Name))
|
|
{
|
|
Thread = new Thread((ThreadStart)(() =>
|
|
{
|
|
textureBP.Image = Switch_Toolbox.Library.Imaging.GetLoadingImage();
|
|
textureBP.Image = bntx.Textures[texture.Name].GetBitmap();
|
|
}));
|
|
Thread.Start();
|
|
}
|
|
}
|
|
foreach (BFRESGroupNode ftexCont in PluginRuntime.ftexContainers)
|
|
{
|
|
if (ftexCont.ResourceNodes.ContainsKey(texture.Name))
|
|
{
|
|
Thread = new Thread((ThreadStart)(() =>
|
|
{
|
|
textureBP.Image = Switch_Toolbox.Library.Imaging.GetLoadingImage();
|
|
textureBP.Image = ((FTEX)ftexCont.ResourceNodes[texture.Name]).GetBitmap();
|
|
}));
|
|
Thread.Start();
|
|
}
|
|
}
|
|
}
|
|
|
|
private void OnPropertyChanged()
|
|
{
|
|
|
|
}
|
|
|
|
private void stTextBox2_TextChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
public void SetEditorOrientation(bool ToVertical)
|
|
{
|
|
displayVerticalToolStripMenuItem.Checked = ToVertical;
|
|
}
|
|
|
|
private void displayVerticalToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
if (displayVerticalToolStripMenuItem.Checked)
|
|
{
|
|
DisplayHorizontal();
|
|
}
|
|
else
|
|
{
|
|
DisplayVertical();
|
|
}
|
|
}
|
|
|
|
private void DisplayHorizontal()
|
|
{
|
|
if (splitContainer2.Panel1Collapsed)
|
|
return;
|
|
|
|
var ImagePanel = stPanel1;
|
|
var PropertiesEditor = stPropertyGrid1;
|
|
|
|
//Swap panels
|
|
splitContainer2.Panel1.Controls.Clear();
|
|
splitContainer2.Panel2.Controls.Clear();
|
|
|
|
splitContainer2.Orientation = Orientation.Vertical;
|
|
splitContainer2.Panel1.Controls.Add(ImagePanel);
|
|
splitContainer2.Panel2.Controls.Add(PropertiesEditor);
|
|
stPropertyGrid1.ShowHintDisplay = true;
|
|
|
|
PropertiesEditor.Width = this.Width / 2;
|
|
|
|
splitContainer2.SplitterDistance = this.Width / 2;
|
|
}
|
|
|
|
private void DisplayVertical()
|
|
{
|
|
if (splitContainer2.Panel2Collapsed)
|
|
return;
|
|
|
|
var ImagePanel = stPanel1;
|
|
var PropertiesEditor = stPropertyGrid1;
|
|
|
|
//Swap panels
|
|
splitContainer2.Panel1.Controls.Clear();
|
|
splitContainer2.Panel2.Controls.Clear();
|
|
|
|
splitContainer2.Orientation = Orientation.Horizontal;
|
|
splitContainer2.Panel2.Controls.Add(ImagePanel);
|
|
splitContainer2.Panel1.Controls.Add(PropertiesEditor);
|
|
|
|
splitContainer2.SplitterDistance = this.Height / 2;
|
|
|
|
stPropertyGrid1.ShowHintDisplay = false;
|
|
}
|
|
}
|
|
}
|