ManaPlus
useragent.cpp
Go to the documentation of this file.
1 /*
2  * The ManaPlus Client
3  * Copyright (C) 2011-2019 The ManaPlus Developers
4  * Copyright (C) 2019-2021 Andrei Karas
5  *
6  * This file is part of The ManaPlus Client.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <http://www.gnu.org/licenses/>.
20  */
21 
22 #include "net/useragent.h"
23 
24 #include "configuration.h"
25 #include "settings.h"
26 #include "main.h"
27 
28 #include "render/graphics.h"
29 
30 #include "debug.h"
31 
33 {
34  std::string renderName;
35  if (mainGraphics != nullptr)
36  renderName = mainGraphics->getName();
37  else
38  renderName = "unknown";
39 
41  branding.getStringValue("appName").c_str(),
42  renderName.c_str());
43 }
std::string getStringValue(const std::string &key) const
const std::string & getName() const
Definition: graphics.h:314
std::string userAgent
Definition: settings.h:128
Configuration branding
Graphics * mainGraphics
Definition: graphics.cpp:109
#define PACKAGE_EXTENDED_VERSION
Definition: main.h:161
void update()
Definition: useragent.cpp:32
Settings settings
Definition: settings.cpp:32
std::string strprintf(const char *const format,...)