2023-02-10 13:16:52 +01:00
|
|
|
#ifndef OPENMW_COMPONENTS_ESM3_FORMATVERSION_H
|
|
|
|
#define OPENMW_COMPONENTS_ESM3_FORMATVERSION_H
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace ESM
|
|
|
|
{
|
|
|
|
using FormatVersion = std::uint32_t;
|
|
|
|
|
|
|
|
inline constexpr FormatVersion DefaultFormatVersion = 0;
|
|
|
|
inline constexpr FormatVersion CurrentContentFormatVersion = 1;
|
|
|
|
inline constexpr FormatVersion MaxOldWeatherFormatVersion = 1;
|
|
|
|
inline constexpr FormatVersion MaxOldDeathAnimationFormatVersion = 2;
|
|
|
|
inline constexpr FormatVersion MaxOldForOfWarFormatVersion = 6;
|
|
|
|
inline constexpr FormatVersion MaxWerewolfDeprecatedDataFormatVersion = 7;
|
|
|
|
inline constexpr FormatVersion MaxOldTimeLeftFormatVersion = 8;
|
|
|
|
inline constexpr FormatVersion MaxIntFallbackFormatVersion = 10;
|
|
|
|
inline constexpr FormatVersion MaxClearModifiersFormatVersion = 16;
|
|
|
|
inline constexpr FormatVersion MaxOldAiPackageFormatVersion = 17;
|
|
|
|
inline constexpr FormatVersion MaxOldSkillsAndAttributesFormatVersion = 18;
|
|
|
|
inline constexpr FormatVersion MaxOldCreatureStatsFormatVersion = 19;
|
2023-02-12 17:03:01 +01:00
|
|
|
inline constexpr FormatVersion MaxLimitedSizeStringsFormatVersion = 22;
|
2023-02-12 16:27:23 +01:00
|
|
|
inline constexpr FormatVersion MaxStringRefIdFormatVersion = 23;
|
2023-03-22 22:57:52 +01:00
|
|
|
inline constexpr FormatVersion MaxSavedGameCellNameAsRefId = 24;
|
|
|
|
inline constexpr FormatVersion CurrentSaveGameFormatVersion = 25;
|
2023-02-10 13:16:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|