/// File to handle keys used by nif file records #ifndef OPENMW_COMPONENTS_NIF_NIFKEY_HPP #define OPENMW_COMPONENTS_NIF_NIFKEY_HPP #include #include "exception.hpp" #include "niffile.hpp" #include "nifstream.hpp" namespace Nif { enum InterpolationType { InterpolationType_Unknown = 0, InterpolationType_Linear = 1, InterpolationType_Quadratic = 2, InterpolationType_TBC = 3, InterpolationType_XYZ = 4, InterpolationType_Constant = 5 }; template struct KeyT { T mValue; T mInTan; // Only for Quadratic interpolation, and never for QuaternionKeyList T mOutTan; // Only for Quadratic interpolation, and never for QuaternionKeyList // FIXME: Implement TBC interpolation /* float mTension; // Only for TBC interpolation float mBias; // Only for TBC interpolation float mContinuity; // Only for TBC interpolation */ }; using FloatKey = KeyT; using Vector3Key = KeyT; using Vector4Key = KeyT; using QuaternionKey = KeyT; template struct KeyMapT { using MapType = std::map>; using ValueType = T; using KeyType = KeyT; unsigned int mInterpolationType = InterpolationType_Unknown; MapType mKeys; // Read in a KeyGroup (see http://niftools.sourceforge.net/doc/nif/NiKeyframeData.html) void read(NIFStream* nif, bool morph = false) { assert(nif); if (morph && nif->getVersion() >= NIFStream::generateVersion(10, 1, 0, 106)) nif->getString(); // Frame name if (morph && nif->getVersion() > NIFStream::generateVersion(10, 1, 0, 0)) { if (nif->getVersion() >= NIFStream::generateVersion(10, 1, 0, 104) && nif->getVersion() <= NIFStream::generateVersion(20, 1, 0, 2) && nif->getBethVersion() < 10) nif->getFloat(); // Legacy weight return; } size_t count = nif->getUInt(); if (count != 0 || morph) mInterpolationType = nif->getUInt(); KeyType key = {}; if (mInterpolationType == InterpolationType_Linear || mInterpolationType == InterpolationType_Constant) { for (size_t i = 0; i < count; i++) { float time = nif->getFloat(); readValue(*nif, key); mKeys[time] = key; } } else if (mInterpolationType == InterpolationType_Quadratic) { for (size_t i = 0; i < count; i++) { float time = nif->getFloat(); readQuadratic(*nif, key); mKeys[time] = key; } } else if (mInterpolationType == InterpolationType_TBC) { for (size_t i = 0; i < count; i++) { float time = nif->getFloat(); readTBC(*nif, key); mKeys[time] = key; } } else if (mInterpolationType == InterpolationType_XYZ) { // XYZ keys aren't actually read here. // data.cpp sees that the last type read was InterpolationType_XYZ and: // Eats a floating point number, then // Re-runs the read function 3 more times. // When it does that it's reading in a bunch of InterpolationType_Linear keys, not // InterpolationType_XYZ. } else if (count != 0) { throw Nif::Exception("Unhandled interpolation type: " + std::to_string(mInterpolationType), nif->getFile().getFilename()); } } private: static void readValue(NIFStream& nif, KeyT& key) { key.mValue = (nif.*getValue)(); } template static void readQuadratic(NIFStream& nif, KeyT& key) { readValue(nif, key); key.mInTan = (nif.*getValue)(); key.mOutTan = (nif.*getValue)(); } static void readQuadratic(NIFStream& nif, KeyT& key) { readValue(nif, key); } static void readTBC(NIFStream& nif, KeyT& key) { readValue(nif, key); /*key.mTension = */ nif.getFloat(); /*key.mBias = */ nif.getFloat(); /*key.mContinuity = */ nif.getFloat(); } }; using FloatKeyMap = KeyMapT; using Vector3KeyMap = KeyMapT; using Vector4KeyMap = KeyMapT; using QuaternionKeyMap = KeyMapT; using ByteKeyMap = KeyMapT; using FloatKeyMapPtr = std::shared_ptr; using Vector3KeyMapPtr = std::shared_ptr; using Vector4KeyMapPtr = std::shared_ptr; using QuaternionKeyMapPtr = std::shared_ptr; using ByteKeyMapPtr = std::shared_ptr; } // Namespace #endif //#ifndef OPENMW_COMPONENTS_NIF_NIFKEY_HPP