mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
793 B
C++
30 lines
793 B
C++
#include "importgame.hpp"
|
|
|
|
#include <components/esm3/esmreader.hpp>
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
void GAME::load(ESM::ESMReader& esm)
|
|
{
|
|
esm.getSubNameIs("GMDT");
|
|
esm.getSubHeader();
|
|
bool hasSecundaPhase = esm.getSubSize() == 96;
|
|
esm.getT(mGMDT.mCellName);
|
|
esm.getT(mGMDT.mFogColour);
|
|
esm.getT(mGMDT.mFogDensity);
|
|
esm.getT(mGMDT.mCurrentWeather);
|
|
esm.getT(mGMDT.mNextWeather);
|
|
esm.getT(mGMDT.mWeatherTransition);
|
|
esm.getT(mGMDT.mTimeOfNextTransition);
|
|
esm.getT(mGMDT.mMasserPhase);
|
|
if (hasSecundaPhase)
|
|
esm.getT(mGMDT.mSecundaPhase);
|
|
|
|
mGMDT.mWeatherTransition &= (0x000000ff);
|
|
mGMDT.mSecundaPhase &= (0x000000ff);
|
|
mGMDT.mMasserPhase &= (0x000000ff);
|
|
}
|
|
|
|
}
|