mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 03:15:32 +00:00
Various fixes for niftest
This commit is contained in:
parent
0f33734f5d
commit
87ada56edd
3 changed files with 30 additions and 25 deletions
|
@ -212,7 +212,7 @@ void NIFFile::parse(Files::IStreamPtr stream)
|
|||
userVer = nif.getUInt();
|
||||
|
||||
// Number of records
|
||||
unsigned int recNum = nif.getUInt();
|
||||
const std::size_t recNum = nif.getUInt();
|
||||
records.resize(recNum);
|
||||
|
||||
// Bethesda stream header
|
||||
|
@ -251,7 +251,7 @@ void NIFFile::parse(Files::IStreamPtr stream)
|
|||
std::vector<unsigned int> recSizes; // Currently unused
|
||||
nif.getUInts(recSizes, recNum);
|
||||
}
|
||||
unsigned int stringNum = nif.getUInt();
|
||||
const std::size_t stringNum = nif.getUInt();
|
||||
nif.getUInt(); // Max string length
|
||||
if (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);
|
||||
for (unsigned int i = 0; i < recNum; i++)
|
||||
for (std::size_t i = 0; i < recNum; i++)
|
||||
{
|
||||
Record *r = nullptr;
|
||||
|
||||
|
@ -308,14 +308,14 @@ void NIFFile::parse(Files::IStreamPtr stream)
|
|||
r->read(&nif);
|
||||
}
|
||||
|
||||
unsigned int rootNum = nif.getUInt();
|
||||
const std::size_t rootNum = nif.getUInt();
|
||||
roots.resize(rootNum);
|
||||
|
||||
//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();
|
||||
if (idx >= 0 && idx < int(records.size()))
|
||||
if (idx >= 0 && static_cast<std::size_t>(idx) < records.size())
|
||||
{
|
||||
roots[i] = records[idx];
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace Nif
|
|||
osg::Quat NIFStream::getQuaternion()
|
||||
{
|
||||
float f[4];
|
||||
readLittleEndianBufferOfType<4, float>(inp, (float*)&f);
|
||||
readLittleEndianBufferOfType<4, float>(inp, f);
|
||||
osg::Quat quat;
|
||||
quat.w() = f[0];
|
||||
quat.x() = f[1];
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
#include <stdint.h>
|
||||
#include <stdexcept>
|
||||
#include <vector>
|
||||
#include <typeinfo>
|
||||
#include <type_traits>
|
||||
|
||||
#include <components/files/constrainedfilestream.hpp>
|
||||
#include <components/misc/endianness.hpp>
|
||||
|
@ -22,31 +24,32 @@ namespace Nif
|
|||
|
||||
class NIFFile;
|
||||
|
||||
/*
|
||||
readLittleEndianBufferOfType: This template should only be used with arithmetic types
|
||||
*/
|
||||
template <uint32_t numInstances, typename T> inline void readLittleEndianBufferOfType(Files::IStreamPtr &pIStream, T* dest)
|
||||
template <std::size_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));
|
||||
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)
|
||||
for (uint32_t i = 0; i < numInstances; i++)
|
||||
for (std::size_t i = 0; i < numInstances; i++)
|
||||
Misc::swapEndiannessInplace(dest[i]);
|
||||
}
|
||||
|
||||
/*
|
||||
readLittleEndianDynamicBufferOfType: This template should only be used with arithmetic types
|
||||
*/
|
||||
template <typename T> inline void readLittleEndianDynamicBufferOfType(Files::IStreamPtr &pIStream, T* dest, uint32_t numInstances)
|
||||
template <typename T> inline void readLittleEndianDynamicBufferOfType(Files::IStreamPtr &pIStream, T* dest, std::size_t numInstances)
|
||||
{
|
||||
static_assert(std::is_arithmetic_v<T>, "Buffer element type is not arithmetic");
|
||||
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)
|
||||
for (uint32_t i = 0; i < numInstances; i++)
|
||||
for (std::size_t i = 0; i < numInstances; i++)
|
||||
Misc::swapEndiannessInplace(dest[i]);
|
||||
}
|
||||
template<typename type> type inline readLittleEndianType(Files::IStreamPtr &pIStream)
|
||||
{
|
||||
type val;
|
||||
readLittleEndianBufferOfType<1, type>(pIStream, (type*)&val);
|
||||
readLittleEndianBufferOfType<1, type>(pIStream, &val);
|
||||
return val;
|
||||
}
|
||||
|
||||
|
@ -96,21 +99,21 @@ public:
|
|||
osg::Vec2f getVector2()
|
||||
{
|
||||
osg::Vec2f vec;
|
||||
readLittleEndianBufferOfType<2,float>(inp, (float*)&vec._v[0]);
|
||||
readLittleEndianBufferOfType<2,float>(inp, vec._v);
|
||||
return vec;
|
||||
}
|
||||
|
||||
osg::Vec3f getVector3()
|
||||
{
|
||||
osg::Vec3f vec;
|
||||
readLittleEndianBufferOfType<3, float>(inp, (float*)&vec._v[0]);
|
||||
readLittleEndianBufferOfType<3, float>(inp, vec._v);
|
||||
return vec;
|
||||
}
|
||||
|
||||
osg::Vec4f getVector4()
|
||||
{
|
||||
osg::Vec4f vec;
|
||||
readLittleEndianBufferOfType<4, float>(inp, (float*)&vec._v[0]);
|
||||
readLittleEndianBufferOfType<4, float>(inp, vec._v);
|
||||
return vec;
|
||||
}
|
||||
|
||||
|
@ -142,11 +145,11 @@ public:
|
|||
///Read in a string of the given length
|
||||
std::string getSizedString(size_t length)
|
||||
{
|
||||
std::vector<char> str(length + 1, 0);
|
||||
|
||||
std::string str(length, '\0');
|
||||
inp->read(str.data(), length);
|
||||
|
||||
return str.data();
|
||||
if (inp->bad())
|
||||
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
|
||||
std::string getSizedString()
|
||||
|
@ -167,6 +170,8 @@ public:
|
|||
{
|
||||
std::string result;
|
||||
std::getline(*inp, result);
|
||||
if (inp->bad())
|
||||
throw std::runtime_error("Failed to read version string");
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue