From fe6c2a585a7ba59582723b2fef827dd15bbc8f22 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 19 May 2012 18:54:56 +0300 Subject: Fix code style. --- src/client.cpp | 31 +++++++++++++++---------------- src/graphicsmanager.cpp | 11 +++++------ src/utils/paths.cpp | 4 +--- src/utils/paths.h | 2 ++ 4 files changed, 23 insertions(+), 25 deletions(-) diff --git a/src/client.cpp b/src/client.cpp index 18740cfd5..89e3f6ecf 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -2012,26 +2012,25 @@ void Client::storeSafeParameters() width = config.getIntValue("screenwidth"); height = config.getIntValue("screenheight"); + tmpHwaccel = config.getBoolValue("hwaccel"); - if (!mOptions.safeMode && !tmpOpengl) - { - tmpHwaccel = config.getBoolValue("hwaccel"); - - tmpFpslimit = config.getIntValue("fpslimit"); - tmpAltFpslimit = config.getIntValue("altfpslimit"); - tmpSound = config.getBoolValue("sound"); + tmpFpslimit = config.getIntValue("fpslimit"); + tmpAltFpslimit = config.getIntValue("altfpslimit"); + tmpSound = config.getBoolValue("sound"); - font = config.getStringValue("font"); - bFont = config.getStringValue("boldFont"); - particleFont = config.getStringValue("particleFont"); - helpFont = config.getStringValue("helpFont"); - secureFont = config.getStringValue("secureFont"); - japanFont = config.getStringValue("japanFont"); + font = config.getStringValue("font"); + bFont = config.getStringValue("boldFont"); + particleFont = config.getStringValue("particleFont"); + helpFont = config.getStringValue("helpFont"); + secureFont = config.getStringValue("secureFont"); + japanFont = config.getStringValue("japanFont"); - showBackground = config.getBoolValue("showBackground"); - enableMumble = config.getBoolValue("enableMumble"); - enableMapReduce = config.getBoolValue("enableMapReduce"); + showBackground = config.getBoolValue("showBackground"); + enableMumble = config.getBoolValue("enableMumble"); + enableMapReduce = config.getBoolValue("enableMapReduce"); + if (!mOptions.safeMode && !tmpOpengl) + { // if video mode configured reset most settings to safe config.setValue("hwaccel", false); config.setValue("opengl", 0); diff --git a/src/graphicsmanager.cpp b/src/graphicsmanager.cpp index e9360d88c..f1e13b74b 100644 --- a/src/graphicsmanager.cpp +++ b/src/graphicsmanager.cpp @@ -20,7 +20,6 @@ #include "graphicsmanager.h" -#include "client.h" #include "configuration.h" #include "graphics.h" #include "graphicsvertexes.h" @@ -29,7 +28,6 @@ #include "resources/image.h" #include "utils/paths.h" -#include "utils/process.h" #include "utils/stringutils.h" #include "test/testmain.h" @@ -38,7 +36,9 @@ GraphicsManager graphicsManager; -GraphicsManager::GraphicsManager() +GraphicsManager::GraphicsManager() : + mMinor(0), + mMajor(0) { } @@ -48,7 +48,6 @@ GraphicsManager::~GraphicsManager() bool GraphicsManager::startDetection() { - std::string fileName = getSelfName(); TestMain *test = new TestMain(); test->exec(false); return test->getConfig().getValueInt("opengl", -1); @@ -67,13 +66,13 @@ bool GraphicsManager::detectGraphics() logger->log("gl vendor: %s", vendor.c_str()); logger->log("gl renderer: %s", renderer.c_str()); logger->log("gl version: %s", version.c_str()); - sscanf(version.c_str(), "%d.%d", &mMajor, &mMinor); + sscanf(version.c_str(), "%5d.%5d", &mMajor, &mMinor); char const *glExtensions = reinterpret_cast( glGetString(GL_EXTENSIONS)); updateExtensions(glExtensions); - bool mode = 1; + int mode = 1; // detecting features by known renderers or vendors if (findI(renderer, "gdi generic") != std::string::npos) diff --git a/src/utils/paths.cpp b/src/utils/paths.cpp index c00a3f39d..228276efd 100644 --- a/src/utils/paths.cpp +++ b/src/utils/paths.cpp @@ -85,9 +85,7 @@ std::string removeLast(std::string str) if (pos2 == std::string::npos || pos3 > pos2) pos2 = pos3; } - if (pos2 == std::string::npos) - pos2 = -1; - if (pos2 >= 0) + if (pos2 != std::string::npos) return str.substr(0, pos2); else return str; diff --git a/src/utils/paths.h b/src/utils/paths.h index 18fa4629e..ba87ab961 100644 --- a/src/utils/paths.h +++ b/src/utils/paths.h @@ -31,6 +31,8 @@ bool checkPath(std::string path); std::string &fixDirSeparators(std::string &str); +std::string removeLast(std::string str); + std::string getSelfName(); #endif // UTILS_PATHS_H -- cgit v1.2.3-60-g2f50