1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
// IMPORTANT NOTE: external systems sed -i this file, so DO NOT CHANGE without
// major thought in advance, and deliberation with bibim and tvo/Tobi!
#include "GameVersion.h"
#include "System/VersionGenerated.h"
#include <ciso646> // _LIBCPP*
#include <cstring>
#include <cstdio>
/**
* @brief Defines the current version string.
* Take special care when moving this file.
* The build-bot refers to this file to append the exact SCM version.
*/
namespace SpringVersion
{
const std::string& GetMajor()
{
static const std::string major = SPRING_VERSION_ENGINE_MAJOR;
return major;
}
const std::string& GetMinor()
{
static const std::string minor = "0";
return minor;
}
const std::string& GetPatchSet()
{
static const std::string patchSet = SPRING_VERSION_ENGINE_PATCH_SET;
return patchSet;
}
const std::string& GetCommits()
{
static const std::string patchSet = SPRING_VERSION_ENGINE_COMMITS;
return patchSet;
}
const std::string& GetHash()
{
static const std::string patchSet = SPRING_VERSION_ENGINE_HASH;
return patchSet;
}
const std::string& GetBranch()
{
static const std::string patchSet = SPRING_VERSION_ENGINE_BRANCH;
return patchSet;
}
inline const std::string CreateAdditionalVersion()
{
std::string additional = SPRING_VERSION_ENGINE_ADDITIONAL;
additional += additional.empty() ? "" : " ";
additional += ""
#define GV_ADD_SPACE ""
#if defined DEBUG
GV_ADD_SPACE "Debug"
#undef GV_ADD_SPACE
#define GV_ADD_SPACE " "
#endif
#if defined TRACE_SYNC
GV_ADD_SPACE "Sync-Trace"
#undef GV_ADD_SPACE
#define GV_ADD_SPACE " "
#endif
#if defined SYNCDEBUG
GV_ADD_SPACE "Sync-Debug"
#undef GV_ADD_SPACE
#define GV_ADD_SPACE " "
#endif
#if !defined SYNCCHECK
GV_ADD_SPACE "Sync-Check-Disabled"
#undef GV_ADD_SPACE
#define GV_ADD_SPACE " "
#endif
#if defined __SUPPORT_SNAN__
GV_ADD_SPACE "Signal-NaNs"
#undef GV_ADD_SPACE
#define GV_ADD_SPACE " "
#endif
#if defined HEADLESS && !defined DEDICATED
GV_ADD_SPACE "Headless"
#undef GV_ADD_SPACE
#define GV_ADD_SPACE " "
#endif
#if defined DEDICATED
GV_ADD_SPACE "Dedicated"
#undef GV_ADD_SPACE
#define GV_ADD_SPACE " "
#endif
#if defined UNITSYNC
GV_ADD_SPACE "Unitsync"
#undef GV_ADD_SPACE
#define GV_ADD_SPACE " "
#endif
;
return additional;
}
const std::string& GetAdditional()
{
const static std::string additional(CreateAdditionalVersion());
return additional;
}
#define QUOTEME_(x) #x
#define QUOTEME(x) QUOTEME_(x)
const std::string& GetCompiler()
{
static const std::string compiler = ""
#ifdef __GNUC__
"gcc-" __VERSION__;
#elif defined(__clang__)
"clang-" __clang_version__ ;
#elif defined(_MSC_VER)
#ifdef _MSC_FULL_VER
"msvc-" QUOTEME(_MSC_FULL_VER);
#else
"msvc-" QUOTEME(_MSC_VER);
#endif
#elif defined(__VERSION__)
"unknown-" __VERSION__;
#else
"unknown";
#endif
return compiler;
}
const std::string& GetBuildEnvironment()
{
#if (defined(__GNUC__) || defined(__clang__))
#if (defined(_LIBCPP_VERSION))
static const std::string environment = "clang libc++ version " QUOTEME(_LIBCPP_VERSION);
#elif (defined(__GLIBCXX__) || defined(__GLIBCPP__))
#ifdef __GLIBCXX__
static const std::string environment = "gcc libstdc++ version " QUOTEME(__GLIBCXX__);
#else
static const std::string environment = "gcc libstdc++ version " QUOTEME(__GLIBCPP__);
#endif
#else
#error "undefined lib{std}c++ version"
#endif
#elif (defined(_MSC_VER))
// _CPPLIB_VER no longer officially exists, _CLR_VER is not what we want
static const std::string environment = "msvc++ version " QUOTEME(_MSC_VER);
#else
static const std::string environment = "unknown";
#endif
return environment;
}
bool IsRelease()
{
static const bool release = SPRING_VERSION_ENGINE_RELEASE;
return release;
}
bool IsHeadless()
{
#ifdef HEADLESS
return true;
#else
return false;
#endif
}
bool IsUnitsync()
{
#ifdef UNITSYNC
return true;
#else
return false;
#endif
}
const std::string& Get()
{
static const std::string base = IsRelease()
? GetMajor()
: (GetMajor() + "." + GetPatchSet() + ".1");
return base;
}
const std::string& GetSync()
{
static const std::string sync = IsRelease()
? GetMajor()
: SPRING_VERSION_ENGINE;
return sync;
}
const std::string& GetFull()
{
static const std::string full = SPRING_VERSION_ENGINE
+ (GetAdditional().empty() ? "" : (" (" + GetAdditional() + ")"));
return full;
}
}
|