Switch-Toolbox/Switch_FileFormatsMain/YAML/YamlFmaa.cs

325 lines
12 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Threading.Tasks;
using Bfres.Structs;
using SharpYaml;
using SharpYaml.Events;
using SharpYaml.Serialization;
using SharpYaml.Serialization.Serializers;
using Syroot.NintenTools.NSW.Bfres;
using System.Reflection;
using System.Text.RegularExpressions;
namespace FirstPlugin
{
public class YamlFmaa
{
public class AnimConfig
{
public string Name { get; set; }
public string Path { get; set; }
2019-07-14 01:08:59 +00:00
public bool Loop { get; set; }
public int FrameCount { get; set; }
public List<MatAnimConfig> MaterialAnimConfigs { get; set; }
public void ToYaml(MaterialAnim materialAnim)
{
MaterialAnimConfigs = new List<MatAnimConfig>();
Name = materialAnim.Name;
Path = materialAnim.Path;
FrameCount = materialAnim.FrameCount;
2019-07-14 01:08:59 +00:00
Loop = materialAnim.Loop;
foreach (var mat in materialAnim.MaterialAnimDataList)
{
MatAnimConfig matConfig = new MatAnimConfig();
matConfig.Name = mat.Name;
2019-07-14 00:20:21 +00:00
MaterialAnimConfigs.Add(matConfig);
foreach (var paramInfo in mat.ParamAnimInfos)
{
2019-07-14 00:20:21 +00:00
ParamInfo paramCfg = new ParamInfo();
paramCfg.Name = paramInfo.Name;
paramCfg.IsConstant = paramInfo.BeginConstant != ushort.MaxValue;
matConfig.ParamInfos.Add(paramCfg);
2019-07-14 00:20:21 +00:00
if (paramInfo.BeginCurve != ushort.MaxValue)
{
var curve = mat.Curves[(int)paramInfo.BeginCurve];
for (int i = 0; i < paramInfo.IntCurveCount + paramInfo.FloatCurveCount; i++)
{
}
}
}
foreach (var patternInfo in mat.TexturePatternAnimInfos)
{
PatternInfo infoCfg = new PatternInfo();
infoCfg.Name = patternInfo.Name;
infoCfg.IsConstant = patternInfo.BeginConstant != ushort.MaxValue;
2019-07-14 00:20:21 +00:00
matConfig.TexturePatternInfos.Add(infoCfg);
2019-07-14 00:32:30 +00:00
if (infoCfg.IsConstant)
{
infoCfg.ConstantValue = new ConstantTPConfig();
int Index = (int)mat.Constants[(int)patternInfo.BeginConstant].Value;
infoCfg.ConstantValue.Texture = materialAnim.TextureNames[Index];
}
if (patternInfo.CurveIndex != uint.MaxValue)
{
var curve = mat.Curves[(int)patternInfo.CurveIndex];
infoCfg.CurveData = new CurveTPConfig();
2019-07-14 00:20:21 +00:00
if (curve.Scale == 0)
curve.Scale = 1;
for (int f = 0; f < curve.Frames.Length; f++)
{
int frame = (int)curve.Frames[f];
int Value = (int)curve.Offset + (int)curve.Keys[f, 0] * (int)curve.Scale;
infoCfg.CurveData.KeyFrames.Add(frame, materialAnim.TextureNames[Value]);
}
}
}
}
}
2019-07-14 00:54:55 +00:00
public MaterialAnim FromYaml()
{
MaterialAnim matAnim = new MaterialAnim();
matAnim.Name = Name;
matAnim.Path = Path;
2019-07-14 01:08:59 +00:00
matAnim.Loop = Loop;
2019-07-14 00:54:55 +00:00
matAnim.FrameCount = FrameCount;
matAnim.TextureNames = GenerateTextureList();
2019-07-14 01:08:59 +00:00
matAnim.BindIndices = new ushort[MaterialAnimConfigs.Count];
for (int i = 0; i < matAnim.BindIndices.Length; i++)
matAnim.BindIndices[i] = ushort.MaxValue;
2019-07-14 00:54:55 +00:00
2019-07-14 13:48:35 +00:00
Console.WriteLine("MaterialAnimConfigs " + MaterialAnimConfigs.Count);
2019-07-14 00:54:55 +00:00
foreach (var matCfg in MaterialAnimConfigs)
{
var matAnimData = new MaterialAnimData();
2019-07-14 13:48:35 +00:00
matAnimData.Name = matCfg.Name;
2019-07-14 00:54:55 +00:00
matAnimData.Constants = new List<AnimConstant>();
matAnimData.Curves = new List<AnimCurve>();
2019-07-14 01:08:59 +00:00
matAnimData.BeginVisalConstantIndex = -1;
matAnimData.ShaderParamCurveIndex = -1;
matAnimData.VisualConstantIndex = -1;
matAnimData.TexturePatternCurveIndex = -1;
matAnimData.VisalCurveIndex = -1;
matAnim.MaterialAnimDataList.Add(matAnimData);
2019-07-14 00:54:55 +00:00
2019-07-14 13:48:35 +00:00
uint CurveIndex = 0;
ushort BeginConstantIndex = 0;
Console.WriteLine("texturePatternCfg " + matCfg.TexturePatternInfos.Count);
2019-07-14 00:54:55 +00:00
foreach (var texturePatternCfg in matCfg.TexturePatternInfos)
{
2019-07-14 13:48:35 +00:00
TexturePatternAnimInfo patternInfo = new TexturePatternAnimInfo();
patternInfo.Name = texturePatternCfg.Name;
matAnimData.TexturePatternAnimInfos.Add(patternInfo);
2019-07-14 00:54:55 +00:00
if (texturePatternCfg.IsConstant && texturePatternCfg.ConstantValue != null)
{
2019-07-14 13:48:35 +00:00
patternInfo.BeginConstant = BeginConstantIndex++;
2019-07-14 00:54:55 +00:00
AnimConstant constant = new AnimConstant();
constant.AnimDataOffset = 0;
constant.Value = matAnim.TextureNames.IndexOf(texturePatternCfg.ConstantValue.Texture);
matAnimData.Constants.Add(constant);
matAnimData.VisualConstantIndex = 0;
matAnimData.BeginVisalConstantIndex = 0;
2019-07-14 00:54:55 +00:00
}
else if (texturePatternCfg.CurveData != null)
{
2019-07-14 13:48:35 +00:00
patternInfo.CurveIndex = CurveIndex++;
2019-07-14 01:08:59 +00:00
matAnimData.TexturePatternCurveIndex = 0;
matAnimData.BeginVisalConstantIndex = 0;
2019-07-14 00:54:55 +00:00
AnimCurve curve = new AnimCurve();
matAnimData.Curves.Add(curve);
curve.Offset = 0;
curve.AnimDataOffset = 0;
curve.Scale = 1;
curve.CurveType = AnimCurveType.StepInt;
curve.StartFrame = 0;
int FrameCount = texturePatternCfg.CurveData.KeyFrames.Count;
curve.Frames = new float[FrameCount];
curve.Keys = new float[FrameCount, 1];
2019-07-14 00:54:55 +00:00
int MaxFrame = 0;
int MaxIndex = 0;
int i = 0;
foreach (var KeyFrame in texturePatternCfg.CurveData.KeyFrames)
{
int Index = matAnim.TextureNames.IndexOf(KeyFrame.Value);
Console.WriteLine($"{Index} {KeyFrame.Value}");
2019-07-14 00:54:55 +00:00
curve.Frames[i] = KeyFrame.Key;
curve.Keys[i, 0] = Index;
MaxFrame = Math.Max(MaxIndex, KeyFrame.Key);
MaxIndex = Math.Max(MaxIndex, Index);
i++;
}
2019-07-14 13:26:18 +00:00
curve.EndFrame = curve.Frames.Max();
if (curve.Keys.Length > 1)
{
curve.Delta = curve.Keys[curve.Keys.Length - 1,0] - curve.Keys[0, 0];
}
2019-07-14 00:54:55 +00:00
if (MaxFrame < byte.MaxValue)
curve.FrameType = AnimCurveFrameType.Byte;
else if (MaxFrame < ushort.MaxValue)
curve.FrameType = AnimCurveFrameType.Decimal10x5;
else
curve.FrameType = AnimCurveFrameType.Single;
if (MaxIndex < byte.MaxValue)
curve.KeyType = AnimCurveKeyType.SByte;
else if (MaxIndex < ushort.MaxValue)
curve.KeyType = AnimCurveKeyType.Int16;
else
curve.KeyType = AnimCurveKeyType.Single;
}
}
foreach (var paramCfg in matCfg.ParamInfos)
{
}
}
return matAnim;
}
private List<string> GenerateTextureList()
{
List<string> Textures = new List<string>();
foreach (var matCfg in MaterialAnimConfigs)
{
foreach (var texturePatternCfg in matCfg.TexturePatternInfos)
{
if (texturePatternCfg.CurveData == null)
continue;
foreach (var KeyFrame in texturePatternCfg.CurveData.KeyFrames)
if (!Textures.Contains(KeyFrame.Value))
Textures.Add(KeyFrame.Value);
}
}
return Textures;
}
}
2019-07-14 00:32:30 +00:00
public class ConstantTPConfig
{
public string Texture { get; set; }
2019-07-14 00:32:30 +00:00
}
public class CurveTPConfig
{
public Dictionary<int, string> KeyFrames { get; set; }
public CurveTPConfig()
{
KeyFrames = new Dictionary<int, string>();
}
}
public class MatAnimConfig
{
public string Name { get; set; }
public List<PatternInfo> TexturePatternInfos { get; set; }
public List<ParamInfo> ParamInfos { get; set; }
2019-07-14 00:20:21 +00:00
public MatAnimConfig()
{
TexturePatternInfos = new List<PatternInfo>();
ParamInfos = new List<ParamInfo>();
}
}
public class ParamInfo
{
public string Name { get; set; }
public bool IsConstant { get; set; }
public AnimCurve Curve { get; set; }
}
public class PatternInfo
{
public string Name { get; set; }
public bool IsConstant { get; set; }
2019-07-14 00:32:30 +00:00
public ConstantTPConfig ConstantValue { get; set; }
public CurveTPConfig CurveData { get; set; }
}
2019-07-14 00:54:55 +00:00
public static MaterialAnim FromYaml(string Name)
{
2019-07-14 01:08:59 +00:00
var serializerSettings = new SerializerSettings()
{
// EmitTags = false
2019-07-14 01:08:59 +00:00
};
serializerSettings.DefaultStyle = YamlStyle.Any;
serializerSettings.ComparerForKeySorting = null;
serializerSettings.RegisterTagMapping("AnimConfig", typeof(AnimConfig));
2019-07-14 01:08:59 +00:00
var serializer = new Serializer( serializerSettings);
2019-07-14 13:48:35 +00:00
AnimConfig config = serializer.Deserialize<AnimConfig>(File.ReadAllText(Name));
2019-07-14 00:54:55 +00:00
2019-07-14 13:48:35 +00:00
return config.FromYaml();
2019-07-14 00:54:55 +00:00
}
public static string ToYaml(string Name, FMAA anim)
{
var serializerSettings = new SerializerSettings()
{
// EmitTags = false
};
2019-07-14 00:32:30 +00:00
serializerSettings.DefaultStyle = YamlStyle.Any;
serializerSettings.ComparerForKeySorting = null;
serializerSettings.RegisterTagMapping("AnimConfig", typeof(AnimConfig));
2019-07-14 00:32:30 +00:00
var MatAnim = anim.MaterialAnim;
var config = new AnimConfig();
config.ToYaml(MatAnim);
var serializer = new Serializer(serializerSettings);
string yaml = serializer.Serialize(config, typeof(AnimConfig));
return yaml;
}
private void SetConfig()
{
}
}
}