From 3d96e5ddfbb3074e4b618087c1302fe3148071bc Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Sat, 24 Oct 2009 14:28:49 -0600 Subject: Make homedir accessible from other files --- src/game.cpp | 11 ++++------- src/gui/recorder.cpp | 7 +++---- src/main.cpp | 5 +++++ src/main.h | 2 ++ 4 files changed, 14 insertions(+), 11 deletions(-) (limited to 'src') diff --git a/src/game.cpp b/src/game.cpp index 856288bc..6ce3a1e8 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -92,7 +92,6 @@ #include #include -#include #include #include @@ -404,15 +403,13 @@ static bool saveScreenshot() do { screenshotCount++; filename.str(""); - filenameSuffix.str(""); - filename << PHYSFS_getUserDir(); #if (defined __USE_UNIX98 || defined __FreeBSD__) - filenameSuffix << ".mana/"; + filename << getHomeDirectory(); #elif defined __APPLE__ - filenameSuffix << "Desktop/"; + filename << PHYSFS_getUserDir(); + filename << "Desktop/"; #endif - filenameSuffix << "Mana_Screenshot_" << screenshotCount << ".png"; - filename << filenameSuffix.str(); + filename << "Mana_Screenshot_" << screenshotCount << ".png"; testExists.open(filename.str().c_str(), std::ios::in); found = !testExists.is_open(); testExists.close(); diff --git a/src/gui/recorder.cpp b/src/gui/recorder.cpp index a86048c0..b4013d2a 100644 --- a/src/gui/recorder.cpp +++ b/src/gui/recorder.cpp @@ -28,11 +28,11 @@ #include "gui/widgets/layout.h" #include "gui/widgets/windowcontainer.h" +#include "main.h" + #include "utils/gettext.h" #include "utils/stringutils.h" -#include - Recorder::Recorder(ChatWindow *chat, const std::string &title, const std::string &buttonTxt) : Window(title) @@ -103,8 +103,7 @@ void Recorder::setRecordingFile(const std::string &msg) * recorded. */ localChatTab->chatLog(_("Starting to record..."), BY_SERVER); - const std::string file = - std::string(PHYSFS_getUserDir()) + "/.mana/" + msgCopy; + const std::string file = std::string(getHomeDirectory() + msgCopy); mStream.open(file.c_str(), std::ios_base::trunc); diff --git a/src/main.cpp b/src/main.cpp index 8ecac127..f2d61f07 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -694,6 +694,11 @@ public: } // namespace +const std::string &getHomeDirectory() +{ + return homeDir; +} + // TODO Find some nice place for these functions static void accountLogin(LoginData *loginData) { diff --git a/src/main.h b/src/main.h index 3f8a6f5a..69222d4d 100644 --- a/src/main.h +++ b/src/main.h @@ -83,6 +83,8 @@ #define DEFAULT_PORT 6901 #endif +const std::string &getHomeDirectory(); + /* * Client different States */ -- cgit v1.2.3-70-g09d2