Mercurial > audlegacy
annotate audacious/main.c @ 943:0606d7908abb trunk
[svn] - New default titlestring
author | nhjm449 |
---|---|
date | Sun, 16 Apr 2006 14:37:40 -0700 |
parents | c800beaac0f9 |
children | 8cfe13fcd0c7 |
rev | line source |
---|---|
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1 /* Audacious - Cross-platform multimedia player |
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
2 * Copyright (C) 2005-2006 Audacious development team. |
197
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
3 * |
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
4 * Based on BMP: |
0 | 5 * Copyright (C) 2003-2004 BMP development team. |
6 * | |
7 * Based on XMMS: | |
8 * Copyright (C) 1998-2003 XMMS development team. | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
12 * the Free Software Foundation; either version 2 of the License, or | |
13 * (at your option) any later version. | |
14 * | |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program; if not, write to the Free Software | |
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
23 */ | |
24 | |
25 #ifdef HAVE_CONFIG_H | |
26 # include "config.h" | |
27 #endif | |
28 | |
29 #include "main.h" | |
30 | |
31 #include <glib.h> | |
32 #include <glib/gi18n.h> | |
33 #include <glib/gprintf.h> | |
34 #include <gdk/gdk.h> | |
35 #include <stdlib.h> | |
36 #include <string.h> | |
37 #include <getopt.h> | |
38 #include <ctype.h> | |
39 #include <time.h> | |
40 | |
41 #include <unistd.h> | |
42 #include <errno.h> | |
43 #include <sys/types.h> | |
44 #include <sys/stat.h> | |
45 #include <signal.h> | |
46 #include <gdk/gdkx.h> | |
47 #include <X11/Xlib.h> | |
48 #include <X11/Xatom.h> | |
49 | |
50 #include "libaudacious/configdb.h" | |
51 #include "libaudacious/beepctrl.h" | |
52 #include "libaudacious/util.h" | |
53 #include "libaudacious/vfs.h" | |
54 | |
55 #include "controlsocket.h" | |
56 #include "dnd.h" | |
57 #include "dock.h" | |
58 #include "effect.h" | |
59 #include "equalizer.h" | |
60 #include "general.h" | |
197
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
61 #include "genevent.h" |
0 | 62 #include "hints.h" |
63 #include "input.h" | |
64 #include "logger.h" | |
65 #include "mainwin.h" | |
66 #include "output.h" | |
538
e4e897d20791
[svn] remove libaudcore, we never did anything with it
nenolod
parents:
534
diff
changeset
|
67 #include "playback.h" |
0 | 68 #include "playlist.h" |
383 | 69 #include "ui_playlist.h" |
0 | 70 #include "pluginenum.h" |
71 #include "prefswin.h" | |
72 #include "skin.h" | |
73 #include "skinwin.h" | |
74 #include "util.h" | |
75 #include "visualization.h" | |
530
1947144093bc
[svn] When running SVN, make a note of the SVN version. The SVN version is stored in build_stamp.c.
nenolod
parents:
486
diff
changeset
|
76 #include "build_stamp.h" |
0 | 77 |
78 #include "pixmaps.h" | |
120 | 79 #include "images/audacious_player.xpm" |
0 | 80 |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
81 gboolean has_x11_connection = FALSE; /* do we have an X11 connection? */ |
0 | 82 |
83 /* Translatable string for beep.desktop's comment field */ | |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
84 const gchar *desktop_comment = N_("Audacious"); |
0 | 85 |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
86 const gchar *application_name = N_("Audacious"); |
0 | 87 |
88 | |
89 struct _BmpCmdLineOpt { | |
90 GList *filenames; | |
91 gint session; | |
92 gboolean play, stop, pause, fwd, rew, play_pause, playcd; | |
93 gboolean enqueue, mainwin, remote, activate; | |
94 gboolean load_skins; | |
191 | 95 gboolean headless; |
0 | 96 gchar *previous_session_id; |
97 }; | |
98 | |
99 typedef struct _BmpCmdLineOpt BmpCmdLineOpt; | |
100 | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
101 BmpCmdLineOpt options; |
0 | 102 |
103 BmpConfig cfg; | |
104 | |
105 BmpConfig bmp_default_config = { | |
106 MAINWIN_DEFAULT_POS_X, /* mainwin x position */ | |
107 MAINWIN_DEFAULT_POS_Y, /* mainwin y position */ | |
108 EQUALIZER_DEFAULT_POS_X, /* equalizer x position */ | |
109 EQUALIZER_DEFAULT_POS_Y, /* equalizer y position */ | |
110 PLAYLISTWIN_DEFAULT_POS_X, /* playlistwin x position */ | |
111 PLAYLISTWIN_DEFAULT_POS_Y, /* playlistwin y position */ | |
112 PLAYLISTWIN_DEFAULT_WIDTH, /* playlistwin width */ | |
113 PLAYLISTWIN_DEFAULT_HEIGHT, /* playlistwin height */ | |
114 10, /* snap distance */ | |
115 FALSE, /* real-time priority */ | |
116 FALSE, FALSE, /* shuffle, repeat */ | |
117 FALSE, /* UNUSED (double size) */ | |
118 TRUE, /* autoscroll */ | |
898 | 119 FALSE, /* stop after current song */ |
0 | 120 TRUE, /* analyzer peaks */ |
121 FALSE, /* equalizer autoload */ | |
122 FALSE, /* easy move */ | |
123 FALSE, /* equalizer active */ | |
124 FALSE, /* playlistwin visible */ | |
125 FALSE, /* equalizer visible */ | |
126 TRUE, /* player visible */ | |
127 FALSE, /* player shaded */ | |
128 FALSE, /* playlistwin shaded */ | |
129 FALSE, /* equalizer shaded */ | |
130 FALSE, /* allow multiple instances */ | |
131 TRUE, /* always show cb */ | |
132 TRUE, TRUE, /* convert '_' and %20 */ | |
133 TRUE, /* show numbers in playlist */ | |
134 TRUE, /* snap windows */ | |
135 TRUE, /* save window positions */ | |
136 TRUE, /* dim titlebar */ | |
137 FALSE, /* get playlist info on load */ | |
138 TRUE, /* get playlist info on demand */ | |
139 TRUE, /* UNUSED (equalizer doublesize linked) */ | |
140 FALSE, /* sort jump to file */ | |
141 FALSE, /* use effect plugins */ | |
142 FALSE, /* always on top */ | |
143 FALSE, /* sticky */ | |
144 FALSE, /* no playlist advance */ | |
893
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
145 #ifdef HAVE_GNOME_VFS |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
146 FALSE, /* refresh file list - should be unneeded with VFS */ |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
147 #else |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
148 TRUE, /* refresh file list */ |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
149 #endif |
0 | 150 TRUE, /* UNUSED (smooth title scrolling) */ |
151 TRUE, /* use playlist metadata */ | |
152 TRUE, /* warn about unplayables */ | |
153 FALSE, /* use \ as directory delimiter */ | |
154 FALSE, /* random skin on play */ | |
155 FALSE, /* use fontsets */ | |
156 FALSE, /* use X font for mainwin */ | |
157 TRUE, /* use custom cursors */ | |
158 TRUE, /* close dialog on open */ | |
159 TRUE, /* close dialog on add */ | |
160 0.0, /* equalizer preamp */ | |
161 {0, 0, 0, 0, 0, /* equalizer bands */ | |
162 0, 0, 0, 0, 0}, | |
163 NULL, /* skin */ | |
164 NULL, /* output plugin */ | |
165 NULL, /* file selector path */ | |
166 NULL, /* playlist path */ | |
167 NULL, /* playlist font */ | |
168 NULL, /* mainwin font */ | |
169 NULL, /* disabled input plugins */ | |
170 NULL, /* enabled general plugins */ | |
171 NULL, /* enabled visualization plugins */ | |
172 NULL, /* enabled effect plugins */ | |
173 NULL, /* equalizer preset default file */ | |
174 NULL, /* equalizer preset extension */ | |
175 NULL, /* URL history */ | |
176 0, /* timer mode */ | |
177 VIS_ANALYZER, /* visualizer type */ | |
178 ANALYZER_NORMAL, /* analyzer mode */ | |
179 ANALYZER_BARS, /* analyzer type */ | |
180 SCOPE_DOT, /* scope mode */ | |
181 VU_SMOOTH, /* VU mode */ | |
182 REFRESH_FULL, /* visualizer refresh rate */ | |
183 FALLOFF_FAST, /* analyzer fall off rate */ | |
184 FALLOFF_SLOW, /* peaks fall off rate */ | |
185 0, /* playlist position */ | |
186 2, /* pause between songs time */ | |
187 FALSE, /* pause between songs */ | |
188 FALSE, /* show window decorations */ | |
189 8, /* mouse wheel scroll step */ | |
190 FALSE, /* playlist transparent */ | |
534
ba0608cbbdaa
[svn] artist - album - title is now the default title format.
nenolod
parents:
530
diff
changeset
|
191 2, /* 2nd preset (ARTIST - TITLE) */ |
0 | 192 NULL, /* title format */ |
193 FALSE, /* software volume control enabled */ | |
194 TRUE, /* UNUSED (XMMS compatibility mode) */ | |
195 TRUE, /* extra eq filtering */ | |
196 3 /* scroll pl by */ | |
197 }; | |
198 | |
199 typedef struct bmp_cfg_boolent_t { | |
200 char const *be_vname; | |
201 gboolean *be_vloc; | |
202 gboolean be_wrt; | |
203 } bmp_cfg_boolent; | |
204 | |
205 typedef struct bmp_cfg_nument_t { | |
206 char const *ie_vname; | |
207 gint *ie_vloc; | |
208 gboolean ie_wrt; | |
209 } bmp_cfg_nument; | |
210 | |
211 typedef struct bmp_cfg_strent_t { | |
212 char const *se_vname; | |
213 char **se_vloc; | |
214 gboolean se_wrt; | |
215 } bmp_cfg_strent; | |
216 | |
217 const gchar *bmp_titlestring_presets[] = { | |
218 "%t", | |
219 "%p - %t", | |
220 "%p - %a - %t", | |
943 | 221 "%p - %{a:%a - %}%t", |
222 "%{p:%p - %}%{a:%a - %}%{n:%n. %}%t", | |
223 "%{p:%p %}%{a:[ %a ] %}%{p:- %}%{n:%n. %}%{t:%t%}", | |
0 | 224 "%a - %t" |
225 }; | |
226 | |
227 const guint n_titlestring_presets = G_N_ELEMENTS(bmp_titlestring_presets); | |
228 | |
229 static bmp_cfg_boolent bmp_boolents[] = { | |
230 {"allow_multiple_instances", &cfg.allow_multiple_instances, TRUE}, | |
231 {"use_realtime", &cfg.use_realtime, TRUE}, | |
232 {"always_show_cb", &cfg.always_show_cb, TRUE}, | |
233 {"convert_underscore", &cfg.convert_underscore, TRUE}, | |
234 {"convert_twenty", &cfg.convert_twenty, TRUE}, | |
235 {"show_numbers_in_pl", &cfg.show_numbers_in_pl, TRUE}, | |
236 {"snap_windows", &cfg.snap_windows, TRUE}, | |
237 {"save_window_positions", &cfg.save_window_position, TRUE}, | |
238 {"dim_titlebar", &cfg.dim_titlebar, TRUE}, | |
239 {"get_info_on_load", &cfg.get_info_on_load, TRUE}, | |
240 {"get_info_on_demand", &cfg.get_info_on_demand, TRUE}, | |
241 {"no_playlist_advance", &cfg.no_playlist_advance, TRUE}, | |
893
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
242 {"refresh_file_list", &cfg.refresh_file_list, TRUE}, |
0 | 243 {"sort_jump_to_file", &cfg.sort_jump_to_file, TRUE}, |
244 {"use_pl_metadata", &cfg.use_pl_metadata, TRUE}, | |
245 {"warn_about_unplayables", &cfg.warn_about_unplayables, TRUE}, | |
246 {"use_backslash_as_dir_delimiter", &cfg.use_backslash_as_dir_delimiter, TRUE}, | |
247 {"player_shaded", &cfg.player_shaded, TRUE}, | |
248 {"player_visible", &cfg.player_visible, TRUE}, | |
249 {"shuffle", &cfg.shuffle, TRUE}, | |
250 {"repeat", &cfg.repeat, TRUE}, | |
251 {"autoscroll_songname", &cfg.autoscroll, TRUE}, | |
898 | 252 {"stop_after_current_song", &cfg.stopaftersong, TRUE}, |
0 | 253 {"playlist_shaded", &cfg.playlist_shaded, TRUE}, |
254 {"playlist_visible", &cfg.playlist_visible, TRUE}, | |
255 {"playlist_transparent", &cfg.playlist_transparent, TRUE}, | |
256 {"use_fontsets", &cfg.use_fontsets, TRUE}, | |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
257 {"mainwin_use_xfont", &cfg.mainwin_use_xfont, FALSE}, |
0 | 258 {"equalizer_visible", &cfg.equalizer_visible, TRUE}, |
259 {"equalizer_active", &cfg.equalizer_active, TRUE}, | |
260 {"equalizer_shaded", &cfg.equalizer_shaded, TRUE}, | |
261 {"equalizer_autoload", &cfg.equalizer_autoload, TRUE}, | |
262 {"use_eplugins", &cfg.use_eplugins, TRUE}, | |
263 {"always_on_top", &cfg.always_on_top, TRUE}, | |
264 {"sticky", &cfg.sticky, TRUE}, | |
265 {"random_skin_on_play", &cfg.random_skin_on_play, TRUE}, | |
266 {"pause_between_songs", &cfg.pause_between_songs, TRUE}, | |
267 {"show_wm_decorations", &cfg.show_wm_decorations, TRUE}, | |
268 {"eq_extra_filtering", &cfg.eq_extra_filtering, TRUE}, | |
269 {"analyzer_peaks", &cfg.analyzer_peaks, TRUE}, | |
270 {"custom_cursors", &cfg.custom_cursors, TRUE}, | |
271 {"close_dialog_open", &cfg.close_dialog_open, TRUE}, | |
272 {"close_dialog_add", &cfg.close_dialog_add, TRUE} | |
273 }; | |
274 | |
275 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); | |
276 | |
277 static bmp_cfg_nument bmp_numents[] = { | |
278 {"player_x", &cfg.player_x, TRUE}, | |
279 {"player_y", &cfg.player_y, TRUE}, | |
280 {"timer_mode", &cfg.timer_mode, TRUE}, | |
281 {"vis_type", &cfg.vis_type, TRUE}, | |
282 {"analyzer_mode", &cfg.analyzer_mode, TRUE}, | |
283 {"analyzer_type", &cfg.analyzer_type, TRUE}, | |
284 {"scope_mode", &cfg.scope_mode, TRUE}, | |
285 {"vu_mode", &cfg.vu_mode, TRUE}, | |
286 {"vis_refresh_rate", &cfg.vis_refresh, TRUE}, | |
287 {"analyzer_falloff", &cfg.analyzer_falloff, TRUE}, | |
288 {"peaks_falloff", &cfg.peaks_falloff, TRUE}, | |
289 {"playlist_x", &cfg.playlist_x, TRUE}, | |
290 {"playlist_y", &cfg.playlist_y, TRUE}, | |
291 {"playlist_width", &cfg.playlist_width, TRUE}, | |
292 {"playlist_height", &cfg.playlist_height, TRUE}, | |
293 {"playlist_position", &cfg.playlist_position, TRUE}, | |
294 {"equalizer_x", &cfg.equalizer_x, TRUE}, | |
295 {"equalizer_y", &cfg.equalizer_y, TRUE}, | |
296 {"snap_distance", &cfg.snap_distance, TRUE}, | |
297 {"pause_between_songs_time", &cfg.pause_between_songs_time, TRUE}, | |
298 {"mouse_wheel_change", &cfg.mouse_change, TRUE}, | |
299 {"scroll_pl_by", &cfg.scroll_pl_by, TRUE}, | |
300 {"titlestring_preset", &cfg.titlestring_preset, TRUE}, | |
301 }; | |
302 | |
303 static gint ncfgient = G_N_ELEMENTS(bmp_numents); | |
304 | |
305 static bmp_cfg_strent bmp_strents[] = { | |
306 {"playlist_font", &cfg.playlist_font, TRUE}, | |
307 {"mainwin_font", &cfg.mainwin_font, TRUE}, | |
308 {"eqpreset_default_file", &cfg.eqpreset_default_file, TRUE}, | |
309 {"eqpreset_extension", &cfg.eqpreset_extension, TRUE}, | |
310 {"skin", &cfg.skin, FALSE}, | |
311 {"output_plugin", &cfg.outputplugin, FALSE}, | |
312 {"disabled_iplugins", &cfg.disabled_iplugins, TRUE}, | |
313 {"enabled_gplugins", &cfg.enabled_gplugins, FALSE}, | |
314 {"enabled_vplugins", &cfg.enabled_vplugins, FALSE}, | |
315 {"enabled_eplugins", &cfg.enabled_eplugins, FALSE}, | |
316 {"filesel_path", &cfg.filesel_path, FALSE}, | |
317 {"playlist_path", &cfg.playlist_path, FALSE}, | |
318 {"generic_title_format", &cfg.gentitle_format, TRUE}, | |
319 }; | |
320 | |
321 static gint ncfgsent = G_N_ELEMENTS(bmp_strents); | |
322 | |
323 gchar *bmp_paths[BMP_PATH_COUNT] = {}; | |
324 | |
325 GList *dock_window_list = NULL; | |
326 | |
327 gboolean pposition_broken = FALSE; | |
328 | |
486 | 329 gboolean starting_up = TRUE; |
0 | 330 |
331 static GSList * | |
332 get_feature_list(void) | |
333 { | |
334 GSList *features = NULL; | |
335 | |
336 #ifdef HAVE_GNOME_VFS | |
337 features = g_slist_append(features, "GNOME VFS"); | |
338 #endif | |
339 | |
340 #ifdef HAVE_GCONF | |
341 features = g_slist_append(features, "GConf"); | |
342 #endif | |
343 | |
344 return features; | |
345 } | |
346 | |
347 static void | |
348 dump_version(void) | |
349 { | |
350 GSList *features; | |
351 | |
530
1947144093bc
[svn] When running SVN, make a note of the SVN version. The SVN version is stored in build_stamp.c.
nenolod
parents:
486
diff
changeset
|
352 g_printf("%s %s [%s]", _(application_name), VERSION, svn_stamp); |
0 | 353 |
354 features = get_feature_list(); | |
355 | |
356 if (features) { | |
357 GSList *item; | |
358 | |
359 g_printf(" ("); | |
360 | |
361 for (item = features; g_slist_next(item); item = g_slist_next(item)) | |
362 g_printf("%s, ", (const gchar *) item->data); | |
363 | |
364 g_printf("%s)", (const gchar *) item->data); | |
365 | |
366 g_slist_free(features); | |
367 } | |
368 | |
369 g_printf("\n"); | |
370 } | |
371 | |
372 const gchar * | |
373 xmms_get_gentitle_format(void) | |
374 { | |
625
0a73d1faeb4e
[svn] GCC 4.1 warning fixes by Diego 'Flameeyes' Petteno from Gentoo.
chainsaw
parents:
538
diff
changeset
|
375 guint titlestring_preset = cfg.titlestring_preset; |
0 | 376 |
377 if (titlestring_preset < n_titlestring_presets) | |
378 return bmp_titlestring_presets[titlestring_preset]; | |
379 | |
380 return cfg.gentitle_format; | |
381 } | |
382 | |
887 | 383 void |
0 | 384 make_directory(const gchar * path, mode_t mode) |
385 { | |
386 if (mkdir(path, mode) == 0) | |
387 return; | |
388 | |
389 if (errno == EEXIST) | |
390 return; | |
391 | |
392 g_printerr(_("Could not create directory (%s): %s"), path, | |
393 g_strerror(errno)); | |
394 } | |
395 | |
396 static void | |
397 bmp_make_user_dir(void) | |
398 { | |
399 const mode_t mode755 = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; | |
400 | |
401 make_directory(bmp_paths[BMP_PATH_USER_DIR], mode755); | |
402 make_directory(bmp_paths[BMP_PATH_USER_PLUGIN_DIR], mode755); | |
403 make_directory(bmp_paths[BMP_PATH_USER_SKIN_DIR], mode755); | |
404 make_directory(bmp_paths[BMP_PATH_SKIN_THUMB_DIR], mode755); | |
405 } | |
406 | |
407 static void | |
408 bmp_free_paths(void) | |
409 { | |
410 int i; | |
411 | |
412 for (i = 0; i < BMP_PATH_COUNT; i++) | |
413 { | |
414 g_free(bmp_paths[i]); | |
415 bmp_paths[i] = 0; | |
416 } | |
417 } | |
418 | |
419 | |
420 #define USER_PATH(path) \ | |
421 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], path, NULL); | |
422 | |
423 static void | |
424 bmp_init_paths(void) | |
425 { | |
734 | 426 bmp_paths[BMP_PATH_USER_DIR] = g_build_filename(g_get_home_dir(), BMP_RCPATH, NULL); |
0 | 427 |
428 bmp_paths[BMP_PATH_USER_PLUGIN_DIR] = USER_PATH(BMP_USER_PLUGIN_DIR_BASENAME); | |
429 bmp_paths[BMP_PATH_USER_SKIN_DIR] = USER_PATH(BMP_SKIN_DIR_BASENAME); | |
430 bmp_paths[BMP_PATH_SKIN_THUMB_DIR] = USER_PATH(BMP_SKIN_THUMB_DIR_BASENAME); | |
431 bmp_paths[BMP_PATH_CONFIG_FILE] = USER_PATH(BMP_CONFIG_BASENAME); | |
432 bmp_paths[BMP_PATH_PLAYLIST_FILE] = USER_PATH(BMP_PLAYLIST_BASENAME); | |
433 bmp_paths[BMP_PATH_ACCEL_FILE] = USER_PATH(BMP_ACCEL_BASENAME); | |
434 bmp_paths[BMP_PATH_LOG_FILE] = USER_PATH(BMP_LOG_BASENAME); | |
435 | |
436 g_atexit(bmp_free_paths); | |
437 } | |
438 | |
439 | |
440 void | |
441 bmp_config_load(void) | |
442 { | |
443 ConfigDb *db; | |
444 gint i, length; | |
445 | |
446 memcpy(&cfg, &bmp_default_config, sizeof(BmpConfig)); | |
447 | |
448 db = bmp_cfg_db_open(); | |
449 for (i = 0; i < ncfgbent; ++i) { | |
450 bmp_cfg_db_get_bool(db, NULL, | |
451 bmp_boolents[i].be_vname, | |
452 bmp_boolents[i].be_vloc); | |
453 } | |
454 | |
455 for (i = 0; i < ncfgient; ++i) { | |
456 bmp_cfg_db_get_int(db, NULL, | |
457 bmp_numents[i].ie_vname, | |
458 bmp_numents[i].ie_vloc); | |
459 } | |
460 | |
461 for (i = 0; i < ncfgsent; ++i) { | |
462 bmp_cfg_db_get_string(db, NULL, | |
463 bmp_strents[i].se_vname, | |
464 bmp_strents[i].se_vloc); | |
465 } | |
466 | |
467 /* Preset */ | |
468 bmp_cfg_db_get_float(db, NULL, "equalizer_preamp", &cfg.equalizer_preamp); | |
469 for (i = 0; i < 10; i++) { | |
470 gchar eqtext[18]; | |
471 | |
472 g_snprintf(eqtext, sizeof(eqtext), "equalizer_band%d", i); | |
473 bmp_cfg_db_get_float(db, NULL, eqtext, &cfg.equalizer_bands[i]); | |
474 } | |
475 | |
476 /* History */ | |
477 if (bmp_cfg_db_get_int(db, NULL, "url_history_length", &length)) { | |
478 for (i = 1; i <= length; i++) { | |
479 gchar str[19], *tmp; | |
480 | |
481 g_snprintf(str, sizeof(str), "url_history%d", i); | |
482 if (bmp_cfg_db_get_string(db, NULL, str, &tmp)) | |
483 cfg.url_history = g_list_append(cfg.url_history, tmp); | |
484 } | |
485 } | |
486 | |
487 bmp_cfg_db_close(db); | |
488 | |
489 | |
490 if (cfg.playlist_font && strlen(cfg.playlist_font) == 0) { | |
491 g_free(cfg.playlist_font); | |
492 cfg.playlist_font = NULL; | |
493 } | |
494 | |
495 if (cfg.mainwin_font && strlen(cfg.mainwin_font) == 0) { | |
496 g_free(cfg.mainwin_font); | |
497 cfg.mainwin_font = NULL; | |
498 } | |
499 | |
500 if (!cfg.playlist_font) | |
501 cfg.playlist_font = g_strdup(PLAYLISTWIN_DEFAULT_FONT); | |
502 | |
503 if (!cfg.mainwin_font) | |
504 cfg.mainwin_font = g_strdup(MAINWIN_DEFAULT_FONT); | |
505 | |
506 if (!cfg.gentitle_format) | |
943 | 507 cfg.gentitle_format = g_strdup("%{p:%p %}%{a:[ %a ] %}%{p:- %}%{n:%n. %}%{t:%t%}"); |
0 | 508 |
509 if (!cfg.outputplugin) { | |
510 #ifdef HAVE_OSS | |
511 cfg.outputplugin = g_build_filename(PLUGIN_DIR, plugin_dir_list[0], | |
512 PLUGIN_FILENAME("OSS"), NULL); | |
513 #else | |
514 /* FIXME: This implicitly means the output plugin that is | |
515 * first in the alphabet will be used (usually the disk writer | |
516 * plugin) */ | |
517 cfg.outputplugin = g_strdup(""); | |
518 #endif | |
519 } | |
520 | |
521 if (!cfg.eqpreset_default_file) | |
522 cfg.eqpreset_default_file = g_strdup(EQUALIZER_DEFAULT_DIR_PRESET); | |
523 | |
524 if (!cfg.eqpreset_extension) | |
525 cfg.eqpreset_extension = g_strdup(EQUALIZER_DEFAULT_PRESET_EXT); | |
526 } | |
527 | |
528 | |
529 void | |
530 bmp_config_save(void) | |
531 { | |
532 GList *node; | |
533 gchar *str; | |
534 gint i; | |
535 ConfigDb *db; | |
536 | |
537 cfg.disabled_iplugins = input_stringify_disabled_list(); | |
538 | |
539 | |
540 db = bmp_cfg_db_open(); | |
541 | |
542 for (i = 0; i < ncfgbent; ++i) | |
543 if (bmp_boolents[i].be_wrt) | |
544 bmp_cfg_db_set_bool(db, NULL, | |
545 bmp_boolents[i].be_vname, | |
546 *bmp_boolents[i].be_vloc); | |
547 | |
548 /* HACK: Work-around for bug #129 */ | |
80 | 549 /* |
0 | 550 bmp_cfg_db_set_bool(db, NULL, "playlist_shaded", |
551 FALSE); | |
80 | 552 */ |
0 | 553 for (i = 0; i < ncfgient; ++i) |
554 if (bmp_numents[i].ie_wrt) | |
555 bmp_cfg_db_set_int(db, NULL, | |
556 bmp_numents[i].ie_vname, | |
557 *bmp_numents[i].ie_vloc); | |
558 | |
559 /* This is a bit lame .. it'll end up being written twice, | |
560 * could do with being done a bit neater. -larne */ | |
561 bmp_cfg_db_set_int(db, NULL, "playlist_position", | |
562 playlist_get_position()); | |
563 | |
207
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
564 bmp_cfg_db_set_bool(db, NULL, "mainwin_use_xfont", |
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
565 cfg.mainwin_use_xfont); |
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
566 |
0 | 567 for (i = 0; i < ncfgsent; ++i) { |
568 if (bmp_strents[i].se_wrt) | |
569 bmp_cfg_db_set_string(db, NULL, | |
570 bmp_strents[i].se_vname, | |
571 *bmp_strents[i].se_vloc); | |
572 } | |
573 | |
574 bmp_cfg_db_set_float(db, NULL, "equalizer_preamp", cfg.equalizer_preamp); | |
575 | |
576 for (i = 0; i < 10; i++) { | |
577 str = g_strdup_printf("equalizer_band%d", i); | |
578 bmp_cfg_db_set_float(db, NULL, str, cfg.equalizer_bands[i]); | |
579 g_free(str); | |
580 } | |
581 | |
196 | 582 if (bmp_active_skin != NULL) |
583 { | |
584 if (bmp_active_skin->path) | |
585 bmp_cfg_db_set_string(db, NULL, "skin", bmp_active_skin->path); | |
586 else | |
587 bmp_cfg_db_unset_key(db, NULL, "skin"); | |
588 } | |
0 | 589 |
590 if (get_current_output_plugin()) | |
591 bmp_cfg_db_set_string(db, NULL, "output_plugin", | |
592 get_current_output_plugin()->filename); | |
593 else | |
594 bmp_cfg_db_unset_key(db, NULL, "output_plugin"); | |
595 | |
596 str = general_stringify_enabled_list(); | |
597 if (str) { | |
598 bmp_cfg_db_set_string(db, NULL, "enabled_gplugins", str); | |
599 g_free(str); | |
600 } | |
601 else | |
602 bmp_cfg_db_unset_key(db, NULL, "enabled_gplugins"); | |
603 | |
604 str = vis_stringify_enabled_list(); | |
605 if (str) { | |
606 bmp_cfg_db_set_string(db, NULL, "enabled_vplugins", str); | |
607 g_free(str); | |
608 } | |
609 else | |
610 bmp_cfg_db_unset_key(db, NULL, "enabled_vplugins"); | |
611 | |
612 str = effect_stringify_enabled_list(); | |
613 if (str) { | |
614 bmp_cfg_db_set_string(db, NULL, "enabled_eplugins", str); | |
615 g_free(str); | |
616 } | |
617 else | |
618 bmp_cfg_db_unset_key(db, NULL, "enabled_eplugins"); | |
619 | |
620 if (cfg.filesel_path) | |
621 bmp_cfg_db_set_string(db, NULL, "filesel_path", cfg.filesel_path); | |
622 | |
623 if (cfg.playlist_path) | |
624 bmp_cfg_db_set_string(db, NULL, "playlist_path", cfg.playlist_path); | |
625 | |
626 bmp_cfg_db_set_int(db, NULL, "url_history_length", | |
627 g_list_length(cfg.url_history)); | |
628 | |
629 for (node = cfg.url_history, i = 1; node; node = g_list_next(node), i++) { | |
630 str = g_strdup_printf("url_history%d", i); | |
631 bmp_cfg_db_set_string(db, NULL, str, node->data); | |
632 g_free(str); | |
633 } | |
634 | |
635 bmp_cfg_db_close(db); | |
636 | |
637 playlist_save(bmp_paths[BMP_PATH_PLAYLIST_FILE], FALSE); | |
638 } | |
639 | |
640 static void | |
641 bmp_set_default_icon(void) | |
642 { | |
643 GdkPixbuf *icon; | |
644 | |
120 | 645 icon = gdk_pixbuf_new_from_xpm_data((const gchar **) audacious_player_xpm); |
0 | 646 gtk_window_set_default_icon(icon); |
647 g_object_unref(icon); | |
648 } | |
649 | |
650 static void | |
651 display_usage(void) | |
652 { | |
44 | 653 g_print(_("Usage: audacious [options] [files] ...\n\n" |
0 | 654 "Options:\n" |
655 "--------\n")); | |
656 g_print("\n-h, --help "); | |
657 /* -h, --help switch */ | |
658 g_print(_("Display this text and exit")); | |
659 g_print("\n-n, --session "); | |
660 /* -n, --session switch */ | |
257
256b3acc87d4
[svn] Properly report Audacious instead of XMMS or BMP in all places. Patch by laci; closes bug #379.
chainsaw
parents:
216
diff
changeset
|
661 g_print(_("Select Audacious/BMP/XMMS session (Default: 0)")); |
0 | 662 g_print("\n-r, --rew "); |
663 /* -r, --rew switch */ | |
664 g_print(_("Skip backwards in playlist")); | |
665 g_print("\n-p, --play "); | |
666 /* -p, --play switch */ | |
667 g_print(_("Start playing current playlist")); | |
668 g_print("\n-u, --pause "); | |
669 /* -u, --pause switch */ | |
670 g_print(_("Pause current song")); | |
671 g_print("\n-s, --stop "); | |
672 /* -s, --stop switch */ | |
673 g_print(_("Stop current song")); | |
674 g_print("\n-t, --play-pause "); | |
675 /* -t, --play-pause switch */ | |
676 g_print(_("Pause if playing, play otherwise")); | |
677 g_print("\n-f, --fwd "); | |
678 /* -f, --fwd switch */ | |
679 g_print(_("Skip forward in playlist")); | |
680 g_print("\n-e, --enqueue "); | |
681 /* -e, --enqueue switch */ | |
682 g_print(_("Don't clear the playlist")); | |
683 g_print("\n-m, --show-main-window "); | |
684 /* -m, --show-main-window switch */ | |
685 g_print(_("Show the main window")); | |
686 g_print("\n-a, --activate "); | |
687 /* -a, --activate switch */ | |
257
256b3acc87d4
[svn] Properly report Audacious instead of XMMS or BMP in all places. Patch by laci; closes bug #379.
chainsaw
parents:
216
diff
changeset
|
688 g_print(_("Activate Audacious")); |
0 | 689 g_print("\n-i, --sm-client-id "); |
690 /* -i, --sm-client-id switch */ | |
691 g_print(_("Previous session ID")); | |
316
950f104f2e11
[svn] Fix spacing in --help output, patch by Mikachu.
chainsaw
parents:
284
diff
changeset
|
692 g_print("\n-H, --headless "); |
193 | 693 /* -h, --headless switch */ |
694 g_print(_("Headless operation [experimental]")); | |
0 | 695 g_print("\n-v, --version "); |
696 /* -v, --version switch */ | |
697 g_print(_("Print version number and exit\n")); | |
698 | |
699 exit(EXIT_SUCCESS); | |
700 } | |
701 | |
702 static void | |
703 parse_cmd_line(gint argc, | |
704 gchar ** argv, | |
705 BmpCmdLineOpt * options) | |
706 { | |
707 static struct option long_options[] = { | |
708 {"help", 0, NULL, 'h'}, | |
709 {"session", 1, NULL, 'n'}, | |
710 {"rew", 0, NULL, 'r'}, | |
711 {"play", 0, NULL, 'p'}, | |
712 {"pause", 0, NULL, 'u'}, | |
713 {"play-pause", 0, NULL, 't'}, | |
714 {"stop", 0, NULL, 's'}, | |
715 {"fwd", 0, NULL, 'f'}, | |
716 {"enqueue", 0, NULL, 'e'}, | |
717 {"show-main-window", 0, NULL, 'm'}, | |
718 {"activate", 0, NULL, 'a'}, | |
719 {"version", 0, NULL, 'v'}, | |
720 {"sm-client-id", 1, NULL, 'i'}, | |
721 {"xmms", 0, NULL, 'x'}, | |
191 | 722 {"headless", 0, NULL, 'H'}, |
0 | 723 {0, 0, 0, 0} |
724 }; | |
725 | |
726 gchar *filename, *current_dir; | |
727 gint c, i; | |
728 | |
729 memset(options, 0, sizeof(BmpCmdLineOpt)); | |
730 options->session = -1; | |
731 | |
191 | 732 while ((c = getopt_long(argc, argv, "chn:HrpusfemavtLS", long_options, |
0 | 733 NULL)) != -1) { |
734 switch (c) { | |
735 case 'h': | |
736 display_usage(); | |
737 break; | |
738 case 'n': | |
739 options->session = atoi(optarg); | |
740 break; | |
191 | 741 case 'H': |
742 options->headless = TRUE; | |
743 break; | |
0 | 744 case 'r': |
745 options->rew = TRUE; | |
746 break; | |
747 case 'p': | |
748 options->play = TRUE; | |
749 break; | |
750 case 'u': | |
751 options->pause = TRUE; | |
752 break; | |
753 case 's': | |
754 options->stop = TRUE; | |
755 break; | |
756 case 'f': | |
757 options->fwd = TRUE; | |
758 break; | |
759 case 't': | |
760 options->play_pause = TRUE; | |
761 break; | |
762 case 'm': | |
763 options->mainwin = TRUE; | |
764 break; | |
765 case 'a': | |
766 options->activate = TRUE; | |
767 break; | |
768 case 'e': | |
769 options->enqueue = TRUE; | |
770 break; | |
771 case 'v': | |
772 dump_version(); | |
773 exit(EXIT_SUCCESS); | |
774 break; | |
775 case 'i': | |
776 options->previous_session_id = g_strdup(optarg); | |
777 break; | |
778 case 'c': | |
779 options->playcd = TRUE; | |
780 break; | |
781 case 'S': | |
782 options->load_skins = TRUE; | |
783 break; | |
784 } | |
785 } | |
786 | |
787 current_dir = g_get_current_dir(); | |
788 | |
789 for (i = optind; i < argc; i++) { | |
790 if (argv[i][0] == '/' || strstr(argv[i], "://")) | |
791 filename = g_strdup(argv[i]); | |
792 else | |
793 filename = g_build_filename(current_dir, argv[i], NULL); | |
794 | |
795 options->filenames = g_list_prepend(options->filenames, filename); | |
796 } | |
797 | |
798 options->filenames = g_list_reverse(options->filenames); | |
799 | |
800 g_free(current_dir); | |
801 } | |
802 | |
803 static void | |
804 handle_cmd_line_options(BmpCmdLineOpt * options, | |
805 gboolean remote) | |
806 { | |
807 GList *filenames = options->filenames; | |
808 gint session = options->session; | |
809 | |
810 if (session == -1) { | |
811 if (!remote) | |
812 session = ctrlsocket_get_session_id(); | |
813 else | |
814 session = 0; | |
815 } | |
816 | |
817 if (filenames) { | |
818 gint pos = 0; | |
819 | |
820 if (options->load_skins) { | |
821 xmms_remote_set_skin(session, filenames->data); | |
822 skin_install_skin(filenames->data); | |
823 } | |
824 else { | |
825 if (options->enqueue && options->play) | |
826 pos = xmms_remote_get_playlist_length(session); | |
827 | |
828 if (!options->enqueue) | |
829 xmms_remote_playlist_clear(session); | |
830 | |
831 xmms_remote_playlist_add(session, filenames); | |
832 | |
833 if (options->enqueue && options->play && | |
834 xmms_remote_get_playlist_length(session) > pos) | |
835 xmms_remote_set_playlist_pos(session, pos); | |
836 | |
837 if (!options->enqueue) | |
838 xmms_remote_play(session); | |
839 } | |
840 | |
841 g_list_foreach(filenames, (GFunc) g_free, NULL); | |
842 g_list_free(filenames); | |
843 } | |
844 | |
845 if (options->rew) | |
846 xmms_remote_playlist_prev(session); | |
847 | |
848 if (options->play) | |
849 xmms_remote_play(session); | |
850 | |
851 if (options->pause) | |
852 xmms_remote_pause(session); | |
853 | |
854 if (options->stop) | |
855 xmms_remote_stop(session); | |
856 | |
857 if (options->fwd) | |
858 xmms_remote_playlist_next(session); | |
859 | |
860 if (options->play_pause) | |
861 xmms_remote_play_pause(session); | |
862 | |
863 if (options->mainwin) | |
864 xmms_remote_main_win_toggle(session, TRUE); | |
865 | |
866 if (options->activate) | |
867 xmms_remote_activate(session); | |
868 | |
869 if (options->playcd) | |
870 play_medium(); | |
871 } | |
872 | |
873 static void | |
874 segfault_handler(gint sig) | |
875 { | |
876 g_printerr(_("\nReceived SIGSEGV\n\n" | |
27
d160ae2251e9
[svn] Update SIGSEGV message, contained the BMP mailing information.
nenolod
parents:
0
diff
changeset
|
877 "This could be a bug in Audacious. If you don't know why this happened, " |
d160ae2251e9
[svn] Update SIGSEGV message, contained the BMP mailing information.
nenolod
parents:
0
diff
changeset
|
878 "file a bug at http://bugs.nenolod.net/\n\n")); |
0 | 879 #ifdef HANDLE_SIGSEGV |
880 exit(EXIT_FAILURE); | |
881 #else | |
882 abort(); | |
883 #endif | |
884 } | |
885 | |
886 static void | |
887 bmp_setup_logger(void) | |
888 { | |
889 if (!bmp_logger_start(bmp_paths[BMP_PATH_LOG_FILE])) | |
890 return; | |
891 | |
892 g_atexit(bmp_logger_stop); | |
893 } | |
894 | |
895 static void | |
896 run_load_skin_error_dialog(const gchar * skin_path) | |
897 { | |
898 const gchar *markup = | |
899 N_("<b><big>Unable to load skin.</big></b>\n" | |
900 "\n" | |
901 "Check that skin at '%s' is usable and default skin is properly " | |
902 "installed at '%s'\n"); | |
903 | |
904 GtkWidget *dialog = | |
905 gtk_message_dialog_new_with_markup(NULL, | |
906 GTK_DIALOG_MODAL, | |
907 GTK_MESSAGE_ERROR, | |
908 GTK_BUTTONS_CLOSE, | |
909 _(markup), | |
910 skin_path, | |
911 BMP_DEFAULT_SKIN_PATH); | |
912 gtk_dialog_run(GTK_DIALOG(dialog)); | |
913 gtk_widget_destroy(dialog); | |
914 } | |
915 | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
916 // use a format string? |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
917 void report_error(const gchar *error_text) |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
918 { |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
919 fprintf(stderr,error_text); |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
920 if (options.headless!=1) { |
813
c8cf439179b8
[svn] - Fix a ton and a half of memory leaks, via the wonderful Leonardo Boshell <leonardop -at- gentoo.org>.
nenolod
parents:
781
diff
changeset
|
921 gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(err), |
c8cf439179b8
[svn] - Fix a ton and a half of memory leaks, via the wonderful Leonardo Boshell <leonardop -at- gentoo.org>.
nenolod
parents:
781
diff
changeset
|
922 error_text); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
923 gtk_dialog_run(GTK_DIALOG(err)); |
813
c8cf439179b8
[svn] - Fix a ton and a half of memory leaks, via the wonderful Leonardo Boshell <leonardop -at- gentoo.org>.
nenolod
parents:
781
diff
changeset
|
924 gtk_widget_hide(err); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
925 } |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
926 } |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
927 |
0 | 928 gint |
929 main(gint argc, gchar ** argv) | |
930 { | |
44 | 931 gboolean gtk_init_check_ok; |
0 | 932 |
933 /* Setup l10n early so we can print localized error messages */ | |
934 gtk_set_locale(); | |
749 | 935 bindtextdomain(PACKAGE_NAME, LOCALEDIR); |
936 bind_textdomain_codeset(PACKAGE_NAME, "UTF-8"); | |
937 textdomain(PACKAGE_NAME); | |
0 | 938 |
939 bmp_init_paths(); | |
940 bmp_make_user_dir(); | |
941 bmp_setup_logger(); | |
942 | |
943 /* Check GTK version. Really, this is only needed for binary | |
944 * distribution since configure already checks. */ | |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
945 if (!GTK_CHECK_VERSION(2, 6, 0)) { |
257
256b3acc87d4
[svn] Properly report Audacious instead of XMMS or BMP in all places. Patch by laci; closes bug #379.
chainsaw
parents:
216
diff
changeset
|
946 g_printerr(_("Sorry, your GTK+ version (%d.%d.%d) does not work with Audacious.\n" |
0 | 947 "Please use GTK+ %s or newer.\n"), |
948 gtk_major_version, gtk_minor_version, gtk_micro_version, | |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
949 "2.6.0"); |
0 | 950 exit(EXIT_FAILURE); |
951 } | |
952 | |
953 g_set_application_name(_(application_name)); | |
954 | |
955 g_thread_init(NULL); | |
956 if (!g_thread_supported()) { | |
957 g_printerr(_("Sorry, threads isn't supported on your platform.\n\n" | |
958 "If you're on a libc5 based linux system and installed Glib & GTK+ before you\n" | |
959 "installed LinuxThreads you need to recompile Glib & GTK+.\n")); | |
960 exit(EXIT_FAILURE); | |
961 } | |
962 | |
963 gdk_threads_init(); | |
964 | |
44 | 965 gtk_init_check_ok = gtk_init_check(&argc, &argv); |
966 /* Now let's parse the command line options first. */ | |
967 parse_cmd_line(argc, argv, &options); | |
968 if (!gtk_init_check_ok) { | |
0 | 969 if (argc < 2) { |
970 /* GTK check failed, and no arguments passed to indicate | |
971 that user is intending to only remote control a running | |
972 session */ | |
44 | 973 g_printerr(_("audacious: Unable to open display, exiting.\n")); |
0 | 974 exit(EXIT_FAILURE); |
975 } | |
976 | |
977 handle_cmd_line_options(&options, TRUE); | |
191 | 978 |
979 /* we could be running headless, so GTK probably wont matter */ | |
980 if (options.headless != 1) | |
981 exit(EXIT_SUCCESS); | |
0 | 982 } |
983 | |
984 if (!vfs_init()) { | |
985 g_printerr(Q_("Could not initialize VFS.\n")); | |
986 exit(EXIT_FAILURE); | |
987 } | |
988 | |
989 signal(SIGPIPE, SIG_IGN); /* for controlsocket.c */ | |
990 signal(SIGSEGV, segfault_handler); | |
991 | |
992 g_random_set_seed(time(NULL)); | |
993 | |
994 bmp_config_load(); | |
995 | |
996 if (options.session != -1 || !ctrlsocket_setup()) { | |
997 handle_cmd_line_options(&options, TRUE); | |
998 exit(EXIT_SUCCESS); | |
999 } | |
1000 | |
191 | 1001 if (options.headless != 1) |
1002 { | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1003 |
191 | 1004 bmp_set_default_icon(); |
0 | 1005 |
191 | 1006 gtk_accel_map_load(bmp_paths[BMP_PATH_ACCEL_FILE]); |
0 | 1007 |
191 | 1008 mainwin_create(); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1009 |
191 | 1010 playlistwin_create(); |
1011 equalizerwin_create(); | |
0 | 1012 |
191 | 1013 if (!init_skins(cfg.skin)) { |
1014 run_load_skin_error_dialog(cfg.skin); | |
1015 exit(EXIT_FAILURE); | |
1016 } | |
1017 | |
1018 GDK_THREADS_ENTER(); | |
0 | 1019 } |
1020 | |
1021 plugin_system_init(); | |
1022 | |
1023 playlist_load(bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
1024 playlist_set_position(cfg.playlist_position); | |
1025 | |
1026 /* this needs to be called after all 3 windows are created and | |
191 | 1027 * input plugins are setup'ed |
1028 * but not if we're running headless --nenolod | |
1029 */ | |
0 | 1030 mainwin_setup_menus(); |
1031 | |
191 | 1032 if (options.headless != 1) |
1033 GDK_THREADS_LEAVE(); | |
0 | 1034 |
1035 ctrlsocket_start(); | |
1036 | |
1037 handle_cmd_line_options(&options, FALSE); | |
1038 | |
191 | 1039 if (options.headless != 1) |
1040 { | |
1041 GDK_THREADS_ENTER(); | |
0 | 1042 |
191 | 1043 read_volume(VOLSET_STARTUP); |
1044 mainwin_set_info_text(); | |
1045 | |
1046 /* FIXME: delayed, because it deals directly with the plugin | |
1047 * interface to set menu items */ | |
1048 create_prefs_window(); | |
0 | 1049 |
191 | 1050 if (cfg.player_visible) |
1051 mainwin_show(TRUE); | |
1052 else if (!cfg.playlist_visible && !cfg.equalizer_visible) | |
1053 mainwin_show(TRUE); | |
125 | 1054 |
191 | 1055 if (cfg.equalizer_visible) |
1056 equalizerwin_show(TRUE); | |
1057 | |
1058 if (cfg.playlist_visible) | |
1059 playlistwin_show(); | |
0 | 1060 |
191 | 1061 hint_set_always(cfg.always_on_top); |
0 | 1062 |
191 | 1063 playlist_start_get_info_thread(); |
1064 mainwin_attach_idle_func(); | |
1065 | |
486 | 1066 starting_up = FALSE; |
1067 | |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1068 has_x11_connection = TRUE; |
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1069 |
191 | 1070 gtk_main(); |
1071 | |
1072 GDK_THREADS_LEAVE(); | |
0 | 1073 |
191 | 1074 return EXIT_SUCCESS; |
1075 } | |
1076 else | |
1077 { | |
1078 mainwin_set_info_text(); | |
1079 playlist_start_get_info_thread(); | |
0 | 1080 |
486 | 1081 starting_up = FALSE; |
1082 | |
191 | 1083 for (;;) |
192
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1084 { |
197
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
1085 /* headless eventloop */ |
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
1086 audcore_generic_events(); |
198 | 1087 free_vis_data(); /* to prevent buffer overflow -- paranoia */ |
191 | 1088 xmms_usleep(10000); |
192
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1089 } |
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1090 |
191 | 1091 return EXIT_SUCCESS; |
1092 } | |
0 | 1093 } |