2018-12-05 03:40:03 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Switch_Toolbox.Library.IO;
|
|
|
|
|
using Switch_Toolbox.Library;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using OpenTK.Graphics.OpenGL;
|
|
|
|
|
|
|
|
|
|
namespace FirstPlugin
|
|
|
|
|
{
|
|
|
|
|
public enum BlockType : uint
|
|
|
|
|
{
|
|
|
|
|
Invalid = 0x00,
|
|
|
|
|
EndOfFile = 0x01,
|
|
|
|
|
AlignData = 0x02,
|
|
|
|
|
VertexShaderHeader = 0x03,
|
|
|
|
|
VertexShaderProgram = 0x05,
|
|
|
|
|
PixelShaderHeader = 0x06,
|
|
|
|
|
PixelShaderProgram = 0x07,
|
|
|
|
|
GeometryShaderHeader = 0x08,
|
|
|
|
|
GeometryShaderProgram = 0x09,
|
|
|
|
|
GeometryShaderProgram2 = 0x10,
|
|
|
|
|
ImageInfo = 0x11,
|
|
|
|
|
ImageData = 0x12,
|
|
|
|
|
MipData = 0x13,
|
|
|
|
|
ComputeShaderHeader = 0x14,
|
|
|
|
|
ComputeShader = 0x15,
|
|
|
|
|
UserBlock = 0x16,
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-11 00:48:51 +01:00
|
|
|
|
public class GTXFile : TreeNodeFile, IFileFormat
|
2018-12-05 03:40:03 +01:00
|
|
|
|
{
|
|
|
|
|
public bool CanSave { get; set; } = false;
|
|
|
|
|
public bool FileIsEdited { get; set; } = false;
|
|
|
|
|
public bool FileIsCompressed { get; set; } = false;
|
|
|
|
|
public string[] Description { get; set; } = new string[] { "GTX" };
|
|
|
|
|
public string[] Extension { get; set; } = new string[] { "*.gtx" };
|
|
|
|
|
public string Magic { get; set; } = "Gfx2 ";
|
|
|
|
|
public CompressionType CompressionType { get; set; } = CompressionType.None;
|
|
|
|
|
public byte[] Data { get; set; }
|
|
|
|
|
public string FileName { get; set; }
|
|
|
|
|
public bool IsActive { get; set; } = false;
|
|
|
|
|
public bool UseEditMenu { get; set; } = false;
|
|
|
|
|
public string FilePath { get; set; }
|
|
|
|
|
public IFileInfo IFileInfo { get; set; }
|
|
|
|
|
|
|
|
|
|
public Type[] Types
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
List<Type> types = new List<Type>();
|
|
|
|
|
return types.ToArray();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private GTXHeader header;
|
|
|
|
|
|
|
|
|
|
public List<byte[]> data = new List<byte[]>();
|
|
|
|
|
public List<byte[]> mipMaps = new List<byte[]>();
|
|
|
|
|
public List<TextureData> textures = new List<TextureData>();
|
|
|
|
|
|
|
|
|
|
public List<GTXDataBlock> blocks = new List<GTXDataBlock>();
|
|
|
|
|
|
|
|
|
|
public void Load()
|
|
|
|
|
{
|
|
|
|
|
CanSave = true;
|
|
|
|
|
Text = FileName;
|
|
|
|
|
|
|
|
|
|
ReadGx2(new FileReader(Data));
|
|
|
|
|
|
|
|
|
|
ContextMenu = new ContextMenu();
|
|
|
|
|
MenuItem save = new MenuItem("Save");
|
|
|
|
|
ContextMenu.MenuItems.Add(save);
|
|
|
|
|
save.Click += Save;
|
|
|
|
|
}
|
|
|
|
|
private void Save(object sender, EventArgs args)
|
|
|
|
|
{
|
|
|
|
|
SaveFileDialog sfd = new SaveFileDialog();
|
|
|
|
|
sfd.DefaultExt = "gtx";
|
|
|
|
|
sfd.Filter = "Supported Formats|*.gtx;";
|
|
|
|
|
sfd.FileName = FileName;
|
|
|
|
|
|
|
|
|
|
if (sfd.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
STFileSaver.SaveFileFormat(this, sfd.FileName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public void Unload()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
public byte[] Save()
|
|
|
|
|
{
|
|
|
|
|
System.IO.MemoryStream mem = new System.IO.MemoryStream();
|
|
|
|
|
using (FileWriter writer = new FileWriter(mem))
|
|
|
|
|
{
|
|
|
|
|
writer.ByteOrder = Syroot.BinaryData.ByteOrder.BigEndian;
|
|
|
|
|
header.Write(writer);
|
2018-12-11 00:48:51 +01:00
|
|
|
|
|
|
|
|
|
uint surfBlockType;
|
|
|
|
|
uint dataBlockType;
|
|
|
|
|
uint mipBlockType;
|
|
|
|
|
|
|
|
|
|
if (header.MajorVersion == 6)
|
|
|
|
|
{
|
|
|
|
|
surfBlockType = 0x0A;
|
|
|
|
|
dataBlockType = 0x0B;
|
|
|
|
|
mipBlockType = 0x0C;
|
|
|
|
|
}
|
|
|
|
|
else if (header.MajorVersion == 7)
|
|
|
|
|
{
|
|
|
|
|
surfBlockType = 0x0B;
|
|
|
|
|
dataBlockType = 0x0C;
|
|
|
|
|
mipBlockType = 0x0D;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
throw new Exception($"Unsupported GTX version {header.MajorVersion}");
|
|
|
|
|
|
2018-12-05 03:40:03 +01:00
|
|
|
|
writer.Seek(header.HeaderSize, System.IO.SeekOrigin.Begin);
|
2018-12-11 00:48:51 +01:00
|
|
|
|
foreach (var tex in textures)
|
|
|
|
|
{
|
|
|
|
|
tex.surface.Write(writer);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 03:40:03 +01:00
|
|
|
|
foreach (var block in blocks)
|
2018-12-11 00:48:51 +01:00
|
|
|
|
{
|
|
|
|
|
if ((uint)block.BlockType == surfBlockType)
|
|
|
|
|
{
|
|
|
|
|
block.Write(writer);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
block.Write(writer);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-05 03:40:03 +01:00
|
|
|
|
}
|
|
|
|
|
return mem.ToArray();
|
|
|
|
|
}
|
|
|
|
|
private void ReadGx2(FileReader reader)
|
|
|
|
|
{
|
|
|
|
|
reader.ByteOrder = Syroot.BinaryData.ByteOrder.BigEndian;
|
|
|
|
|
|
|
|
|
|
header = new GTXHeader();
|
|
|
|
|
header.Read(reader);
|
|
|
|
|
|
|
|
|
|
Console.WriteLine("header size " + header.HeaderSize);
|
|
|
|
|
|
|
|
|
|
uint surfBlockType;
|
|
|
|
|
uint dataBlockType;
|
|
|
|
|
uint mipBlockType;
|
|
|
|
|
|
|
|
|
|
if (header.MajorVersion == 6)
|
|
|
|
|
{
|
|
|
|
|
surfBlockType = 0x0A;
|
|
|
|
|
dataBlockType = 0x0B;
|
|
|
|
|
mipBlockType = 0x0C;
|
|
|
|
|
}
|
|
|
|
|
else if (header.MajorVersion == 7)
|
|
|
|
|
{
|
|
|
|
|
surfBlockType = 0x0B;
|
|
|
|
|
dataBlockType = 0x0C;
|
|
|
|
|
mipBlockType = 0x0D;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
throw new Exception($"Unsupported GTX version {header.MajorVersion}");
|
|
|
|
|
|
|
|
|
|
if (header.GpuVersion != 2)
|
|
|
|
|
throw new Exception($"Unsupported GPU version {header.GpuVersion}");
|
|
|
|
|
|
|
|
|
|
reader.Position = header.HeaderSize;
|
|
|
|
|
|
|
|
|
|
bool blockB = false;
|
|
|
|
|
bool blockC = false;
|
|
|
|
|
|
|
|
|
|
uint ImageInfo = 0;
|
|
|
|
|
uint images = 0;
|
|
|
|
|
|
|
|
|
|
while (reader.Position < reader.BaseStream.Length)
|
|
|
|
|
{
|
|
|
|
|
GTXDataBlock block = new GTXDataBlock();
|
|
|
|
|
block.Read(reader);
|
|
|
|
|
blocks.Add(block);
|
|
|
|
|
|
|
|
|
|
//Here we use "if" instead of "case" statements as types vary between versions
|
|
|
|
|
if ((uint)block.BlockType == surfBlockType)
|
|
|
|
|
{
|
|
|
|
|
ImageInfo += 1;
|
|
|
|
|
blockB = true;
|
|
|
|
|
|
|
|
|
|
var surface = new SurfaceInfoParse();
|
|
|
|
|
surface.Read(new FileReader(block.data));
|
|
|
|
|
|
|
|
|
|
if (surface.numMips > 14)
|
|
|
|
|
throw new Exception($"Invalid number of mip maps {surface.numMips}!");
|
|
|
|
|
|
|
|
|
|
TextureData textureData = new TextureData();
|
|
|
|
|
textureData.surface = surface;
|
|
|
|
|
textureData.Text = "Texture" + ImageInfo;
|
|
|
|
|
Nodes.Add(textureData);
|
|
|
|
|
textures.Add(textureData);
|
|
|
|
|
}
|
|
|
|
|
else if ((uint)block.BlockType == dataBlockType)
|
|
|
|
|
{
|
|
|
|
|
images += 1;
|
|
|
|
|
blockC = true;
|
|
|
|
|
|
|
|
|
|
data.Add(block.data);
|
|
|
|
|
}
|
|
|
|
|
else if ((uint)block.BlockType == mipBlockType)
|
|
|
|
|
{
|
|
|
|
|
mipMaps.Add(block.data);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (textures.Count != data.Count)
|
|
|
|
|
throw new Exception($"Bad size! {textures.Count} {data.Count}");
|
|
|
|
|
|
|
|
|
|
int curTex = 0;
|
|
|
|
|
int curMip = 0;
|
|
|
|
|
foreach (var node in Nodes)
|
|
|
|
|
{
|
|
|
|
|
TextureData tex = (TextureData)node;
|
|
|
|
|
tex.surface.data = data[curTex];
|
|
|
|
|
tex.surface.bpp = GTX.surfaceGetBitsPerPixel(tex.surface.format) >> 3;
|
|
|
|
|
|
|
|
|
|
Console.WriteLine();
|
|
|
|
|
|
|
|
|
|
if (tex.surface.numMips > 1 )
|
|
|
|
|
tex.surface.mipData = mipMaps[curMip++];
|
|
|
|
|
else
|
|
|
|
|
tex.surface.mipData = new byte[0];
|
|
|
|
|
|
|
|
|
|
Console.WriteLine("");
|
|
|
|
|
Console.WriteLine("// ----- GX2Surface Info ----- ");
|
|
|
|
|
Console.WriteLine(" dim = " + tex.surface.dim);
|
|
|
|
|
Console.WriteLine(" width = " + tex.surface.width);
|
|
|
|
|
Console.WriteLine(" height = " + tex.surface.height);
|
|
|
|
|
Console.WriteLine(" depth = " + tex.surface.depth);
|
|
|
|
|
Console.WriteLine(" numMips = " + tex.surface.numMips);
|
|
|
|
|
Console.WriteLine(" format = " + tex.surface.format);
|
|
|
|
|
Console.WriteLine(" aa = " + tex.surface.aa);
|
|
|
|
|
Console.WriteLine(" use = " + tex.surface.use);
|
|
|
|
|
Console.WriteLine(" imageSize = " + tex.surface.imageSize);
|
|
|
|
|
Console.WriteLine(" mipSize = " + tex.surface.mipSize);
|
|
|
|
|
Console.WriteLine(" tileMode = " + tex.surface.tileMode);
|
|
|
|
|
Console.WriteLine(" swizzle = " + tex.surface.swizzle);
|
|
|
|
|
Console.WriteLine(" alignment = " + tex.surface.alignment);
|
|
|
|
|
Console.WriteLine(" pitch = " + tex.surface.pitch);
|
|
|
|
|
Console.WriteLine(" bits per pixel = " + (tex.surface.bpp << 3));
|
|
|
|
|
Console.WriteLine(" bytes per pixel = " + tex.surface.bpp);
|
|
|
|
|
Console.WriteLine(" data size = " + tex.surface.data.Length);
|
|
|
|
|
Console.WriteLine(" mip size = " + tex.surface.mipData.Length);
|
|
|
|
|
Console.WriteLine(" realSize = " + tex.surface.imageSize);
|
|
|
|
|
|
|
|
|
|
List<byte[]> mips = GTX.Decode(tex.surface);
|
|
|
|
|
tex.renderedTex.mipmaps.Add(mips);
|
|
|
|
|
tex.renderedTex.width = (int)tex.surface.width;
|
|
|
|
|
tex.renderedTex.height = (int)tex.surface.height;
|
|
|
|
|
|
|
|
|
|
curTex++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public class GTXHeader
|
|
|
|
|
{
|
|
|
|
|
readonly string Magic = "Gfx2";
|
|
|
|
|
public uint HeaderSize;
|
|
|
|
|
public uint MajorVersion;
|
|
|
|
|
public uint MinorVersion;
|
|
|
|
|
public uint GpuVersion;
|
|
|
|
|
public uint AlignMode;
|
|
|
|
|
|
|
|
|
|
public void Read(FileReader reader)
|
|
|
|
|
{
|
|
|
|
|
string Signature = reader.ReadString(4, Encoding.ASCII);
|
|
|
|
|
if (Signature != Magic)
|
|
|
|
|
throw new Exception($"Invalid signature {Signature}! Expected Gfx2.");
|
|
|
|
|
|
|
|
|
|
HeaderSize = reader.ReadUInt32();
|
|
|
|
|
MajorVersion = reader.ReadUInt32();
|
|
|
|
|
MinorVersion = reader.ReadUInt32();
|
|
|
|
|
GpuVersion = reader.ReadUInt32();
|
|
|
|
|
AlignMode = reader.ReadUInt32();
|
|
|
|
|
}
|
|
|
|
|
public void Write(FileWriter writer)
|
|
|
|
|
{
|
|
|
|
|
writer.WriteSignature(Magic);
|
|
|
|
|
writer.Write(HeaderSize);
|
|
|
|
|
writer.Write(MajorVersion);
|
|
|
|
|
writer.Write(MinorVersion);
|
|
|
|
|
writer.Write(GpuVersion);
|
|
|
|
|
writer.Write(AlignMode);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public class GTXDataBlock
|
|
|
|
|
{
|
|
|
|
|
readonly string Magic = "BLK{";
|
|
|
|
|
public uint HeaderSize;
|
|
|
|
|
public uint MajorVersion;
|
|
|
|
|
public uint MinorVersion;
|
|
|
|
|
public BlockType BlockType;
|
|
|
|
|
public uint Identifier;
|
|
|
|
|
public uint index;
|
|
|
|
|
public uint DataSize;
|
|
|
|
|
public byte[] data;
|
|
|
|
|
|
|
|
|
|
public void Read(FileReader reader)
|
|
|
|
|
{
|
|
|
|
|
long blockStart = reader.Position;
|
|
|
|
|
|
|
|
|
|
string Signature = reader.ReadString(4, Encoding.ASCII);
|
|
|
|
|
if (Signature != Magic)
|
|
|
|
|
throw new Exception($"Invalid signature {Signature}! Expected BLK.");
|
|
|
|
|
|
|
|
|
|
HeaderSize = reader.ReadUInt32();
|
|
|
|
|
MajorVersion = reader.ReadUInt32(); //Must be 0x01 for 6.x.x
|
|
|
|
|
MinorVersion = reader.ReadUInt32(); //Must be 0x00 for 6.x.x
|
|
|
|
|
BlockType = reader.ReadEnum<BlockType>(false);
|
|
|
|
|
DataSize = reader.ReadUInt32();
|
|
|
|
|
Identifier = reader.ReadUInt32();
|
|
|
|
|
index = reader.ReadUInt32();
|
|
|
|
|
|
|
|
|
|
reader.Seek(blockStart + HeaderSize, System.IO.SeekOrigin.Begin);
|
|
|
|
|
data = reader.ReadBytes((int)DataSize);
|
|
|
|
|
}
|
|
|
|
|
public void Write(FileWriter writer)
|
|
|
|
|
{
|
|
|
|
|
long blockStart = writer.Position;
|
|
|
|
|
|
|
|
|
|
writer.WriteSignature(Magic);
|
|
|
|
|
writer.Write(HeaderSize);
|
|
|
|
|
writer.Write(MajorVersion);
|
|
|
|
|
writer.Write(MinorVersion);
|
|
|
|
|
writer.Write(BlockType, false);
|
|
|
|
|
writer.Write(DataSize);
|
|
|
|
|
writer.Write(Identifier);
|
|
|
|
|
writer.Write(index);
|
|
|
|
|
writer.Seek(blockStart + HeaderSize, System.IO.SeekOrigin.Begin);
|
|
|
|
|
|
|
|
|
|
writer.Write(data);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-11 00:48:51 +01:00
|
|
|
|
public class TextureData : STGenericTexture
|
2018-12-05 03:40:03 +01:00
|
|
|
|
{
|
|
|
|
|
public SurfaceInfoParse surface;
|
|
|
|
|
public RenderableTex renderedTex = new RenderableTex();
|
|
|
|
|
|
|
|
|
|
public TextureData()
|
|
|
|
|
{
|
|
|
|
|
ImageKey = "Texture";
|
|
|
|
|
SelectedImageKey = "Texture";
|
|
|
|
|
|
|
|
|
|
ContextMenu = new ContextMenu();
|
|
|
|
|
MenuItem export = new MenuItem("Export");
|
|
|
|
|
ContextMenu.MenuItems.Add(export);
|
|
|
|
|
export.Click += Export;
|
|
|
|
|
MenuItem replace = new MenuItem("Replace");
|
|
|
|
|
ContextMenu.MenuItems.Add(replace);
|
|
|
|
|
replace.Click += Replace;
|
|
|
|
|
MenuItem remove = new MenuItem("Remove");
|
|
|
|
|
ContextMenu.MenuItems.Add(remove);
|
|
|
|
|
remove.Click += Remove;
|
|
|
|
|
}
|
|
|
|
|
private void Remove(object sender, EventArgs args)
|
|
|
|
|
{
|
|
|
|
|
((GTXFile)Parent).Nodes.Remove(this);
|
|
|
|
|
}
|
|
|
|
|
private void Export(object sender, EventArgs args)
|
|
|
|
|
{
|
|
|
|
|
SaveFileDialog sfd = new SaveFileDialog();
|
|
|
|
|
sfd.FileName = Text;
|
|
|
|
|
sfd.DefaultExt = "bftex";
|
|
|
|
|
sfd.Filter = "Supported Formats|*.bftex;*.dds; *.png;*.tga;*.jpg;*.tiff|" +
|
|
|
|
|
"Binary Texture |*.bftex|" +
|
|
|
|
|
"Microsoft DDS |*.dds|" +
|
|
|
|
|
"Portable Network Graphics |*.png|" +
|
|
|
|
|
"Joint Photographic Experts Group |*.jpg|" +
|
|
|
|
|
"Bitmap Image |*.bmp|" +
|
|
|
|
|
"Tagged Image File Format |*.tiff|" +
|
|
|
|
|
"All files(*.*)|*.*";
|
|
|
|
|
|
|
|
|
|
if (sfd.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
Export(sfd.FileName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public void Export(string FileName, bool ExportSurfaceLevel = false,
|
|
|
|
|
bool ExportMipMapLevel = false, int SurfaceLevel = 0, int MipLevel = 0)
|
|
|
|
|
{
|
|
|
|
|
string ext = System.IO.Path.GetExtension(FileName);
|
|
|
|
|
ext = ext.ToLower();
|
|
|
|
|
|
|
|
|
|
switch (ext)
|
|
|
|
|
{
|
|
|
|
|
case ".dds":
|
|
|
|
|
SaveDDS(FileName);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
SaveBitMap(FileName);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
internal void SaveBitMap(string FileName, int SurfaceLevel = 0, int MipLevel = 0)
|
|
|
|
|
{
|
|
|
|
|
Bitmap bitMap = DisplayTexture(MipLevel, SurfaceLevel);
|
|
|
|
|
|
|
|
|
|
bitMap.Save(FileName);
|
|
|
|
|
}
|
|
|
|
|
internal void SaveDDS(string FileName)
|
|
|
|
|
{
|
|
|
|
|
DDS dds = new DDS();
|
|
|
|
|
dds.header = new DDS.Header();
|
|
|
|
|
dds.header.width = (uint)renderedTex.width;
|
|
|
|
|
dds.header.height = (uint)renderedTex.width;
|
|
|
|
|
dds.header.mipmapCount = (uint)renderedTex.mipmaps[0].Count;
|
|
|
|
|
|
|
|
|
|
dds.header.pitchOrLinearSize = (uint)renderedTex.mipmaps[0][0].Length;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-12-11 00:48:51 +01:00
|
|
|
|
dds.Save(dds, FileName, surfaces);
|
2018-12-05 03:40:03 +01:00
|
|
|
|
}
|
|
|
|
|
private void Replace(object sender, EventArgs args)
|
|
|
|
|
{
|
|
|
|
|
OpenFileDialog ofd = new OpenFileDialog();
|
|
|
|
|
ofd.Filter = "Supported Formats|*.dds; *.png;*.tga;*.jpg;*.tiff|" +
|
|
|
|
|
"Microsoft DDS |*.dds|" +
|
|
|
|
|
"Portable Network Graphics |*.png|" +
|
|
|
|
|
"Joint Photographic Experts Group |*.jpg|" +
|
|
|
|
|
"Bitmap Image |*.bmp|" +
|
|
|
|
|
"Tagged Image File Format |*.tiff|" +
|
|
|
|
|
"All files(*.*)|*.*";
|
|
|
|
|
|
|
|
|
|
ofd.Multiselect = false;
|
|
|
|
|
if (ofd.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
Replace(ofd.FileName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public void Replace(string FileName)
|
|
|
|
|
{
|
|
|
|
|
string ext = System.IO.Path.GetExtension(FileName);
|
|
|
|
|
ext = ext.ToLower();
|
|
|
|
|
|
|
|
|
|
GTXImporterSettings setting = new GTXImporterSettings();
|
|
|
|
|
GTXTextureImporter importer = new GTXTextureImporter();
|
|
|
|
|
|
|
|
|
|
switch (ext)
|
|
|
|
|
{
|
|
|
|
|
case ".dds":
|
|
|
|
|
setting.LoadDDS(FileName, null);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
setting.LoadBitMap(FileName);
|
|
|
|
|
importer.LoadSetting(setting);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (importer.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
Cursor.Current = Cursors.WaitCursor;
|
|
|
|
|
|
|
|
|
|
if (setting.GenerateMipmaps)
|
|
|
|
|
{
|
|
|
|
|
setting.DataBlockOutput.Clear();
|
|
|
|
|
setting.DataBlockOutput.Add(setting.GenerateMips());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (setting.DataBlockOutput != null)
|
|
|
|
|
{
|
|
|
|
|
var surface = setting.CreateGx2Texture(setting.DataBlockOutput[0]);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Something went wrong???");
|
|
|
|
|
}
|
|
|
|
|
UpdateEditor();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public class RenderableTex
|
|
|
|
|
{
|
|
|
|
|
public int width, height;
|
|
|
|
|
public int display;
|
|
|
|
|
public PixelInternalFormat pixelInternalFormat;
|
|
|
|
|
public PixelFormat pixelFormat;
|
|
|
|
|
public PixelType pixelType = PixelType.UnsignedByte;
|
|
|
|
|
public int mipMapCount;
|
|
|
|
|
public List<List<byte[]>> mipmaps = new List<List<byte[]>>();
|
|
|
|
|
public byte[] data;
|
|
|
|
|
|
|
|
|
|
public class Surface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnClick(TreeView treeView)
|
|
|
|
|
{
|
|
|
|
|
UpdateEditor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdateEditor()
|
|
|
|
|
{
|
|
|
|
|
if (Viewport.Instance.gL_ControlModern1.Visible == false)
|
|
|
|
|
PluginRuntime.FSHPDockState = WeifenLuo.WinFormsUI.Docking.DockState.Document;
|
|
|
|
|
|
|
|
|
|
GTXEditor docked = (GTXEditor)LibraryGUI.Instance.GetContentDocked(new GTXEditor());
|
|
|
|
|
if (docked == null)
|
|
|
|
|
{
|
|
|
|
|
docked = new GTXEditor();
|
|
|
|
|
LibraryGUI.Instance.LoadDockContent(docked, PluginRuntime.FSHPDockState);
|
|
|
|
|
}
|
|
|
|
|
docked.Text = Text;
|
|
|
|
|
docked.Dock = DockStyle.Fill;
|
|
|
|
|
docked.LoadPicture(DisplayTexture());
|
|
|
|
|
docked.LoadProperty(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Bitmap DisplayTexture(int DisplayMipIndex = 0, int ArrayIndex = 0)
|
|
|
|
|
{
|
|
|
|
|
if (renderedTex.mipmaps.Count <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("No texture data found");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint width = (uint)Math.Max(1, renderedTex.width >> DisplayMipIndex);
|
|
|
|
|
uint height = (uint)Math.Max(1, renderedTex.height >> DisplayMipIndex);
|
|
|
|
|
|
|
|
|
|
byte[] data = renderedTex.mipmaps[ArrayIndex][DisplayMipIndex];
|
|
|
|
|
|
|
|
|
|
return FTEX.DecodeBlock(data, width, height, (Syroot.NintenTools.Bfres.GX2.GX2SurfaceFormat)surface.format);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public class SurfaceInfoParse : GTX.GX2Surface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public void Read(FileReader reader)
|
|
|
|
|
{
|
|
|
|
|
reader.ByteOrder = Syroot.BinaryData.ByteOrder.BigEndian;
|
|
|
|
|
|
|
|
|
|
dim = reader.ReadUInt32();
|
|
|
|
|
width = reader.ReadUInt32();
|
|
|
|
|
height = reader.ReadUInt32();
|
|
|
|
|
depth = reader.ReadUInt32();
|
|
|
|
|
numMips = reader.ReadUInt32();
|
|
|
|
|
format = reader.ReadUInt32();
|
|
|
|
|
aa = reader.ReadUInt32();
|
|
|
|
|
use = reader.ReadUInt32();
|
|
|
|
|
imageSize = reader.ReadUInt32();
|
|
|
|
|
imagePtr = reader.ReadUInt32();
|
|
|
|
|
mipSize = reader.ReadUInt32();
|
|
|
|
|
mipPtr = reader.ReadUInt32();
|
|
|
|
|
tileMode = reader.ReadUInt32();
|
|
|
|
|
swizzle = reader.ReadUInt32();
|
|
|
|
|
alignment = reader.ReadUInt32();
|
|
|
|
|
pitch = reader.ReadUInt32();
|
|
|
|
|
mipOffset = reader.ReadUInt32s(13);
|
|
|
|
|
firstMip = reader.ReadUInt32();
|
|
|
|
|
imageCount = reader.ReadUInt32();
|
|
|
|
|
firstSlice = reader.ReadUInt32();
|
|
|
|
|
numSlices = reader.ReadUInt32();
|
|
|
|
|
compSel = reader.ReadBytes(4);
|
|
|
|
|
texRegs = reader.ReadUInt32s(5);
|
|
|
|
|
}
|
|
|
|
|
public void Write(FileWriter writer)
|
|
|
|
|
{
|
|
|
|
|
writer.Write(dim);
|
|
|
|
|
writer.Write(width);
|
|
|
|
|
writer.Write(height);
|
|
|
|
|
writer.Write(depth);
|
|
|
|
|
writer.Write(numMips);
|
|
|
|
|
writer.Write(format);
|
|
|
|
|
writer.Write(aa);
|
|
|
|
|
writer.Write(use);
|
|
|
|
|
writer.Write(imageSize);
|
|
|
|
|
writer.Write(imagePtr);
|
|
|
|
|
writer.Write(mipSize);
|
|
|
|
|
writer.Write(mipPtr);
|
|
|
|
|
writer.Write(tileMode);
|
|
|
|
|
writer.Write(swizzle);
|
|
|
|
|
writer.Write(alignment);
|
|
|
|
|
writer.Write(pitch);
|
|
|
|
|
writer.Write(mipOffset);
|
|
|
|
|
writer.Write(firstMip);
|
|
|
|
|
writer.Write(imageCount);
|
|
|
|
|
writer.Write(firstSlice);
|
|
|
|
|
writer.Write(numSlices);
|
|
|
|
|
writer.Write(compSel);
|
|
|
|
|
writer.Write(texRegs);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|