Various fixes for niftest

pull/593/head
elsid 4 years ago committed by psi29a
parent 0f33734f5d
commit 87ada56edd

@ -212,7 +212,7 @@ void NIFFile::parse(Files::IStreamPtr stream)
userVer = nif.getUInt(); userVer = nif.getUInt();
// Number of records // Number of records
unsigned int recNum = nif.getUInt(); const std::size_t recNum = nif.getUInt();
records.resize(recNum); records.resize(recNum);
// Bethesda stream header // Bethesda stream header
@ -251,7 +251,7 @@ void NIFFile::parse(Files::IStreamPtr stream)
std::vector<unsigned int> recSizes; // Currently unused std::vector<unsigned int> recSizes; // Currently unused
nif.getUInts(recSizes, recNum); nif.getUInts(recSizes, recNum);
} }
unsigned int stringNum = nif.getUInt(); const std::size_t stringNum = nif.getUInt();
nif.getUInt(); // Max string length nif.getUInt(); // Max string length
if (stringNum) if (stringNum)
nif.getSizedStrings(strings, stringNum); nif.getSizedStrings(strings, stringNum);
@ -264,7 +264,7 @@ void NIFFile::parse(Files::IStreamPtr stream)
} }
const bool hasRecordSeparators = ver >= NIFStream::generateVersion(10,0,0,0) && ver < NIFStream::generateVersion(10,2,0,0); const bool hasRecordSeparators = ver >= NIFStream::generateVersion(10,0,0,0) && ver < NIFStream::generateVersion(10,2,0,0);
for (unsigned int i = 0; i < recNum; i++) for (std::size_t i = 0; i < recNum; i++)
{ {
Record *r = nullptr; Record *r = nullptr;
@ -308,14 +308,14 @@ void NIFFile::parse(Files::IStreamPtr stream)
r->read(&nif); r->read(&nif);
} }
unsigned int rootNum = nif.getUInt(); const std::size_t rootNum = nif.getUInt();
roots.resize(rootNum); roots.resize(rootNum);
//Determine which records are roots //Determine which records are roots
for (unsigned int i = 0; i < rootNum; i++) for (std::size_t i = 0; i < rootNum; i++)
{ {
int idx = nif.getInt(); int idx = nif.getInt();
if (idx >= 0 && idx < int(records.size())) if (idx >= 0 && static_cast<std::size_t>(idx) < records.size())
{ {
roots[i] = records[idx]; roots[i] = records[idx];
} }

@ -7,7 +7,7 @@ namespace Nif
osg::Quat NIFStream::getQuaternion() osg::Quat NIFStream::getQuaternion()
{ {
float f[4]; float f[4];
readLittleEndianBufferOfType<4, float>(inp, (float*)&f); readLittleEndianBufferOfType<4, float>(inp, f);
osg::Quat quat; osg::Quat quat;
quat.w() = f[0]; quat.w() = f[0];
quat.x() = f[1]; quat.x() = f[1];

@ -7,6 +7,8 @@
#include <stdint.h> #include <stdint.h>
#include <stdexcept> #include <stdexcept>
#include <vector> #include <vector>
#include <typeinfo>
#include <type_traits>
#include <components/files/constrainedfilestream.hpp> #include <components/files/constrainedfilestream.hpp>
#include <components/misc/endianness.hpp> #include <components/misc/endianness.hpp>
@ -22,31 +24,32 @@ namespace Nif
class NIFFile; class NIFFile;
/* template <std::size_t numInstances, typename T> inline void readLittleEndianBufferOfType(Files::IStreamPtr &pIStream, T* dest)
readLittleEndianBufferOfType: This template should only be used with arithmetic types
*/
template <uint32_t numInstances, typename T> inline void readLittleEndianBufferOfType(Files::IStreamPtr &pIStream, T* dest)
{ {
static_assert(std::is_arithmetic_v<T>, "Buffer element type is not arithmetic");
pIStream->read((char*)dest, numInstances * sizeof(T)); pIStream->read((char*)dest, numInstances * sizeof(T));
if (pIStream->bad())
throw std::runtime_error("Failed to read little endian typed (" + std::string(typeid(T).name()) + ") buffer of "
+ std::to_string(numInstances) + " instances");
if constexpr (Misc::IS_BIG_ENDIAN) if constexpr (Misc::IS_BIG_ENDIAN)
for (uint32_t i = 0; i < numInstances; i++) for (std::size_t i = 0; i < numInstances; i++)
Misc::swapEndiannessInplace(dest[i]); Misc::swapEndiannessInplace(dest[i]);
} }
/* template <typename T> inline void readLittleEndianDynamicBufferOfType(Files::IStreamPtr &pIStream, T* dest, std::size_t numInstances)
readLittleEndianDynamicBufferOfType: This template should only be used with arithmetic types
*/
template <typename T> inline void readLittleEndianDynamicBufferOfType(Files::IStreamPtr &pIStream, T* dest, uint32_t numInstances)
{ {
static_assert(std::is_arithmetic_v<T>, "Buffer element type is not arithmetic");
pIStream->read((char*)dest, numInstances * sizeof(T)); pIStream->read((char*)dest, numInstances * sizeof(T));
if (pIStream->bad())
throw std::runtime_error("Failed to read little endian dynamic buffer of " + std::to_string(numInstances) + " instances");
if constexpr (Misc::IS_BIG_ENDIAN) if constexpr (Misc::IS_BIG_ENDIAN)
for (uint32_t i = 0; i < numInstances; i++) for (std::size_t i = 0; i < numInstances; i++)
Misc::swapEndiannessInplace(dest[i]); Misc::swapEndiannessInplace(dest[i]);
} }
template<typename type> type inline readLittleEndianType(Files::IStreamPtr &pIStream) template<typename type> type inline readLittleEndianType(Files::IStreamPtr &pIStream)
{ {
type val; type val;
readLittleEndianBufferOfType<1, type>(pIStream, (type*)&val); readLittleEndianBufferOfType<1, type>(pIStream, &val);
return val; return val;
} }
@ -96,21 +99,21 @@ public:
osg::Vec2f getVector2() osg::Vec2f getVector2()
{ {
osg::Vec2f vec; osg::Vec2f vec;
readLittleEndianBufferOfType<2,float>(inp, (float*)&vec._v[0]); readLittleEndianBufferOfType<2,float>(inp, vec._v);
return vec; return vec;
} }
osg::Vec3f getVector3() osg::Vec3f getVector3()
{ {
osg::Vec3f vec; osg::Vec3f vec;
readLittleEndianBufferOfType<3, float>(inp, (float*)&vec._v[0]); readLittleEndianBufferOfType<3, float>(inp, vec._v);
return vec; return vec;
} }
osg::Vec4f getVector4() osg::Vec4f getVector4()
{ {
osg::Vec4f vec; osg::Vec4f vec;
readLittleEndianBufferOfType<4, float>(inp, (float*)&vec._v[0]); readLittleEndianBufferOfType<4, float>(inp, vec._v);
return vec; return vec;
} }
@ -142,11 +145,11 @@ public:
///Read in a string of the given length ///Read in a string of the given length
std::string getSizedString(size_t length) std::string getSizedString(size_t length)
{ {
std::vector<char> str(length + 1, 0); std::string str(length, '\0');
inp->read(str.data(), length); inp->read(str.data(), length);
if (inp->bad())
return str.data(); throw std::runtime_error("Failed to read sized string of " + std::to_string(length) + " chars");
return str;
} }
///Read in a string of the length specified in the file ///Read in a string of the length specified in the file
std::string getSizedString() std::string getSizedString()
@ -167,6 +170,8 @@ public:
{ {
std::string result; std::string result;
std::getline(*inp, result); std::getline(*inp, result);
if (inp->bad())
throw std::runtime_error("Failed to read version string");
return result; return result;
} }

Loading…
Cancel
Save