mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-23 21:13:19 +00:00
183 lines
5.9 KiB
C#
183 lines
5.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using Switch_Toolbox;
|
|
using System.Windows.Forms;
|
|
using Switch_Toolbox.Library;
|
|
using Switch_Toolbox.Library.Forms;
|
|
using Switch_Toolbox.Library.IO;
|
|
using ByamlExt.Byaml;
|
|
using ByamlExt;
|
|
using FirstPlugin.Turbo;
|
|
|
|
namespace FirstPlugin
|
|
{
|
|
public class BYAML : IEditor<ByamlEditor>, IFileFormat
|
|
{
|
|
public FileType FileType { get; set; } = FileType.Parameter;
|
|
|
|
public bool CanSave { get; set; }
|
|
public string[] Description { get; set; } = new string[] { "BYAML" };
|
|
public string[] Extension { get; set; } = new string[] { "*.byaml", "*.byml", "*.bprm", "*.sbyml" };
|
|
public string FileName { get; set; }
|
|
public string FilePath { get; set; }
|
|
public IFileInfo IFileInfo { get; set; }
|
|
|
|
public bool Identify(System.IO.Stream stream)
|
|
{
|
|
using (var reader = new Switch_Toolbox.Library.IO.FileReader(stream, true))
|
|
{
|
|
//File too small to have any data
|
|
if (stream.Length <= 16)
|
|
return false;
|
|
|
|
if (reader.CheckSignature(2, "BY") || reader.CheckSignature(2, "YB"))
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public Type[] Types
|
|
{
|
|
get
|
|
{
|
|
List<Type> types = new List<Type>();
|
|
types.Add(typeof(MenuExt));
|
|
return types.ToArray();
|
|
}
|
|
}
|
|
|
|
class MenuExt : IFileMenuExtension
|
|
{
|
|
public STToolStripItem[] NewFileMenuExtensions => null;
|
|
public STToolStripItem[] NewFromFileMenuExtensions => null;
|
|
public STToolStripItem[] ToolsMenuExtensions => toolFileExt;
|
|
public STToolStripItem[] TitleBarExtensions => null;
|
|
public STToolStripItem[] CompressionMenuExtensions => null;
|
|
public STToolStripItem[] ExperimentalMenuExtensions => null;
|
|
public STToolStripItem[] EditMenuExtensions => null;
|
|
public ToolStripButton[] IconButtonMenuExtensions => null;
|
|
|
|
STToolStripItem[] toolFileExt = new STToolStripItem[2];
|
|
|
|
public MenuExt()
|
|
{
|
|
toolFileExt[0] = new STToolStripItem("BYAML to Big Endian", ConvertLEtoBE);
|
|
toolFileExt[1] = new STToolStripItem("BYAML to Little Endian", ConvertBEtoLE);
|
|
}
|
|
|
|
public void ConvertLEtoBE(object sender, EventArgs args)
|
|
{
|
|
var byamlF = new BYAML();
|
|
byamlF.IFileInfo = new IFileInfo();
|
|
|
|
OpenFileDialog ofd = new OpenFileDialog();
|
|
ofd.Filter = Utils.GetAllFilters(byamlF);
|
|
if (ofd.ShowDialog() == DialogResult.OK)
|
|
{
|
|
byamlF.Load(new FileStream(ofd.FileName, FileMode.Open));
|
|
byamlF.data.byteOrder = Syroot.BinaryData.ByteOrder.BigEndian;
|
|
|
|
SaveFileDialog sfd = new SaveFileDialog();
|
|
sfd.Filter = Utils.GetAllFilters(byamlF);
|
|
if (sfd.ShowDialog() == DialogResult.OK)
|
|
{
|
|
STFileSaver.SaveFileFormat(byamlF, sfd.FileName);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
public void ConvertBEtoLE(object sender, EventArgs args)
|
|
{
|
|
var byamlF = new BYAML();
|
|
byamlF.IFileInfo = new IFileInfo();
|
|
|
|
OpenFileDialog ofd = new OpenFileDialog();
|
|
ofd.Filter = Utils.GetAllFilters(byamlF);
|
|
if (ofd.ShowDialog() == DialogResult.OK)
|
|
{
|
|
byamlF.Load(new FileStream(ofd.FileName, FileMode.Open));
|
|
byamlF.data.byteOrder = Syroot.BinaryData.ByteOrder.LittleEndian;
|
|
|
|
SaveFileDialog sfd = new SaveFileDialog();
|
|
sfd.Filter = Utils.GetAllFilters(byamlF);
|
|
if (sfd.ShowDialog() == DialogResult.OK)
|
|
{
|
|
STFileSaver.SaveFileFormat(byamlF, sfd.FileName);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
class EditableNode
|
|
{
|
|
public Type type { get { return Node[Index].GetType(); } }
|
|
dynamic Node;
|
|
dynamic Index;
|
|
|
|
public dynamic Get() { return Node[Index]; }
|
|
|
|
public void Set(dynamic value) { Node[Index] = value; }
|
|
public string GetTreeViewString()
|
|
{
|
|
if (Index is int)
|
|
return Node[Index].ToString();
|
|
else
|
|
return Index + " : " + Node[Index].ToString();
|
|
}
|
|
|
|
public EditableNode(dynamic _node, dynamic _index)
|
|
{
|
|
Node = _node;
|
|
Index = _index;
|
|
}
|
|
}
|
|
|
|
bool IsDialog = false;
|
|
BymlFileData data;
|
|
|
|
private bool SupportPaths = false;
|
|
|
|
public ByamlEditor OpenForm()
|
|
{
|
|
ByamlEditor editor = new ByamlEditor(data.RootNode, SupportPaths, data.Version, data.byteOrder, IsDialog, this);
|
|
editor.FileFormat = this;
|
|
editor.Text = FileName;
|
|
editor.Dock = DockStyle.Fill;
|
|
return editor;
|
|
}
|
|
|
|
public void Load(Stream stream)
|
|
{
|
|
CanSave = true;
|
|
|
|
IsDialog = IFileInfo != null && IFileInfo.InArchive;
|
|
|
|
data = ByamlFile.LoadN(stream, true);
|
|
SupportPaths = data.SupportPaths;
|
|
}
|
|
public void Unload()
|
|
{
|
|
|
|
}
|
|
|
|
public byte[] Save()
|
|
{
|
|
MemoryStream mem = new MemoryStream();
|
|
ByamlFile.SaveN(mem, new BymlFileData
|
|
{
|
|
Version = data.Version,
|
|
byteOrder = data.byteOrder,
|
|
SupportPaths = SupportPaths,
|
|
RootNode = data.RootNode
|
|
});
|
|
|
|
return mem.ToArray();
|
|
}
|
|
}
|
|
}
|