using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Toolbox; using System.Windows.Forms; using Toolbox.Library; using Toolbox.Library.IO; namespace FirstPlugin { public class CTPK : IFileFormat { public FileType FileType { get; set; } = FileType.Layout; public bool CanSave { get; set; } public string[] Description { get; set; } = new string[] { "CTR Texture Package" }; public string[] Extension { get; set; } = new string[] { "*.ctpk" }; 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 Toolbox.Library.IO.FileReader(stream, true)) { return reader.CheckSignature(4, "CTPK"); } } public Type[] Types { get { List types = new List(); return types.ToArray(); } } public void Load(System.IO.Stream stream) { } public void Unload() { } public byte[] Save() { return null; } public class Header { public const string MAGIC = "CTPK"; public void Read(FileReader reader) { reader.ReadSignature(4, MAGIC); } public void Write(FileWriter writer) { writer.Write(MAGIC); } } } }