mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
b1bd236345
Had to add special reading code to openmw, because the variable names are not stored.
33 lines
948 B
C++
33 lines
948 B
C++
#include "convertscri.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
namespace
|
|
{
|
|
|
|
template <typename T, ESM::VarType VariantType>
|
|
void storeVariables(const std::vector<T>& variables, ESM::Locals& locals, const std::string& scriptname)
|
|
{
|
|
for (typename std::vector<T>::const_iterator it = variables.begin(); it != variables.end(); ++it)
|
|
{
|
|
ESM::Variant val(*it);
|
|
val.setType(VariantType);
|
|
locals.mVariables.push_back(std::make_pair(std::string(), val));
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
void convertSCRI(const SCRI &scri, ESM::Locals &locals)
|
|
{
|
|
// order *is* important, as we do not have variable names available in this format
|
|
storeVariables<short, ESM::VT_Short> (scri.mShorts, locals, scri.mScript);
|
|
storeVariables<int, ESM::VT_Int> (scri.mLongs, locals, scri.mScript);
|
|
storeVariables<float, ESM::VT_Float> (scri.mFloats, locals, scri.mScript);
|
|
}
|
|
|
|
}
|