]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/environment.cpp
radiant: check Linux prefix against XDG_DATA_HOME before HOME
[xonotic/netradiant.git] / radiant / environment.cpp
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
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.
11
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.
16
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
20  */
21
22 #include "environment.h"
23 #include "globaldefs.h"
24
25 #include "stream/textstream.h"
26 #include "string/string.h"
27 #include "stream/stringstream.h"
28 #include "debugging/debugging.h"
29 #include "os/path.h"
30 #include "os/file.h"
31 #include "cmdlib.h"
32
33 int g_argc;
34 char const** g_argv;
35
36 void args_init( int argc, char const* argv[] ){
37         int i, j, k;
38
39         for ( i = 1; i < argc; i++ )
40         {
41                 for ( k = i; k < argc; k++ )
42                 {
43                         if ( argv[k] != 0 ) {
44                                 break;
45                         }
46                 }
47
48                 if ( k > i ) {
49                         k -= i;
50                         for ( j = i + k; j < argc; j++ )
51                         {
52                                 argv[j - k] = argv[j];
53                         }
54                         argc -= k;
55                 }
56         }
57
58         g_argc = argc;
59         g_argv = argv;
60 }
61
62 char const *gamedetect_argv_buffer[1024];
63
64 void gamedetect_found_game( char const *game, char *path ){
65         int argc;
66         static char buf[128];
67
68         if ( g_argv == gamedetect_argv_buffer ) {
69                 return;
70         }
71
72         globalOutputStream() << "Detected game " << game << " in " << path << "\n";
73
74         sprintf( buf, "-%s-EnginePath", game );
75         argc = 0;
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;
82         }
83         memcpy( gamedetect_argv_buffer + 4, g_argv, sizeof( *gamedetect_argv_buffer ) * g_argc );
84         g_argc += argc;
85         g_argv = gamedetect_argv_buffer;
86 }
87
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 ){
89         buf[bufpos] = '/';
90
91         strcpy( buf + bufpos + 1, checkfile1 );
92         globalOutputStream() << "Checking for a game file in " << buf << "\n";
93         if ( !file_exists( buf ) ) {
94                 return false;
95         }
96
97         if ( checkfile2 ) {
98                 strcpy( buf + bufpos + 1, checkfile2 );
99                 globalOutputStream() << "Checking for a game file in " << buf << "\n";
100                 if ( !file_exists( buf ) ) {
101                         return false;
102                 }
103         }
104
105         buf[bufpos + 1] = 0;
106         gamedetect_found_game( gamefile, buf );
107         return true;
108 }
109
110 void gamedetect(){
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         int i;
115         for ( i = 1; i < g_argc - 1; ++i )
116         {
117                 if ( g_argv[i][0] == '-' ) {
118                         if ( !strcmp( g_argv[i], "-gamedetect" ) ) {
119                                 nogamedetect = !strcmp( g_argv[i + 1], "false" );
120                         }
121                         ++i;
122                 }
123         }
124         if ( !nogamedetect ) {
125                 static char buf[1024 + 64];
126                 strncpy( buf, environment_get_app_path(), sizeof( buf ) );
127                 buf[sizeof( buf ) - 1 - 64] = 0;
128                 if ( !strlen( buf ) ) {
129                         return;
130                 }
131
132                 char *p = buf + strlen( buf ) - 1; // point directly on the slash of get_app_path
133                 while ( p != buf )
134                 {
135                         // TODO add more games to this
136
137                         // try to detect Nexuiz installs
138 #if GDEF_OS_WINDOWS
139                         if ( gamedetect_check_game( "nexuiz.game", "data/common-spog.pk3", "nexuiz.exe", buf, p - buf ) )
140 #elif GDEF_OS_MACOS
141                         if ( gamedetect_check_game( "nexuiz.game", "data/common-spog.pk3", "Nexuiz.app/Contents/Info.plist", buf, p - buf ) )
142 #else
143                         if ( gamedetect_check_game( "nexuiz.game", "data/common-spog.pk3", "nexuiz-linux-glx.sh", buf, p - buf ) )
144 #endif
145                         { return; }
146
147                         // try to detect Quetoo installs
148                         if ( gamedetect_check_game( "quetoo.game", "default/icons/quetoo.png", NULL, buf, p - buf ) ) {
149                                 return;
150                         }
151
152                         // try to detect Warsow installs
153                         if ( gamedetect_check_game( "warsow.game", "basewsw/dedicated_autoexec.cfg", NULL, buf, p - buf ) ) {
154                                 return;
155                         }
156
157                         // we found nothing
158                         // go backwards
159                         --p;
160                         while ( p != buf && *p != '/' && *p != '\\' )
161                                 --p;
162                 }
163         }
164 }
165
166 namespace
167 {
168 CopiedString home_path;
169 CopiedString app_path;
170         CopiedString lib_path;
171         CopiedString data_path;
172 }
173
174 const char* environment_get_home_path(){
175         return home_path.c_str();
176 }
177
178 const char* environment_get_app_path(){
179         return app_path.c_str();
180 }
181
182
183 const char *environment_get_lib_path()
184 {
185         return lib_path.c_str();
186 }
187
188 const char *environment_get_data_path()
189 {
190         return data_path.c_str();
191 }
192
193 bool portable_app_setup(){
194         StringOutputStream confdir( 256 );
195         confdir << app_path.c_str() << "settings/";
196         if ( file_is_directory( confdir.c_str() ) ) {
197                 home_path = confdir.c_str();
198                 return true;
199         }
200         return false;
201 }
202
203 #if GDEF_OS_POSIX
204
205 #include <stdlib.h>
206 #include <pwd.h>
207 #include <unistd.h>
208
209 #include <glib.h>
210
211 const char* LINK_NAME =
212 #if GDEF_OS_LINUX
213         "/proc/self/exe"
214 #else // FreeBSD and OSX
215         "/proc/curproc/file"
216 #endif
217 ;
218
219 /// brief Returns the filename of the executable belonging to the current process, or 0 if not found.
220 char const* getexename( char *buf ){
221         /* Now read the symbolic link */
222         int ret = readlink( LINK_NAME, buf, PATH_MAX );
223
224         if ( ret == -1 ) {
225                 globalOutputStream() << "getexename: falling back to argv[0]: " << makeQuoted( g_argv[0] );
226                 const char* path = realpath( g_argv[0], buf );
227                 if ( path == 0 ) {
228                         /* In case of an error, leave the handling up to the caller */
229                         return "";
230                 }
231         }
232
233         /* Ensure proper NUL termination */
234         buf[ret] = 0;
235
236         /* delete the program name */
237         *( strrchr( buf, '/' ) ) = '\0';
238
239         // NOTE: we build app path with a trailing '/'
240         // it's a general convention in Radiant to have the slash at the end of directories
241         if ( buf[strlen( buf ) - 1] != '/' ) {
242                 strcat( buf, "/" );
243         }
244
245         return buf;
246 }
247
248 void environment_init( int argc, char const* argv[] ){
249         // Give away unnecessary root privileges.
250         // Important: must be done before calling gtk_init().
251         char *loginname;
252         struct passwd *pw;
253         seteuid( getuid() );
254         if ( geteuid() == 0 && ( loginname = getlogin() ) != 0 &&
255                  ( pw = getpwnam( loginname ) ) != 0 ) {
256                 setuid( pw->pw_uid );
257         }
258
259         args_init( argc, argv );
260
261         {
262                 char real[PATH_MAX];
263                 app_path = getexename( real );
264                 ASSERT_MESSAGE( !string_empty( app_path.c_str() ), "failed to deduce app path" );
265         }
266
267         {
268                 StringOutputStream buffer;
269                 buffer << app_path.c_str() << "../lib/" << RADIANT_BASENAME << "/";
270                 if ( file_is_directory( buffer.c_str() ) ) {
271                         lib_path = buffer.c_str();
272                 }
273                 else {
274                         lib_path = app_path.c_str();
275                 }
276         }
277
278         {
279                 StringOutputStream buffer;
280                 buffer << app_path.c_str() << "../share/" << RADIANT_BASENAME << "/";
281                 if ( file_is_directory( buffer.c_str() ) ) {
282                         data_path = buffer.c_str();
283                 }
284                 else {
285                         data_path = app_path.c_str();
286                 }
287         }
288
289         if ( !portable_app_setup() ) {
290                 StringOutputStream home( 256 );
291                 home << DirectoryCleaned(g_get_user_config_dir()) << "/" << RADIANT_BASENAME << "/";
292                 Q_mkdir( home.c_str() );
293                 home_path = home.c_str();
294         }
295         gamedetect();
296 }
297
298 #elif GDEF_OS_WINDOWS
299
300 #include <windows.h>
301
302 void environment_init( int argc, char const* argv[] ){
303         args_init( argc, argv );
304
305         {
306                 // get path to the editor
307                 char filename[MAX_PATH + 1];
308                 GetModuleFileName( 0, filename, MAX_PATH );
309                 char* last_separator = strrchr( filename, '\\' );
310                 if ( last_separator != 0 ) {
311                         *( last_separator + 1 ) = '\0';
312                 }
313                 else
314                 {
315                         filename[0] = '\0';
316                 }
317                 StringOutputStream app( 256 );
318                 app << PathCleaned( filename );
319                 app_path = app.c_str();
320
321                 lib_path = app_path;
322                 data_path = app_path;
323         }
324
325         if ( !portable_app_setup() ) {
326                 char *appdata = getenv( "APPDATA" );
327                 StringOutputStream home( 256 );
328                 home << PathCleaned( appdata );
329                 home << "/NetRadiantSettings/";
330                 Q_mkdir( home.c_str() );
331                 home_path = home.c_str();
332         }
333         gamedetect();
334 }
335
336 #else
337 #error "unsupported platform"
338 #endif