2 Copyright (C) 2001-2006, William Joseph.
5 This file is part of GtkRadiant.
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "environment.h"
23 #include "globaldefs.h"
25 #include "stream/textstream.h"
26 #include "string/string.h"
27 #include "stream/stringstream.h"
28 #include "debugging/debugging.h"
36 void args_init( int argc, char const* argv[] ){
39 for ( i = 1; i < argc; i++ )
41 for ( k = i; k < argc; k++ )
50 for ( j = i + k; j < argc; j++ )
52 argv[j - k] = argv[j];
62 char const *gamedetect_argv_buffer[1024];
64 void gamedetect_found_game( char const *game, char *path ){
68 if ( g_argv == gamedetect_argv_buffer ) {
72 globalOutputStream() << "Detected game " << game << " in " << path << "\n";
74 sprintf( buf, "-%s-EnginePath", game );
76 gamedetect_argv_buffer[argc++] = "-global-gamefile";
77 gamedetect_argv_buffer[argc++] = game;
78 gamedetect_argv_buffer[argc++] = buf;
79 gamedetect_argv_buffer[argc++] = path;
80 if ( (size_t) ( argc + g_argc ) >= sizeof( gamedetect_argv_buffer ) / sizeof( *gamedetect_argv_buffer ) - 1 ) {
81 g_argc = sizeof( gamedetect_argv_buffer ) / sizeof( *gamedetect_argv_buffer ) - g_argc - 1;
83 memcpy( gamedetect_argv_buffer + 4, g_argv, sizeof( *gamedetect_argv_buffer ) * g_argc );
85 g_argv = gamedetect_argv_buffer;
88 bool gamedetect_check_game( char const *gamefile, const char *checkfile1, const char *checkfile2, char *buf /* must have 64 bytes free after bufpos */, int bufpos ){
91 strcpy( buf + bufpos + 1, checkfile1 );
92 globalOutputStream() << "Checking for a game file in " << buf << "\n";
93 if ( !file_exists( buf ) ) {
98 strcpy( buf + bufpos + 1, checkfile2 );
99 globalOutputStream() << "Checking for a game file in " << buf << "\n";
100 if ( !file_exists( buf ) ) {
106 gamedetect_found_game( gamefile, buf );
111 // if we're inside a Nexuiz install
112 // default to nexuiz.game (unless the user used an option to inhibit this)
113 //bool nogamedetect = false;
114 bool nogamedetect = true;
116 for ( i = 1; i < g_argc - 1; ++i )
118 if ( g_argv[i][0] == '-' ) {
119 if ( !strcmp( g_argv[i], "-gamedetect" ) ) {
120 nogamedetect = !strcmp( g_argv[i + 1], "false" );
125 if ( !nogamedetect ) {
126 static char buf[1024 + 64];
127 strncpy( buf, environment_get_app_path(), sizeof( buf ) );
128 buf[sizeof( buf ) - 1 - 64] = 0;
129 if ( !strlen( buf ) ) {
133 char *p = buf + strlen( buf ) - 1; // point directly on the slash of get_app_path
136 // TODO add more games to this
138 // try to detect Nexuiz installs
140 if ( gamedetect_check_game( "nexuiz.game", "data/common-spog.pk3", "nexuiz.exe", buf, p - buf ) )
142 if ( gamedetect_check_game( "nexuiz.game", "data/common-spog.pk3", "Nexuiz.app/Contents/Info.plist", buf, p - buf ) )
144 if ( gamedetect_check_game( "nexuiz.game", "data/common-spog.pk3", "nexuiz-linux-glx.sh", buf, p - buf ) )
146 if ( gamedetect_check_game( "nexuiz.game", "data/common-spog.pk3", NULL, buf, p - buf ) )
150 // try to detect Quetoo installs
151 if ( gamedetect_check_game( "quetoo.game", "default/icons/quetoo.png", NULL, buf, p - buf ) ) {
155 // try to detect Warsow installs
156 if ( gamedetect_check_game( "warsow.game", "basewsw/dedicated_autoexec.cfg", NULL, buf, p - buf ) ) {
163 while ( p != buf && *p != '/' && *p != '\\' )
171 // executable file path
172 CopiedString app_filepath;
174 CopiedString home_path;
175 CopiedString app_path;
176 CopiedString lib_path;
177 CopiedString data_path;
180 const char* environment_get_app_filepath(){
181 return app_filepath.c_str();
184 const char* environment_get_home_path(){
185 return home_path.c_str();
188 const char* environment_get_app_path(){
189 return app_path.c_str();
192 const char *environment_get_lib_path()
194 return lib_path.c_str();
197 const char *environment_get_data_path()
199 return data_path.c_str();
202 bool portable_app_setup(){
203 StringOutputStream confdir( 256 );
204 confdir << app_path.c_str() << "settings/";
205 if ( file_is_directory( confdir.c_str() ) ) {
206 home_path = confdir.c_str();
213 const char* openCmdMap;
217 for ( int i = 1; i < g_argc; ++i )
219 //if ( !stricmp( g_argv[i] + strlen(g_argv[i]) - 4, ".map" ) ){
220 if( string_equal_suffix_nocase( g_argv[i], ".map" ) ){
221 openCmdMap = g_argv[i];
234 const char* LINK_NAME =
237 #else // FreeBSD and macOS
242 /// brief Returns the filename of the executable belonging to the current process, or empty string if not found.
243 char const* getexename( char *buf ){
244 /* Now read the symbolic link */
245 const int ret = readlink( LINK_NAME, buf, PATH_MAX );
248 globalOutputStream() << "getexename: falling back to argv[0]: " << makeQuoted( g_argv[0] );
249 if( realpath( g_argv[0], buf ) == 0 ) {
250 /* In case of an error, leave the handling up to the caller */
255 /* Ensure proper NUL termination */
262 char const* getexepath( char *buf ) {
263 /* delete the program name */
264 *( strrchr( buf, '/' ) ) = '\0';
266 // NOTE: we build app path with a trailing '/'
267 // it's a general convention in Radiant to have the slash at the end of directories
268 if ( buf[strlen( buf ) - 1] != '/' ) {
275 void environment_init( int argc, char const* argv[] ){
276 // Give away unnecessary root privileges.
277 // Important: must be done before calling gtk_init().
281 if ( geteuid() == 0 && ( loginname = getlogin() ) != 0 &&
282 ( pw = getpwnam( loginname ) ) != 0 ) {
283 setuid( pw->pw_uid );
286 args_init( argc, argv );
290 app_filepath = getexename( real );
291 ASSERT_MESSAGE( !string_empty( app_filepath.c_str() ), "failed to deduce app path" );
293 strncpy( real, app_filepath.c_str(), strlen( app_filepath.c_str() ) );
294 app_path = getexepath( real );
298 #if defined(RADIANT_FHS_INSTALL)
299 StringOutputStream buffer;
300 #if defined(RADIANT_ADDONS_DIR)
301 buffer << RADIANT_ADDONS_DIR << "/";
303 buffer << app_path.c_str() << "../lib/";
304 buffer << RADIANT_LIB_ARCH << "/";
305 buffer << RADIANT_BASENAME << "/";
307 lib_path = buffer.c_str();
309 lib_path = app_path.c_str();
314 #if defined(RADIANT_FHS_INSTALL)
315 StringOutputStream buffer;
316 #if defined(RADIANT_DATA_DIR)
317 buffer << RADIANT_DATA_DIR << "/";
319 buffer << app_path.c_str() << "../share/";
320 buffer << RADIANT_BASENAME << "/";
322 data_path = buffer.c_str();
324 data_path = app_path.c_str();
328 if ( !portable_app_setup() ) {
329 StringOutputStream home( 256 );
331 /* This is used on macOS, this will produce
332 ~/Library/Application Support/NetRadiant folder. */
333 home << DirectoryCleaned( g_get_home_dir() );
334 Q_mkdir( home.c_str() );
336 Q_mkdir( home.c_str() );
337 home << "Application Support/";
338 Q_mkdir( home.c_str() );
339 home << RADIANT_NAME << "/";
340 #else // if GDEF_OS_XDG
341 /* This is used on both Linux and FreeBSD,
342 this will produce ~/.config/netradiant folder
343 when environment has default settings, the
344 XDG_CONFIG_HOME variable modifies it. */
345 home << DirectoryCleaned( g_get_user_config_dir() );
346 Q_mkdir( home.c_str() );
347 home << RADIANT_BASENAME << "/";
348 #endif // ! GDEF_OS_MACOS
349 Q_mkdir( home.c_str() );
350 home_path = home.c_str();
357 #elif GDEF_OS_WINDOWS
361 void environment_init( int argc, char const* argv[] ){
362 args_init( argc, argv );
365 // get path to the editor
366 char filename[MAX_PATH + 1];
367 StringOutputStream app_filepath_stream( 256 );
368 StringOutputStream app_path_stream( 256 );
370 GetModuleFileName( 0, filename, MAX_PATH );
372 app_filepath_stream << PathCleaned( filename );
373 app_filepath = app_filepath_stream.c_str();
375 char* last_separator = strrchr( filename, '\\' );
376 if ( last_separator != 0 ) {
377 *( last_separator + 1 ) = '\0';
384 app_path_stream << PathCleaned( filename );
385 app_path = app_path_stream.c_str();
388 data_path = app_path;
391 if ( !portable_app_setup() ) {
392 char *appdata = getenv( "APPDATA" );
394 StringOutputStream home( 256 );
395 home << PathCleaned( appdata );
397 home << RADIANT_NAME;
400 Q_mkdir( home.c_str() );
401 home_path = home.c_str();
408 #error "unsupported platform"