A standalone customized version of ret2end's HKX2 library for Skyrim SE Havok packfile deserialization and serialization.
This fork modified the library to serve the purposes of packfile editing in addition to the usual (de)serialization functions. It also refactors some of the code to be more error tolerant and optimized.
- Serialize and Deserialize .hkx file. (include behaviors, skeleton and aniamtions)
- Export to XML.
XML to HKXuse figment/hkxcmd, nexus- Partial serialization and deserialization for packfile/xml fragments.
Ragdoll files (.hkrg) differ from vanilla files because of different fixup ordering. This issue shouldn't affect functionality.- can't deserialize some old FNIS generated hkx files due to malformed(?)
__classname__
or virtualFixup section or wrong assigned member (hkbBlendingTransitionEffec
assign tohkbStateMachineTransitionInfoArray
)
git submodule add https://github.com/Monitor221hz/HKX2-Enhanced-Library <your-repo-dir>/some/path/HKX2EnhancedLibrary
Then reference it in your solution and project.
using HKX2E;
namespace PlatformConverter
{
internal static class Program
{
private static void Main(string[] args)
{
string inFile = args[0];
string outFile = args[1];
string outPlatform = args[2];
HKXHeader header = HKXHeader.SkyrimSE();
using (FileStream rs = File.OpenRead(inFile))
{
var br = new BinaryReaderEx(rs);
var des = new PackFileDeserializer();
var root = (hkRootLevelContainer) des.Deserialize(br);
using (FileStream ws = File.Create(outFile))
{
// to hkx
var bw = new BinaryWriterEx(ws);
var s = new PackFileSerializer();
s.Serialize(root, bw, header);
// or to xml
var xs = new XmlSerializer();
xs.Serialize(root, header, ws);
}
}
}
}
}
./HKX2/Autogen/
contains Havok classes generated from dumped skyrim classes by SKSE plugin../HKX2/Manual/
also contains generated classes with small adjustment.
- katalash - The original HKX2 library included in DSMapStudio.
- JKAnderson - BinaryReaderEx and BinaryWriterEx included in SoulsFormats.
- krenyy - HKX2 library by krenyy.
- Dexesttp with hkx research documentary.
- ret2end for original HKX2 library supporting Skyrim SE.
- SkyrimSE RE and SkyrimGuild community with valuable skse plugin, hkx, animation, behavior information.