forked from Return-To-The-Roots/s25client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_version.cpp
65 lines (58 loc) · 1.95 KB
/
build_version.cpp
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
// Copyright (c) 2005 - 2015 Settlers Freaks (sf-team at siedler25.org)
//
// This file is part of Return To The Roots.
//
// Return To The Roots is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// Return To The Roots is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Return To The Roots. If not, see <http://www.gnu.org/licenses/>.
///////////////////////////////////////////////////////////////////////////////
// Header
#include <build_version.h>
#include <build_version_defines.h>
#include <cstring>
// Include last!
#include "DebugNew.h" // IWYU pragma: keep
const char* GetWindowTitle()
{
static char title[256];
std::memset(title, 0, 256);
std::strncpy(title, WINDOW_TITLE, 256);
return title;
}
const char* GetWindowVersion()
{
static char version[256];
std::memset(version, 0, 256);
std::strncpy(version, WINDOW_VERSION, 256);
return version;
}
const char* GetWindowRevision()
{
static char revision[256];
std::memset(revision, 0, 256);
std::strncpy(revision, WINDOW_REVISION, 256);
return revision;
}
const char* GetWindowRevisionShort()
{
static char revision[8];
std::memset(revision, 0, 8);
std::strncpy(revision, WINDOW_REVISION, 7);
return revision;
}
const char* GetCurrentYear() //nasty but works, if versioning principle changes, we should make it use date function
{
static char year[5];
std::memset(year, 0, 5);
std::strncpy(year, WINDOW_VERSION, 4);
return year;
}