1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00
OpenMW/apps/essimporter/importgame.hpp

36 lines
786 B
C++
Raw Normal View History

#ifndef OPENMW_ESSIMPORT_GAME_H
#define OPENMW_ESSIMPORT_GAME_H
2023-12-17 15:21:12 +01:00
#include <cstdint>
namespace ESM
{
class ESMReader;
}
namespace ESSImport
{
/// Weather data
struct GAME
{
struct GMDT
{
2022-09-22 21:26:05 +03:00
char mCellName[64]{};
2023-12-17 14:03:45 +01:00
int32_t mFogColour{ 0 };
2022-09-22 21:26:05 +03:00
float mFogDensity{ 0.f };
2023-12-17 14:03:45 +01:00
int32_t mCurrentWeather{ 0 }, mNextWeather{ 0 };
int32_t mWeatherTransition{ 0 }; // 0-100 transition between weathers, top 3 bytes may be garbage
2022-09-22 21:26:05 +03:00
float mTimeOfNextTransition{ 0.f }; // weather changes when gamehour == timeOfNextTransition
2023-12-17 14:03:45 +01:00
int32_t mMasserPhase{ 0 }, mSecundaPhase{ 0 }; // top 3 bytes may be garbage
};
GMDT mGMDT;
void load(ESM::ESMReader& esm);
};
}
#endif