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.
37 lines
742 B
C++
37 lines
742 B
C++
#ifndef OPENMW_ESM_WEATHERSTATE_H
|
|
#define OPENMW_ESM_WEATHERSTATE_H
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
class ESMWriter;
|
|
|
|
struct RegionWeatherState
|
|
{
|
|
int mWeather;
|
|
std::vector<char> mChances;
|
|
};
|
|
|
|
struct WeatherState
|
|
{
|
|
std::string mCurrentRegion;
|
|
float mTimePassed;
|
|
bool mFastForward;
|
|
float mWeatherUpdateTime;
|
|
float mTransitionFactor;
|
|
int mCurrentWeather;
|
|
int mNextWeather;
|
|
int mQueuedWeather;
|
|
std::map<std::string, RegionWeatherState> mRegions;
|
|
|
|
void load(ESMReader& esm);
|
|
void save(ESMWriter& esm) const;
|
|
};
|
|
}
|
|
|
|
#endif
|