From: mathnerd314 Date: Mon, 7 Mar 2011 23:58:43 +0000 (+0000) Subject: Create and use --print-datadir on supertux2.exe to determine the location of the... X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=d87c438097550ae5a12f5762f708f1a74d1790f7;p=supertux.git Create and use --print-datadir on supertux2.exe to determine the location of the data directory git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6679 837edb03-e0f3-0310-88ca-d4d4e8b29345 --- diff --git a/src/supertux/main.cpp b/src/supertux/main.cpp index 84f3741c5..bb0a8297e 100644 --- a/src/supertux/main.cpp +++ b/src/supertux/main.cpp @@ -23,6 +23,7 @@ #include #include #include +#include #include "supertux/main.hpp" @@ -139,7 +140,9 @@ Main::init_physfs(const char* argv0) // when started from source dir... std::string dir = PHYSFS_getBaseDir(); - dir += "/data"; + if (dir[dir.length() - 1] != '/') + dir += "/"; + dir += "data"; std::string testfname = dir; testfname += "/credits.txt"; bool sourcedir = false; @@ -240,6 +243,7 @@ Main::print_usage(const char* argv0) " --record-demo FILE LEVEL Record a demo to FILE\n" " --play-demo FILE LEVEL Play a recorded demo\n" " -s, --debug-scripts Enable script debugger.\n" + " --print-datadir Print supertux's primary data directory.\n" "\n" "Environment variables:\n" " SUPERTUX2_USER_DIR Directory for user data (savegames, etc.);\n" @@ -267,6 +271,34 @@ Main::pre_parse_commandline(int argc, char** argv) print_usage(argv[0]); return true; } + if(arg == "--print-datadir") { + /* + * Print the datadir searchpath to stdout, one path per + * line. Then exit. Intended for use by the supertux-editor. + */ + char **sp; + char *writeptr; + ssize_t write_ret; + size_t sp_index; + sp = PHYSFS_getSearchPath(); + if (sp) + for (sp_index = 0; sp[sp_index]; sp_index ++) + { + writeptr = sp[sp_index]; + write_ret = 0; + while (*writeptr) + { + write_ret = write(STDOUT_FILENO, writeptr, strlen(writeptr)); + if (write_ret == -1) + break; + writeptr += write_ret; + } + write(STDOUT_FILENO, "\n", 1); + /* std::cout << sp[sp_index] << std::endl; */ + } + PHYSFS_freeList(sp); + return true; + } } return false;