BFRES : Fix some more importing bugs
Only align buffers when using a single buffer.
This commit is contained in:
parent
cd56a53d0c
commit
946fa08518
@ -386,7 +386,8 @@ namespace Bfres.Structs
|
||||
bool UseUVLayer2 = false;
|
||||
|
||||
//for BOTW if it uses UV layer 2 for normal maps use second UV map
|
||||
if (shp.GetFMAT().shaderassign.options.ContainsKey("uking_texture2_texcoord")) {
|
||||
if (shp.GetFMAT().shaderassign.options.ContainsKey("uking_texture2_texcoord"))
|
||||
{
|
||||
float value = float.Parse(shp.GetFMAT().shaderassign.options["uking_texture2_texcoord"]);
|
||||
|
||||
if (value == 1)
|
||||
@ -505,7 +506,8 @@ namespace Bfres.Structs
|
||||
}
|
||||
else
|
||||
{
|
||||
foreach (var shape in shapes) {
|
||||
foreach (var shape in shapes)
|
||||
{
|
||||
shape.SaveVertexBuffer(GetResFileU() != null);
|
||||
}
|
||||
UpdateVertexData();
|
||||
@ -580,11 +582,13 @@ namespace Bfres.Structs
|
||||
return textures;
|
||||
}
|
||||
|
||||
public override void Replace(string FileName) {
|
||||
public override void Replace(string FileName)
|
||||
{
|
||||
AddOjects(FileName, GetResFile(), GetResFileU());
|
||||
}
|
||||
|
||||
public void Replace(string FileName, ResFile resFileNX, ResU.ResFile resFileU) {
|
||||
public void Replace(string FileName, ResFile resFileNX, ResU.ResFile resFileU)
|
||||
{
|
||||
AddOjects(FileName, resFileNX, resFileU);
|
||||
}
|
||||
|
||||
@ -684,7 +688,8 @@ namespace Bfres.Structs
|
||||
{
|
||||
if (csvsettings.LimitSkinCount ||
|
||||
csvsettings.MapOriginalMaterials ||
|
||||
csvsettings.UseOriginalAttributes) {
|
||||
csvsettings.UseOriginalAttributes)
|
||||
{
|
||||
for (int i = 0; i < csvModel.objects.Count; i++)
|
||||
{
|
||||
//Only one match should be found as shapes can't have duped names
|
||||
@ -750,15 +755,6 @@ namespace Bfres.Structs
|
||||
else
|
||||
shape.vertexAttributes = csvsettings.CreateNewAttributes();
|
||||
|
||||
Console.WriteLine($"ForceSkinInfluence {ForceSkinInfluence}");
|
||||
|
||||
if (!ForceSkinInfluence)
|
||||
shape.VertexSkinCount = obj.GetMaxSkinInfluenceCount();
|
||||
else
|
||||
shape.VertexSkinCount = (byte)ForceSkinInfluenceMax;
|
||||
|
||||
Console.WriteLine($"VertexSkinCount { shape.VertexSkinCount}");
|
||||
|
||||
shape.BoneIndex = 0;
|
||||
shape.Text = obj.ObjectName;
|
||||
shape.lodMeshes = obj.lodMeshes;
|
||||
@ -768,6 +764,15 @@ namespace Bfres.Structs
|
||||
shape.ApplyImportSettings(csvsettings, GetMaterial(shape.MaterialIndex));
|
||||
shape.BoneIndices = shape.GetIndices(Skeleton);
|
||||
|
||||
Console.WriteLine($"ForceSkinInfluence {ForceSkinInfluence}");
|
||||
|
||||
if (!ForceSkinInfluence)
|
||||
shape.VertexSkinCount = obj.GetMaxSkinInfluenceCount();
|
||||
else
|
||||
shape.VertexSkinCount = (byte)ForceSkinInfluenceMax;
|
||||
|
||||
Console.WriteLine($"VertexSkinCount { shape.VertexSkinCount}");
|
||||
|
||||
if (shape.VertexSkinCount == 1)
|
||||
{
|
||||
int boneIndex = shape.BoneIndices[0];
|
||||
@ -1178,6 +1183,8 @@ namespace Bfres.Structs
|
||||
else
|
||||
shape.vertexAttributes = settings.CreateNewAttributes();
|
||||
|
||||
shape.BoneIndex = obj.BoneIndex;
|
||||
|
||||
if (obj.MaterialIndex + MatStartIndex < materials.Count && obj.MaterialIndex > 0)
|
||||
shape.MaterialIndex = obj.MaterialIndex + MatStartIndex;
|
||||
else
|
||||
@ -1205,8 +1212,6 @@ namespace Bfres.Structs
|
||||
shape.SaveShape(IsWiiU);
|
||||
shape.SaveVertexBuffer(IsWiiU);
|
||||
|
||||
shape.BoneIndex = obj.BoneIndex;
|
||||
|
||||
if (IsWiiU)
|
||||
{
|
||||
shape.ShapeU.SubMeshBoundingIndices = new List<ushort>();
|
||||
@ -1298,7 +1303,8 @@ namespace Bfres.Structs
|
||||
UpdateEditor();
|
||||
}
|
||||
|
||||
public void UpdateEditor(){
|
||||
public void UpdateEditor()
|
||||
{
|
||||
((BFRES)Parent?.Parent)?.LoadEditors(this);
|
||||
}
|
||||
|
||||
|
22
Switch_Toolbox_Library/HashCalculate/SimpleHash.cs
Normal file
22
Switch_Toolbox_Library/HashCalculate/SimpleHash.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Toolbox.Library.Hash
|
||||
{
|
||||
//https://github.com/IcySon55/Kuriimu/blob/master/src/Cetera/Hash/SimpleHash.cs
|
||||
public class SimpleHash
|
||||
{
|
||||
public static uint Create(string input, uint magic, uint hashCount)
|
||||
{
|
||||
return Create(input, magic) % hashCount;
|
||||
}
|
||||
|
||||
public static uint Create(string input, uint magic)
|
||||
{
|
||||
return input.Aggregate(0u, (hash, c) => hash * magic + c);
|
||||
}
|
||||
}
|
||||
}
|
@ -389,6 +389,7 @@
|
||||
<Compile Include="Generics\Texture\ImageParameters.cs" />
|
||||
<Compile Include="Generics\Texture\STTextureFolder.cs" />
|
||||
<Compile Include="HashCalculate\FNV64A1.cs" />
|
||||
<Compile Include="HashCalculate\SimpleHash.cs" />
|
||||
<Compile Include="Helpers\ArchiveNodeMenuHelper.cs" />
|
||||
<Compile Include="Helpers\DirectoryHelper.cs" />
|
||||
<Compile Include="Helpers\DragHelper.cs" />
|
||||
|
Binary file not shown.
Binary file not shown.
@ -25,6 +25,7 @@
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
|
Loading…
Reference in New Issue
Block a user