Mercurial > audlegacy
annotate src/audacious/main.c @ 2690:62579e205746 trunk
[svn] - temporal workaround for a bug which introduced in r4360. without this patch, cuesheet plugin endlessly adds entries in a cue sheet to the current playlist.
author | yaz |
---|---|
date | Fri, 27 Apr 2007 10:22:03 -0700 |
parents | c3cd6e47faf6 |
children | c2b82432c1b6 |
rev | line source |
---|---|
2313 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2007 Audacious development team. | |
3 * | |
4 * Based on BMP: | |
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; under version 2 of the License. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 # include "config.h" | |
26 #endif | |
27 | |
28 #include "main.h" | |
29 | |
30 #include <glib.h> | |
31 #include <glib/gi18n.h> | |
32 #include <glib/gprintf.h> | |
33 #include <gdk/gdk.h> | |
34 #include <stdlib.h> | |
35 #include <string.h> | |
36 #include <getopt.h> | |
37 #include <ctype.h> | |
38 #include <time.h> | |
39 | |
40 #include <unistd.h> | |
41 #include <errno.h> | |
42 #include <sys/types.h> | |
43 #include <sys/stat.h> | |
44 #include <signal.h> | |
45 | |
46 #include "platform/smartinclude.h" | |
47 | |
48 #include "libaudacious/configdb.h" | |
49 #include "libaudacious/beepctrl.h" | |
50 #include "vfs.h" | |
51 | |
52 #include "controlsocket.h" | |
53 #include "dnd.h" | |
54 #include "effect.h" | |
55 #include "ui_equalizer.h" | |
56 #include "general.h" | |
57 #include "genevent.h" | |
58 #include "hints.h" | |
59 #include "input.h" | |
60 #include "logger.h" | |
61 #include "ui_main.h" | |
62 #include "ui_manager.h" | |
63 #include "output.h" | |
64 #include "playback.h" | |
65 #include "playlist.h" | |
66 #include "ui_playlist.h" | |
67 #include "ui_preferences.h" | |
68 #include "pluginenum.h" | |
69 #include "ui_skinselector.h" | |
70 #include "util.h" | |
71 #include "visualization.h" | |
72 #include "build_stamp.h" | |
73 #include "ui_fileinfo.h" | |
74 #include "signals.h" | |
2530 | 75 #include "ui_skinned_window.h" |
2313 | 76 |
77 #include "icons-csource.h" | |
78 #include "icons-stock.h" | |
79 #include "images/audacious_player.xpm" | |
80 | |
2364 | 81 gboolean has_x11_connection = FALSE; /* do we have an X11 connection? */ |
2313 | 82 |
83 /* Translatable string for beep.desktop's comment field */ | |
84 const gchar *desktop_comment = N_("Audacious"); | |
85 | |
86 const gchar *application_name = N_("Audacious"); | |
87 | |
88 | |
89 struct _BmpCmdLineOpt { | |
2411 | 90 gchar **filenames; |
2313 | 91 gint session; |
92 gboolean play, stop, pause, fwd, rew, play_pause, playcd, show_jump_box; | |
93 gboolean enqueue, mainwin, remote, activate; | |
94 gboolean load_skins; | |
95 gboolean headless; | |
96 gboolean no_log; | |
97 gboolean enqueue_to_temp; | |
2411 | 98 gboolean version; |
2313 | 99 gchar *previous_session_id; |
100 }; | |
101 | |
102 typedef struct _BmpCmdLineOpt BmpCmdLineOpt; | |
103 | |
104 BmpCmdLineOpt options; | |
105 | |
106 BmpConfig cfg; | |
107 | |
108 BmpConfig bmp_default_config = { | |
109 MAINWIN_DEFAULT_POS_X, /* mainwin x position */ | |
110 MAINWIN_DEFAULT_POS_Y, /* mainwin y position */ | |
111 EQUALIZER_DEFAULT_POS_X, /* equalizer x position */ | |
112 EQUALIZER_DEFAULT_POS_Y, /* equalizer y position */ | |
113 PLAYLISTWIN_DEFAULT_POS_X, /* playlistwin x position */ | |
114 PLAYLISTWIN_DEFAULT_POS_Y, /* playlistwin y position */ | |
115 PLAYLISTWIN_DEFAULT_WIDTH, /* playlistwin width */ | |
116 PLAYLISTWIN_DEFAULT_HEIGHT, /* playlistwin height */ | |
117 10, /* snap distance */ | |
118 FALSE, /* real-time priority */ | |
119 FALSE, FALSE, /* shuffle, repeat */ | |
120 FALSE, /* UNUSED (double size) */ | |
121 TRUE, /* autoscroll */ | |
122 TRUE, /* analyzer peaks */ | |
123 FALSE, /* equalizer autoload */ | |
124 FALSE, /* easy move */ | |
125 FALSE, /* equalizer active */ | |
126 FALSE, /* playlistwin visible */ | |
127 FALSE, /* equalizer visible */ | |
128 TRUE, /* player visible */ | |
129 FALSE, /* player shaded */ | |
130 FALSE, /* playlistwin shaded */ | |
131 FALSE, /* equalizer shaded */ | |
132 FALSE, /* allow multiple instances */ | |
133 TRUE, /* always show cb */ | |
134 TRUE, TRUE, TRUE, /* convert '_', %20 and '\' */ | |
135 TRUE, /* show numbers in playlist */ | |
136 TRUE, /* snap windows */ | |
137 TRUE, /* save window positions */ | |
138 TRUE, /* dim titlebar */ | |
139 FALSE, /* get playlist info on load */ | |
140 TRUE, /* get playlist info on demand */ | |
141 TRUE, /* UNUSED (equalizer doublesize linked) */ | |
142 FALSE, /* sort jump to file */ | |
143 FALSE, /* use effect plugins */ | |
144 FALSE, /* always on top */ | |
145 FALSE, /* sticky */ | |
146 FALSE, /* no playlist advance */ | |
147 FALSE, /* stop after current song */ | |
148 TRUE, /* refresh file list */ | |
149 TRUE, /* UNUSED (smooth title scrolling) */ | |
150 TRUE, /* use playlist metadata */ | |
2662
09b404d61ebd
[svn] - remove the unplayable files dialog. it is more annoying than useful.
nenolod
parents:
2651
diff
changeset
|
151 TRUE, /* deprecated */ |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
152 TRUE, /* warn about windows visibility */ |
2313 | 153 FALSE, /* use \ as directory delimiter */ |
154 FALSE, /* random skin on play */ | |
155 FALSE, /* use fontsets */ | |
156 FALSE, /* use X font for mainwin */ | |
2364 | 157 TRUE, /* use custom cursors */ |
158 TRUE, /* close dialog on open */ | |
159 TRUE, /* close dialog on add */ | |
2313 | 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 VOICEPRINT_NORMAL, /* voiceprint mode */ | |
182 VU_SMOOTH, /* VU mode */ | |
183 REFRESH_FULL, /* visualizer refresh rate */ | |
184 FALLOFF_FAST, /* analyzer fall off rate */ | |
185 FALLOFF_SLOW, /* peaks fall off rate */ | |
186 0, /* playlist position */ | |
187 2, /* pause between songs time */ | |
188 FALSE, /* pause between songs */ | |
189 FALSE, /* show window decorations */ | |
190 8, /* mouse wheel scroll step */ | |
191 FALSE, /* playlist transparent */ | |
192 2, /* 3rd preset (ARTIST - ALBUM - TITLE) */ | |
193 NULL, /* title format */ | |
194 FALSE, /* software volume control enabled */ | |
195 TRUE, /* UNUSED (XMMS compatibility mode) */ | |
196 TRUE, /* extra eq filtering */ | |
197 3, /* scroll pl by */ | |
198 FALSE, /* resume playback on startup */ | |
199 -1, /* resume playback on startup time */ | |
2364 | 200 TRUE, /* show seperators in pl */ |
2313 | 201 NULL, |
202 NULL, | |
2364 | 203 3000, /* audio buffer size */ |
204 FALSE, /* whether or not to postpone format detection on initial add */ | |
205 TRUE, /* show filepopup for tuple */ | |
206 NULL, /* words identifying covers */ | |
207 NULL, /* words that might not show up in cover names */ | |
2313 | 208 FALSE, |
209 0, | |
2364 | 210 NULL, /* default session uri base (non-NULL = custom session uri base) */ |
211 150, /* short side length of the picture in the filepopup */ | |
212 20, /* delay until the filepopup comes up */ | |
213 FALSE, /* use filename.jpg for coverart */ | |
214 FALSE, /* use XMMS-style file selection */ | |
215 TRUE, /* use extension probing */ | |
216 255, 255, 255, /* colorize r, g, b */ | |
217 FALSE, /* internal: whether or not to terminate */ | |
2405 | 218 TRUE, /* whether show progress bar in filepopup or not */ |
2313 | 219 }; |
220 | |
221 typedef struct bmp_cfg_boolent_t { | |
222 char const *be_vname; | |
223 gboolean *be_vloc; | |
224 gboolean be_wrt; | |
225 } bmp_cfg_boolent; | |
226 | |
227 typedef struct bmp_cfg_nument_t { | |
228 char const *ie_vname; | |
229 gint *ie_vloc; | |
230 gboolean ie_wrt; | |
231 } bmp_cfg_nument; | |
232 | |
233 typedef struct bmp_cfg_strent_t { | |
234 char const *se_vname; | |
235 char **se_vloc; | |
236 gboolean se_wrt; | |
237 } bmp_cfg_strent; | |
238 | |
239 const gchar *bmp_titlestring_presets[] = { | |
240 "%t", | |
241 "%{p:%p - %}%t", | |
242 "%{p:%p - %}%{a:%a - %}%t", | |
243 "%{p:%p - %}%{a:%a - %}%{n:%n. %}%t", | |
244 "%{p:%p %}%{a:[ %a ] %}%{p:- %}%{n:%n. %}%{t:%t%}", | |
245 "%{a:%a - %}%t" | |
246 }; | |
247 | |
248 const guint n_titlestring_presets = G_N_ELEMENTS(bmp_titlestring_presets); | |
249 | |
250 const gchar *chardet_detector_presets[] = { | |
2364 | 251 "None", |
252 "Japanese", | |
253 "Taiwanese", | |
254 "Chinese", | |
255 "Korean", | |
256 "Russian", | |
2313 | 257 #ifdef HAVE_UDET |
2364 | 258 "Universal" |
2313 | 259 #endif |
260 }; | |
261 | |
2364 | 262 const guint n_chardet_detector_presets = G_N_ELEMENTS(chardet_detector_presets); |
2313 | 263 |
264 static bmp_cfg_boolent bmp_boolents[] = { | |
265 {"allow_multiple_instances", &cfg.allow_multiple_instances, TRUE}, | |
266 {"use_realtime", &cfg.use_realtime, TRUE}, | |
267 {"always_show_cb", &cfg.always_show_cb, TRUE}, | |
268 {"convert_underscore", &cfg.convert_underscore, TRUE}, | |
269 {"convert_twenty", &cfg.convert_twenty, TRUE}, | |
270 {"convert_slash", &cfg.convert_slash, TRUE }, | |
271 {"show_numbers_in_pl", &cfg.show_numbers_in_pl, TRUE}, | |
272 {"show_separator_in_pl", &cfg.show_separator_in_pl, TRUE}, | |
273 {"snap_windows", &cfg.snap_windows, TRUE}, | |
274 {"save_window_positions", &cfg.save_window_position, TRUE}, | |
275 {"dim_titlebar", &cfg.dim_titlebar, TRUE}, | |
276 {"get_info_on_load", &cfg.get_info_on_load, TRUE}, | |
277 {"get_info_on_demand", &cfg.get_info_on_demand, TRUE}, | |
278 {"eq_doublesize_linked", &cfg.eq_doublesize_linked, TRUE}, | |
279 {"no_playlist_advance", &cfg.no_playlist_advance, TRUE}, | |
280 {"refresh_file_list", &cfg.refresh_file_list, TRUE}, | |
281 {"sort_jump_to_file", &cfg.sort_jump_to_file, TRUE}, | |
282 {"use_pl_metadata", &cfg.use_pl_metadata, TRUE}, | |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
283 {"warn_about_win_visibility", &cfg.warn_about_win_visibility, TRUE}, |
2313 | 284 {"use_backslash_as_dir_delimiter", &cfg.use_backslash_as_dir_delimiter, TRUE}, |
285 {"player_shaded", &cfg.player_shaded, TRUE}, | |
286 {"player_visible", &cfg.player_visible, TRUE}, | |
287 {"shuffle", &cfg.shuffle, TRUE}, | |
288 {"repeat", &cfg.repeat, TRUE}, | |
289 {"doublesize", &cfg.doublesize, TRUE}, | |
290 {"autoscroll_songname", &cfg.autoscroll, TRUE}, | |
291 {"stop_after_current_song", &cfg.stopaftersong, TRUE}, | |
292 {"playlist_shaded", &cfg.playlist_shaded, TRUE}, | |
293 {"playlist_visible", &cfg.playlist_visible, TRUE}, | |
294 {"use_fontsets", &cfg.use_fontsets, TRUE}, | |
295 {"mainwin_use_xfont", &cfg.mainwin_use_xfont, FALSE}, | |
296 {"equalizer_visible", &cfg.equalizer_visible, TRUE}, | |
297 {"equalizer_active", &cfg.equalizer_active, TRUE}, | |
298 {"equalizer_shaded", &cfg.equalizer_shaded, TRUE}, | |
299 {"equalizer_autoload", &cfg.equalizer_autoload, TRUE}, | |
300 {"easy_move", &cfg.easy_move, TRUE}, | |
301 {"use_eplugins", &cfg.use_eplugins, TRUE}, | |
302 {"always_on_top", &cfg.always_on_top, TRUE}, | |
303 {"sticky", &cfg.sticky, TRUE}, | |
304 {"random_skin_on_play", &cfg.random_skin_on_play, TRUE}, | |
305 {"pause_between_songs", &cfg.pause_between_songs, TRUE}, | |
306 {"show_wm_decorations", &cfg.show_wm_decorations, TRUE}, | |
307 {"eq_extra_filtering", &cfg.eq_extra_filtering, TRUE}, | |
308 {"analyzer_peaks", &cfg.analyzer_peaks, TRUE}, | |
309 {"custom_cursors", &cfg.custom_cursors, TRUE}, | |
310 {"close_dialog_open", &cfg.close_dialog_open, TRUE}, | |
311 {"close_dialog_add", &cfg.close_dialog_add, TRUE}, | |
312 {"resume_playback_on_startup", &cfg.resume_playback_on_startup, TRUE}, | |
313 {"playlist_detect", &cfg.playlist_detect, TRUE}, | |
314 {"show_filepopup_for_tuple", &cfg.show_filepopup_for_tuple, TRUE}, | |
315 {"recurse_for_cover", &cfg.recurse_for_cover, TRUE}, | |
316 {"use_file_cover", &cfg.use_file_cover, TRUE}, | |
317 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE}, | |
318 {"use_extension_probing", &cfg.use_extension_probing, TRUE}, | |
2405 | 319 {"filepopup_showprogressbar", &cfg.filepopup_showprogressbar, TRUE}, |
2313 | 320 }; |
321 | |
322 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); | |
323 | |
324 static bmp_cfg_nument bmp_numents[] = { | |
325 {"player_x", &cfg.player_x, TRUE}, | |
326 {"player_y", &cfg.player_y, TRUE}, | |
327 {"timer_mode", &cfg.timer_mode, TRUE}, | |
328 {"vis_type", &cfg.vis_type, TRUE}, | |
329 {"analyzer_mode", &cfg.analyzer_mode, TRUE}, | |
330 {"analyzer_type", &cfg.analyzer_type, TRUE}, | |
331 {"scope_mode", &cfg.scope_mode, TRUE}, | |
332 {"vu_mode", &cfg.vu_mode, TRUE}, | |
333 {"voiceprint_mode", &cfg.voiceprint_mode, TRUE}, | |
334 {"vis_refresh_rate", &cfg.vis_refresh, TRUE}, | |
335 {"analyzer_falloff", &cfg.analyzer_falloff, TRUE}, | |
336 {"peaks_falloff", &cfg.peaks_falloff, TRUE}, | |
337 {"playlist_x", &cfg.playlist_x, TRUE}, | |
338 {"playlist_y", &cfg.playlist_y, TRUE}, | |
339 {"playlist_width", &cfg.playlist_width, TRUE}, | |
340 {"playlist_height", &cfg.playlist_height, TRUE}, | |
341 {"playlist_position", &cfg.playlist_position, TRUE}, | |
342 {"equalizer_x", &cfg.equalizer_x, TRUE}, | |
343 {"equalizer_y", &cfg.equalizer_y, TRUE}, | |
344 {"snap_distance", &cfg.snap_distance, TRUE}, | |
345 {"pause_between_songs_time", &cfg.pause_between_songs_time, TRUE}, | |
346 {"mouse_wheel_change", &cfg.mouse_change, TRUE}, | |
347 {"scroll_pl_by", &cfg.scroll_pl_by, TRUE}, | |
348 {"titlestring_preset", &cfg.titlestring_preset, TRUE}, | |
349 {"resume_playback_on_startup_time", &cfg.resume_playback_on_startup_time, TRUE}, | |
350 {"output_buffer_size", &cfg.output_buffer_size, TRUE}, | |
351 {"recurse_for_cover_depth", &cfg.recurse_for_cover_depth, TRUE}, | |
352 {"filepopup_pixelsize", &cfg.filepopup_pixelsize, TRUE}, | |
353 {"filepopup_delay", &cfg.filepopup_delay, TRUE}, | |
354 {"colorize_r", &cfg.colorize_r, TRUE}, | |
355 {"colorize_g", &cfg.colorize_g, TRUE}, | |
356 {"colorize_b", &cfg.colorize_b, TRUE}, | |
357 }; | |
358 | |
359 static gint ncfgient = G_N_ELEMENTS(bmp_numents); | |
360 | |
361 static bmp_cfg_strent bmp_strents[] = { | |
362 {"playlist_font", &cfg.playlist_font, TRUE}, | |
363 {"mainwin_font", &cfg.mainwin_font, TRUE}, | |
364 {"eqpreset_default_file", &cfg.eqpreset_default_file, TRUE}, | |
365 {"eqpreset_extension", &cfg.eqpreset_extension, TRUE}, | |
366 {"skin", &cfg.skin, FALSE}, | |
367 {"output_plugin", &cfg.outputplugin, FALSE}, | |
368 {"disabled_iplugins", &cfg.disabled_iplugins, TRUE}, | |
369 {"enabled_gplugins", &cfg.enabled_gplugins, FALSE}, | |
370 {"enabled_vplugins", &cfg.enabled_vplugins, FALSE}, | |
371 {"enabled_eplugins", &cfg.enabled_eplugins, FALSE}, | |
372 {"filesel_path", &cfg.filesel_path, FALSE}, | |
373 {"playlist_path", &cfg.playlist_path, FALSE}, | |
374 {"generic_title_format", &cfg.gentitle_format, TRUE}, | |
375 {"chardet_detector", &cfg.chardet_detector, TRUE}, | |
376 {"chardet_fallback", &cfg.chardet_fallback, TRUE}, | |
377 {"cover_name_include", &cfg.cover_name_include, TRUE}, | |
378 {"cover_name_exclude", &cfg.cover_name_exclude, TRUE}, | |
379 {"session_uri_base", &cfg.session_uri_base, TRUE} | |
380 }; | |
381 | |
382 static gint ncfgsent = G_N_ELEMENTS(bmp_strents); | |
383 | |
384 gchar *bmp_paths[BMP_PATH_COUNT] = {}; | |
385 | |
386 GList *dock_window_list = NULL; | |
387 | |
388 gboolean pposition_broken = FALSE; | |
389 | |
390 gboolean starting_up = TRUE; | |
391 | |
392 /* XXX: case-sensitivity is bad for lazy nenolods. :( -nenolod */ | |
393 static gchar *pl_candidates[] = { | |
2364 | 394 PLUGIN_FILENAME("ALSA"), |
395 PLUGIN_FILENAME("coreaudio"), | |
396 PLUGIN_FILENAME("OSS"), | |
397 PLUGIN_FILENAME("sun"), | |
398 PLUGIN_FILENAME("ESD"), | |
399 PLUGIN_FILENAME("pulse_audio"), | |
400 PLUGIN_FILENAME("disk_writer"), | |
401 NULL | |
2313 | 402 }; |
403 | |
404 GCond *cond_scan; | |
405 GMutex *mutex_scan; | |
406 | |
407 static GSList * | |
408 get_feature_list(void) | |
409 { | |
410 GSList *features = NULL; | |
411 | |
412 #ifdef HAVE_GCONF | |
413 features = g_slist_append(features, "GConf"); | |
414 #endif | |
415 | |
416 return features; | |
417 } | |
418 | |
419 static void | |
420 dump_version(void) | |
421 { | |
422 GSList *features; | |
423 | |
424 g_printf("%s %s [%s]", _(application_name), VERSION, svn_stamp); | |
425 | |
426 features = get_feature_list(); | |
427 | |
428 if (features) { | |
429 GSList *item; | |
430 | |
431 g_printf(" ("); | |
432 | |
433 for (item = features; g_slist_next(item); item = g_slist_next(item)) | |
434 g_printf("%s, ", (const gchar *) item->data); | |
435 | |
436 g_printf("%s)", (const gchar *) item->data); | |
437 | |
438 g_slist_free(features); | |
439 } | |
440 | |
441 g_printf("\n"); | |
442 } | |
443 | |
444 const gchar * | |
445 xmms_get_gentitle_format(void) | |
446 { | |
447 guint titlestring_preset = cfg.titlestring_preset; | |
448 | |
449 if (titlestring_preset < n_titlestring_presets) | |
2364 | 450 return bmp_titlestring_presets[titlestring_preset]; |
2313 | 451 |
452 return cfg.gentitle_format; | |
453 } | |
454 | |
455 void | |
456 make_directory(const gchar * path, mode_t mode) | |
457 { | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
458 if (g_mkdir_with_parents(path, mode) == 0) |
2313 | 459 return; |
460 | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
461 g_printerr(_("Could not create directory (%s): %s\n"), path, |
2313 | 462 g_strerror(errno)); |
463 } | |
464 | |
465 static void | |
466 bmp_make_user_dir(void) | |
467 { | |
468 const mode_t mode755 = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; | |
469 | |
470 make_directory(bmp_paths[BMP_PATH_USER_DIR], mode755); | |
471 make_directory(bmp_paths[BMP_PATH_USER_PLUGIN_DIR], mode755); | |
472 make_directory(bmp_paths[BMP_PATH_USER_SKIN_DIR], mode755); | |
473 make_directory(bmp_paths[BMP_PATH_SKIN_THUMB_DIR], mode755); | |
474 } | |
475 | |
476 static void | |
477 bmp_free_paths(void) | |
478 { | |
479 int i; | |
480 | |
481 for (i = 0; i < BMP_PATH_COUNT; i++) | |
482 { | |
483 g_free(bmp_paths[i]); | |
484 bmp_paths[i] = 0; | |
485 } | |
486 } | |
487 | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
488 static void |
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
489 bmp_init_paths() |
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
490 { |
2364 | 491 char *xdg_config_home; |
492 char *xdg_data_home; | |
493 char *xdg_cache_home; | |
2313 | 494 |
2364 | 495 xdg_config_home = (getenv("XDG_CONFIG_HOME") == NULL |
496 ? g_build_filename(g_get_home_dir(), ".config", NULL) | |
497 : g_strdup(getenv("XDG_CONFIG_HOME"))); | |
498 xdg_data_home = (getenv("XDG_DATA_HOME") == NULL | |
499 ? g_build_filename(g_get_home_dir(), ".local", "share", NULL) | |
500 : g_strdup(getenv("XDG_DATA_HOME"))); | |
501 xdg_cache_home = (getenv("XDG_CACHE_HOME") == NULL | |
502 ? g_build_filename(g_get_home_dir(), ".cache", NULL) | |
503 : g_strdup(getenv("XDG_CACHE_HOME"))); | |
2313 | 504 |
2364 | 505 bmp_paths[BMP_PATH_USER_DIR] = |
506 g_build_filename(xdg_config_home, "audacious", NULL); | |
507 bmp_paths[BMP_PATH_USER_SKIN_DIR] = | |
508 g_build_filename(xdg_data_home, "audacious", "Skins", NULL); | |
509 bmp_paths[BMP_PATH_USER_PLUGIN_DIR] = | |
2506
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
510 g_build_filename(xdg_data_home, "audacious", "Plugins", NULL); |
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
511 |
2364 | 512 bmp_paths[BMP_PATH_SKIN_THUMB_DIR] = |
513 g_build_filename(xdg_cache_home, "audacious", "thumbs", NULL); | |
2313 | 514 |
2364 | 515 bmp_paths[BMP_PATH_CONFIG_FILE] = |
516 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], "config", NULL); | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
517 #ifdef HAVE_XSPF_PLAYLIST |
2364 | 518 bmp_paths[BMP_PATH_PLAYLIST_FILE] = |
519 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], | |
520 "playlist.xspf", NULL); | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
521 #else |
2364 | 522 bmp_paths[BMP_PATH_PLAYLIST_FILE] = |
523 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], | |
524 "playlist.m3u", NULL); | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
525 #endif |
2364 | 526 bmp_paths[BMP_PATH_ACCEL_FILE] = |
527 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], "accels", NULL); | |
528 bmp_paths[BMP_PATH_LOG_FILE] = | |
529 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], "log", NULL); | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
530 |
2463 | 531 bmp_paths[BMP_PATH_GTKRC_FILE] = |
2570 | 532 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], "gtkrc", NULL); |
2463 | 533 |
2364 | 534 g_free(xdg_config_home); |
535 g_free(xdg_data_home); | |
536 g_free(xdg_cache_home); | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
537 |
2364 | 538 g_atexit(bmp_free_paths); |
2313 | 539 } |
540 | |
541 void | |
2682
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
542 bmp_config_free(void) |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
543 { |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
544 gint i; |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
545 for (i = 0; i < ncfgsent; ++i) { |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
546 if ( *(bmp_strents[i].se_vloc) != NULL ) |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
547 { |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
548 g_free( *(bmp_strents[i].se_vloc) ); |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
549 *(bmp_strents[i].se_vloc) = NULL; |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
550 } |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
551 } |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
552 } |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
553 |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
554 void |
2313 | 555 bmp_config_load(void) |
556 { | |
557 ConfigDb *db; | |
558 gint i, length; | |
559 | |
560 memcpy(&cfg, &bmp_default_config, sizeof(BmpConfig)); | |
561 | |
562 db = bmp_cfg_db_open(); | |
563 for (i = 0; i < ncfgbent; ++i) { | |
564 bmp_cfg_db_get_bool(db, NULL, | |
565 bmp_boolents[i].be_vname, | |
566 bmp_boolents[i].be_vloc); | |
567 } | |
568 | |
569 for (i = 0; i < ncfgient; ++i) { | |
570 bmp_cfg_db_get_int(db, NULL, | |
571 bmp_numents[i].ie_vname, | |
572 bmp_numents[i].ie_vloc); | |
573 } | |
574 | |
575 for (i = 0; i < ncfgsent; ++i) { | |
576 bmp_cfg_db_get_string(db, NULL, | |
577 bmp_strents[i].se_vname, | |
578 bmp_strents[i].se_vloc); | |
579 } | |
580 | |
581 /* Preset */ | |
582 bmp_cfg_db_get_float(db, NULL, "equalizer_preamp", &cfg.equalizer_preamp); | |
583 for (i = 0; i < 10; i++) { | |
584 gchar eqtext[18]; | |
585 | |
586 g_snprintf(eqtext, sizeof(eqtext), "equalizer_band%d", i); | |
587 bmp_cfg_db_get_float(db, NULL, eqtext, &cfg.equalizer_bands[i]); | |
588 } | |
589 | |
590 /* History */ | |
591 if (bmp_cfg_db_get_int(db, NULL, "url_history_length", &length)) { | |
592 for (i = 1; i <= length; i++) { | |
593 gchar str[19], *tmp; | |
594 | |
595 g_snprintf(str, sizeof(str), "url_history%d", i); | |
596 if (bmp_cfg_db_get_string(db, NULL, str, &tmp)) | |
597 cfg.url_history = g_list_append(cfg.url_history, tmp); | |
598 } | |
599 } | |
600 | |
601 bmp_cfg_db_close(db); | |
602 | |
603 | |
604 if (cfg.playlist_font && strlen(cfg.playlist_font) == 0) { | |
605 g_free(cfg.playlist_font); | |
606 cfg.playlist_font = NULL; | |
607 } | |
608 | |
609 if (cfg.mainwin_font && strlen(cfg.mainwin_font) == 0) { | |
610 g_free(cfg.mainwin_font); | |
611 cfg.mainwin_font = NULL; | |
612 } | |
613 | |
614 if (!cfg.playlist_font) | |
615 cfg.playlist_font = g_strdup(PLAYLISTWIN_DEFAULT_FONT); | |
616 | |
617 if (!cfg.mainwin_font) | |
618 cfg.mainwin_font = g_strdup(MAINWIN_DEFAULT_FONT); | |
619 | |
620 if (!cfg.gentitle_format) | |
621 cfg.gentitle_format = g_strdup("%{p:%p - %}%{a:%a - %}%t"); | |
622 | |
623 if (!cfg.outputplugin) { | |
2364 | 624 gint iter; |
2313 | 625 gchar *pl_path = g_build_filename(PLUGIN_DIR, plugin_dir_list[0], NULL); |
626 | |
627 for (iter = 0; pl_candidates[iter] != NULL && cfg.outputplugin == NULL; iter++) | |
2364 | 628 { |
629 cfg.outputplugin = find_file_recursively(pl_path, pl_candidates[iter]); | |
630 } | |
2313 | 631 |
632 g_free(pl_path); | |
633 } | |
634 | |
635 if (!cfg.eqpreset_default_file) | |
636 cfg.eqpreset_default_file = g_strdup(EQUALIZER_DEFAULT_DIR_PRESET); | |
637 | |
638 if (!cfg.eqpreset_extension) | |
639 cfg.eqpreset_extension = g_strdup(EQUALIZER_DEFAULT_PRESET_EXT); | |
640 | |
641 if (!cfg.chardet_detector) | |
642 cfg.chardet_detector = g_strdup(""); | |
643 | |
644 if (!cfg.chardet_fallback) | |
645 cfg.chardet_fallback = g_strdup(""); | |
646 | |
647 if (!cfg.cover_name_include) | |
2364 | 648 cfg.cover_name_include = g_strdup(""); |
2313 | 649 |
650 if (!cfg.cover_name_exclude) | |
2364 | 651 cfg.cover_name_exclude = g_strdup("back"); |
2313 | 652 |
653 if (!cfg.session_uri_base) | |
654 cfg.session_uri_base = g_strdup(""); | |
655 | |
656 /* at least one of these should be true */ | |
657 if ((!cfg.get_info_on_demand) && (!cfg.get_info_on_load)) | |
658 cfg.get_info_on_demand = TRUE; | |
659 } | |
660 | |
661 | |
662 void | |
663 bmp_config_save(void) | |
664 { | |
665 GList *node; | |
666 gchar *str; | |
667 gint i, cur_pb_time; | |
668 ConfigDb *db; | |
669 Playlist *playlist = playlist_get_active(); | |
670 | |
671 cfg.disabled_iplugins = input_stringify_disabled_list(); | |
672 | |
673 | |
674 db = bmp_cfg_db_open(); | |
675 | |
676 for (i = 0; i < ncfgbent; ++i) | |
677 if (bmp_boolents[i].be_wrt) | |
678 bmp_cfg_db_set_bool(db, NULL, | |
679 bmp_boolents[i].be_vname, | |
680 *bmp_boolents[i].be_vloc); | |
681 | |
682 for (i = 0; i < ncfgient; ++i) | |
683 if (bmp_numents[i].ie_wrt) | |
684 bmp_cfg_db_set_int(db, NULL, | |
685 bmp_numents[i].ie_vname, | |
686 *bmp_numents[i].ie_vloc); | |
687 | |
688 /* This is a bit lame .. it'll end up being written twice, | |
689 * could do with being done a bit neater. -larne */ | |
690 bmp_cfg_db_set_int(db, NULL, "playlist_position", | |
691 playlist_get_position(playlist)); | |
692 | |
2530 | 693 /* FIXME: we're looking up SkinnedWindow::x &c ourselves here. |
694 * this isn't exactly right. -nenolod | |
695 */ | |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
696 if ( SKINNED_WINDOW(playlistwin)->x != -1 && |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
697 SKINNED_WINDOW(playlistwin)->y != -1 ) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
698 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
699 bmp_cfg_db_set_int(db, NULL, "playlist_x", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
700 SKINNED_WINDOW(playlistwin)->x); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
701 bmp_cfg_db_set_int(db, NULL, "playlist_y", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
702 SKINNED_WINDOW(playlistwin)->y); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
703 } |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
704 |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
705 if ( SKINNED_WINDOW(mainwin)->x != -1 && |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
706 SKINNED_WINDOW(mainwin)->y != -1 ) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
707 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
708 bmp_cfg_db_set_int(db, NULL, "player_x", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
709 SKINNED_WINDOW(mainwin)->x); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
710 bmp_cfg_db_set_int(db, NULL, "player_y", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
711 SKINNED_WINDOW(mainwin)->y); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
712 } |
2530 | 713 |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
714 if ( SKINNED_WINDOW(equalizerwin)->x != -1 && |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
715 SKINNED_WINDOW(equalizerwin)->y != -1 ) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
716 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
717 bmp_cfg_db_set_int(db, NULL, "equalizer_x", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
718 SKINNED_WINDOW(equalizerwin)->x); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
719 bmp_cfg_db_set_int(db, NULL, "equalizer_y", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
720 SKINNED_WINDOW(equalizerwin)->y); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
721 } |
2530 | 722 |
2313 | 723 bmp_cfg_db_set_bool(db, NULL, "mainwin_use_xfont", |
2364 | 724 cfg.mainwin_use_xfont); |
2313 | 725 |
726 for (i = 0; i < ncfgsent; ++i) { | |
727 if (bmp_strents[i].se_wrt) | |
728 bmp_cfg_db_set_string(db, NULL, | |
729 bmp_strents[i].se_vname, | |
730 *bmp_strents[i].se_vloc); | |
731 } | |
732 | |
733 bmp_cfg_db_set_float(db, NULL, "equalizer_preamp", cfg.equalizer_preamp); | |
734 | |
735 for (i = 0; i < 10; i++) { | |
736 str = g_strdup_printf("equalizer_band%d", i); | |
737 bmp_cfg_db_set_float(db, NULL, str, cfg.equalizer_bands[i]); | |
738 g_free(str); | |
739 } | |
740 | |
741 if (bmp_active_skin != NULL) | |
742 { | |
743 if (bmp_active_skin->path) | |
744 bmp_cfg_db_set_string(db, NULL, "skin", bmp_active_skin->path); | |
745 else | |
746 bmp_cfg_db_unset_key(db, NULL, "skin"); | |
747 } | |
748 | |
749 if (get_current_output_plugin()) | |
750 bmp_cfg_db_set_string(db, NULL, "output_plugin", | |
751 get_current_output_plugin()->filename); | |
752 else | |
753 bmp_cfg_db_unset_key(db, NULL, "output_plugin"); | |
754 | |
755 str = general_stringify_enabled_list(); | |
756 if (str) { | |
757 bmp_cfg_db_set_string(db, NULL, "enabled_gplugins", str); | |
758 g_free(str); | |
759 } | |
760 else | |
761 bmp_cfg_db_unset_key(db, NULL, "enabled_gplugins"); | |
762 | |
763 str = vis_stringify_enabled_list(); | |
764 if (str) { | |
765 bmp_cfg_db_set_string(db, NULL, "enabled_vplugins", str); | |
766 g_free(str); | |
767 } | |
768 else | |
769 bmp_cfg_db_unset_key(db, NULL, "enabled_vplugins"); | |
770 | |
771 str = effect_stringify_enabled_list(); | |
772 if (str) { | |
773 bmp_cfg_db_set_string(db, NULL, "enabled_eplugins", str); | |
774 g_free(str); | |
775 } | |
776 else | |
777 bmp_cfg_db_unset_key(db, NULL, "enabled_eplugins"); | |
778 | |
779 if (cfg.filesel_path) | |
780 bmp_cfg_db_set_string(db, NULL, "filesel_path", cfg.filesel_path); | |
781 | |
782 if (cfg.playlist_path) | |
783 bmp_cfg_db_set_string(db, NULL, "playlist_path", cfg.playlist_path); | |
784 | |
785 bmp_cfg_db_set_int(db, NULL, "url_history_length", | |
786 g_list_length(cfg.url_history)); | |
787 | |
788 for (node = cfg.url_history, i = 1; node; node = g_list_next(node), i++) { | |
789 str = g_strdup_printf("url_history%d", i); | |
790 bmp_cfg_db_set_string(db, NULL, str, node->data); | |
791 g_free(str); | |
792 } | |
793 | |
794 if (playback_get_playing()) { | |
2364 | 795 cur_pb_time = playback_get_time(); |
2313 | 796 } else |
2364 | 797 cur_pb_time = -1; |
2313 | 798 cfg.resume_playback_on_startup_time = cur_pb_time; |
799 bmp_cfg_db_set_int(db, NULL, "resume_playback_on_startup_time", | |
2364 | 800 cfg.resume_playback_on_startup_time); |
2313 | 801 |
802 bmp_cfg_db_close(db); | |
803 | |
804 playlist_save(playlist, bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
805 } | |
806 | |
807 static void | |
808 bmp_set_default_icon(void) | |
809 { | |
810 GdkPixbuf *icon; | |
811 | |
812 icon = gdk_pixbuf_new_from_xpm_data((const gchar **) audacious_player_xpm); | |
813 gtk_window_set_default_icon(icon); | |
814 g_object_unref(icon); | |
815 } | |
816 | |
817 static void | |
818 register_aud_stock_icons(void) | |
819 { | |
820 GtkIconFactory *iconfactory = gtk_icon_factory_new(); | |
821 GtkIconSet *iconset; | |
822 GdkPixbuf *pixbuf; | |
823 | |
824 /* pick images in icons-csource.h */ | |
825 pixbuf = gdk_pixbuf_new_from_inline( -1 , removedups_pixbuf , FALSE , NULL ); | |
826 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
827 gtk_icon_factory_add( iconfactory , AUD_STOCK_REMOVEDUPS , iconset ); | |
828 pixbuf = gdk_pixbuf_new_from_inline( -1 , removeunavail_pixbuf , FALSE , NULL ); | |
829 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
830 gtk_icon_factory_add( iconfactory , AUD_STOCK_REMOVEUNAVAIL , iconset ); | |
831 pixbuf = gdk_pixbuf_new_from_inline( -1 , randomizepl_pixbuf , FALSE , NULL ); | |
832 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
833 gtk_icon_factory_add( iconfactory , AUD_STOCK_RANDOMIZEPL , iconset ); | |
834 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbytitle_pixbuf , FALSE , NULL ); | |
835 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
836 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYTITLE , iconset ); | |
837 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbyfilename_pixbuf , FALSE , NULL ); | |
838 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
839 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYFILENAME , iconset ); | |
840 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbyartist_pixbuf , FALSE , NULL ); | |
841 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
842 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYARTIST , iconset ); | |
843 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbypathfile_pixbuf , FALSE , NULL ); | |
844 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
845 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYPATHFILE , iconset ); | |
846 pixbuf = gdk_pixbuf_new_from_inline( -1 , selectnone_pixbuf , FALSE , NULL ); | |
847 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
848 gtk_icon_factory_add( iconfactory , AUD_STOCK_SELECTNONE , iconset ); | |
849 pixbuf = gdk_pixbuf_new_from_inline( -1 , selectall_pixbuf , FALSE , NULL ); | |
850 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
851 gtk_icon_factory_add( iconfactory , AUD_STOCK_SELECTALL , iconset ); | |
852 pixbuf = gdk_pixbuf_new_from_inline( -1 , selectinvert_pixbuf , FALSE , NULL ); | |
853 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
854 gtk_icon_factory_add( iconfactory , AUD_STOCK_SELECTINVERT , iconset ); | |
855 pixbuf = gdk_pixbuf_new_from_inline( -1 , invertpl_pixbuf , FALSE , NULL ); | |
856 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
857 gtk_icon_factory_add( iconfactory , AUD_STOCK_INVERTPL , iconset ); | |
858 pixbuf = gdk_pixbuf_new_from_inline( -1 , queuetoggle_pixbuf , FALSE , NULL ); | |
859 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
860 gtk_icon_factory_add( iconfactory , AUD_STOCK_QUEUETOGGLE , iconset ); | |
861 pixbuf = gdk_pixbuf_new_from_inline( -1 , info_pixbuf , FALSE , NULL ); | |
862 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
863 gtk_icon_factory_add( iconfactory , AUD_STOCK_INFO , iconset ); | |
864 pixbuf = gdk_pixbuf_new_from_inline( -1 , playlist_pixbuf , FALSE , NULL ); | |
865 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
866 gtk_icon_factory_add( iconfactory , AUD_STOCK_PLAYLIST , iconset ); | |
867 | |
868 gtk_icon_factory_add_default( iconfactory ); | |
869 g_object_unref( iconfactory ); | |
870 } | |
871 | |
2411 | 872 static GOptionEntry cmd_entries[] = { |
2448
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
873 {"session", 'n', 0, G_OPTION_ARG_INT, &options.session, N_("Select which Audacious session ID to use"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
874 {"rew", 'r', 0, G_OPTION_ARG_NONE, &options.rew, N_("Skip backwards in playlist"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
875 {"play", 'p', 0, G_OPTION_ARG_NONE, &options.play, N_("Start playing current playlist"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
876 {"pause", 'u', 0, G_OPTION_ARG_NONE, &options.pause, N_("Pause current song"), NULL}, |
2475 | 877 {"stop", 's', 0, G_OPTION_ARG_NONE, &options.stop, N_("Stop current song"), NULL}, |
2551
cea3528b2996
[svn] Fix --play-pause commandline option, by Alex "Monkey" Maclean in #gentoo-x86
chainsaw
parents:
2530
diff
changeset
|
878 {"play-pause", 't', 0, G_OPTION_ARG_NONE, &options.play_pause, N_("Pause if playing, play otherwise"), NULL}, |
2448
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
879 {"fwd", 'f', 0, G_OPTION_ARG_NONE, &options.fwd, N_("Skip forward in playlist"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
880 {"show-jump-box", 'j', 0, G_OPTION_ARG_NONE, &options.show_jump_box, N_("Display Jump to File dialog"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
881 {"enqueue", 'e', 0, G_OPTION_ARG_NONE, &options.enqueue, N_("Don't clear the playlist"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
882 {"enqueue-to-temp", 'E', 0, G_OPTION_ARG_NONE, &options.enqueue_to_temp, N_("Add new files to a temporary playlist"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
883 {"show-main-window", 'm', 0, G_OPTION_ARG_NONE, &options.mainwin, N_("Display the main window"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
884 {"activate", 'a', 0, G_OPTION_ARG_NONE, &options.activate, N_("Display all open Audacious windows"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
885 {"headless", 'H', 0, G_OPTION_ARG_NONE, &options.headless, N_("Enable headless operation"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
886 {"no-log", 'N', 0, G_OPTION_ARG_NONE, &options.no_log, N_("Print all errors and warnings to stdout"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
887 {"version", 'v', 0, G_OPTION_ARG_NONE, &options.version, N_("Show version and builtin features"), NULL}, |
2411 | 888 {G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &options.filenames, N_("FILE..."), NULL}, |
889 {NULL}, | |
890 }; | |
2313 | 891 |
892 static void | |
893 handle_cmd_line_options(BmpCmdLineOpt * options, | |
894 gboolean remote) | |
895 { | |
2411 | 896 gchar **filenames = options->filenames; |
2313 | 897 gint session = options->session; |
898 | |
2411 | 899 if (options->version) |
900 { | |
901 dump_version(); | |
902 exit(EXIT_SUCCESS); | |
903 } | |
904 | |
2313 | 905 if (session == -1) { |
906 if (!remote) | |
907 session = ctrlsocket_get_session_id(); | |
908 else | |
909 session = 0; | |
910 } | |
911 | |
2411 | 912 if (filenames != NULL) |
913 { | |
2313 | 914 gint pos = 0; |
2411 | 915 gint i = 0; |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
916 GList *fns = NULL; |
2313 | 917 |
2411 | 918 for (i = 0; filenames[i] != NULL; i++) |
919 { | |
2570 | 920 gchar *filename; |
2512
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
921 gchar *current_dir = g_get_current_dir(); |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
922 |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
923 if (filenames[i][0] == '/' || strstr(filenames[i], "://")) |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
924 filename = g_strdup(filenames[i]); |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
925 else |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
926 filename = g_build_filename(current_dir, filenames[i], NULL); |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
927 |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
928 fns = g_list_prepend(fns, filename); |
2313 | 929 |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
930 g_free(current_dir); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
931 } |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
932 |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
933 fns = g_list_reverse(fns); |
2411 | 934 |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
935 if (options->load_skins) |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
936 { |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
937 xmms_remote_set_skin(session, filenames[0]); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
938 skin_install_skin(filenames[0]); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
939 } |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
940 else |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
941 { |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
942 if (options->enqueue_to_temp) |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
943 xmms_remote_playlist_enqueue_to_temp(session, filenames[0]); |
2411 | 944 |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
945 if (options->enqueue && options->play) |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
946 pos = xmms_remote_get_playlist_length(session); |
2313 | 947 |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
948 if (!options->enqueue) |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
949 { |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
950 xmms_remote_playlist_clear(session); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
951 xmms_remote_stop(session); |
2411 | 952 } |
2512
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
953 |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
954 xmms_remote_playlist_add(session, fns); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
955 |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
956 if (options->enqueue && options->play && |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
957 xmms_remote_get_playlist_length(session) > pos) |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
958 xmms_remote_set_playlist_pos(session, pos); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
959 |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
960 if (!options->enqueue) |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
961 xmms_remote_play(session); |
2313 | 962 } |
963 | |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
964 g_list_foreach(fns, (GFunc) g_free, NULL); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
965 g_list_free(fns); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
966 |
2411 | 967 g_strfreev(filenames); |
2313 | 968 } |
969 | |
970 if (options->rew) | |
971 xmms_remote_playlist_prev(session); | |
972 | |
973 if (options->play) | |
974 xmms_remote_play(session); | |
975 | |
976 if (options->pause) | |
977 xmms_remote_pause(session); | |
978 | |
979 if (options->stop) | |
980 xmms_remote_stop(session); | |
981 | |
982 if (options->fwd) | |
983 xmms_remote_playlist_next(session); | |
984 | |
985 if (options->play_pause) | |
986 xmms_remote_play_pause(session); | |
987 | |
988 if (options->show_jump_box) | |
989 xmms_remote_show_jtf_box(session); | |
990 | |
991 if (options->mainwin) | |
992 xmms_remote_main_win_toggle(session, TRUE); | |
993 | |
994 if (options->activate) | |
995 xmms_remote_activate(session); | |
996 | |
997 if (options->playcd) | |
998 play_medium(); | |
999 } | |
1000 | |
1001 static void | |
1002 bmp_setup_logger(void) | |
1003 { | |
1004 if (!bmp_logger_start(bmp_paths[BMP_PATH_LOG_FILE])) | |
1005 return; | |
1006 | |
1007 g_atexit(bmp_logger_stop); | |
1008 } | |
1009 | |
1010 static void | |
1011 run_load_skin_error_dialog(const gchar * skin_path) | |
1012 { | |
1013 const gchar *markup = | |
1014 N_("<b><big>Unable to load skin.</big></b>\n" | |
1015 "\n" | |
1016 "Check that skin at '%s' is usable and default skin is properly " | |
1017 "installed at '%s'\n"); | |
1018 | |
1019 GtkWidget *dialog = | |
1020 gtk_message_dialog_new_with_markup(NULL, | |
1021 GTK_DIALOG_MODAL, | |
1022 GTK_MESSAGE_ERROR, | |
1023 GTK_BUTTONS_CLOSE, | |
1024 _(markup), | |
1025 skin_path, | |
1026 BMP_DEFAULT_SKIN_PATH); | |
1027 gtk_dialog_run(GTK_DIALOG(dialog)); | |
1028 gtk_widget_destroy(dialog); | |
1029 } | |
1030 | |
1031 // use a format string? | |
1032 void report_error(const gchar *error_text) | |
1033 { | |
2364 | 1034 fprintf(stderr, error_text); |
2570 | 1035 |
1036 if (options.headless != 1) | |
1037 { | |
2313 | 1038 gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(err), |
1039 error_text); | |
1040 gtk_dialog_run(GTK_DIALOG(err)); | |
1041 gtk_widget_hide(err); | |
1042 } | |
1043 } | |
1044 | |
2369 | 1045 static gboolean |
1046 aud_headless_iteration(gpointer unused) | |
1047 { | |
2506
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1048 audcore_generic_events(); |
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1049 free_vis_data(); |
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1050 return TRUE; |
2369 | 1051 } |
1052 | |
2313 | 1053 gint |
1054 main(gint argc, gchar ** argv) | |
1055 { | |
1056 gboolean gtk_init_check_ok; | |
1057 Playlist *playlist; | |
2411 | 1058 GOptionContext *context; |
1059 GError *error = NULL; | |
2313 | 1060 |
2644
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1061 /* glib-2.13.0 requires g_thread_init() to be called before all |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1062 other GLib functions */ |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1063 g_thread_init(NULL); |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1064 if (!g_thread_supported()) { |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1065 g_printerr(_("Sorry, threads isn't supported on your platform.\n\n" |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1066 "If you're on a libc5 based linux system and installed Glib & GTK+ before you\n" |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1067 "installed LinuxThreads you need to recompile Glib & GTK+.\n")); |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1068 exit(EXIT_FAILURE); |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1069 } |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1070 |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1071 gdk_threads_init(); |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1072 |
2313 | 1073 /* Setup l10n early so we can print localized error messages */ |
1074 gtk_set_locale(); | |
1075 bindtextdomain(PACKAGE_NAME, LOCALEDIR); | |
1076 bind_textdomain_codeset(PACKAGE_NAME, "UTF-8"); | |
2388
52bcc18eb8bb
[svn] - attempt to bind the audacious-plugins domain
nenolod
parents:
2369
diff
changeset
|
1077 bindtextdomain(PACKAGE_NAME "-plugins", LOCALEDIR); |
52bcc18eb8bb
[svn] - attempt to bind the audacious-plugins domain
nenolod
parents:
2369
diff
changeset
|
1078 bind_textdomain_codeset(PACKAGE_NAME "-plugins", "UTF-8"); |
2313 | 1079 textdomain(PACKAGE_NAME); |
1080 | |
1081 bmp_init_paths(); | |
1082 bmp_make_user_dir(); | |
1083 | |
1084 /* Check GTK version. Really, this is only needed for binary | |
1085 * distribution since configure already checks. */ | |
1086 if (!GTK_CHECK_VERSION(2, 6, 0)) { | |
1087 g_printerr(_("Sorry, your GTK+ version (%d.%d.%d) does not work with Audacious.\n" | |
1088 "Please use GTK+ %s or newer.\n"), | |
1089 gtk_major_version, gtk_minor_version, gtk_micro_version, | |
1090 "2.6.0"); | |
1091 exit(EXIT_FAILURE); | |
1092 } | |
1093 | |
1094 g_set_application_name(_(application_name)); | |
1095 | |
1096 cond_scan = g_cond_new(); | |
1097 mutex_scan = g_mutex_new(); | |
1098 | |
2463 | 1099 gtk_rc_add_default_file(bmp_paths[BMP_PATH_GTKRC_FILE]); |
1100 | |
2313 | 1101 gtk_init_check_ok = gtk_init_check(&argc, &argv); |
2411 | 1102 |
2413 | 1103 memset(&options, '\0', sizeof(BmpCmdLineOpt)); |
1104 options.session = -1; | |
1105 | |
2411 | 1106 context = g_option_context_new(_("- play multimedia files")); |
1107 g_option_context_add_main_entries(context, cmd_entries, PACKAGE_NAME); | |
1108 g_option_context_add_group(context, gtk_get_option_group(TRUE)); | |
1109 g_option_context_parse(context, &argc, &argv, &error); | |
1110 | |
2412 | 1111 if (error != NULL) |
1112 { | |
1113 g_printerr(_("%s: %s\nTry `%s --help' for more information.\n"), argv[0], error->message, argv[0]); | |
1114 exit(EXIT_FAILURE); | |
1115 } | |
1116 | |
2313 | 1117 if (!gtk_init_check_ok) { |
1118 if (argc < 2) { | |
1119 /* GTK check failed, and no arguments passed to indicate | |
1120 that user is intending to only remote control a running | |
1121 session */ | |
2412 | 1122 g_printerr(_("%s: Unable to open display, exiting.\n"), argv[0]); |
2313 | 1123 exit(EXIT_FAILURE); |
1124 } | |
1125 | |
1126 handle_cmd_line_options(&options, TRUE); | |
1127 | |
1128 /* we could be running headless, so GTK probably wont matter */ | |
1129 if (options.headless != 1) | |
1130 exit(EXIT_SUCCESS); | |
1131 } | |
1132 | |
1133 if (options.no_log == FALSE) | |
1134 bmp_setup_logger(); | |
1135 | |
1136 signal_handlers_init(); | |
1137 | |
1138 g_random_set_seed(time(NULL)); | |
1139 | |
1140 bmp_config_load(); | |
1141 | |
1142 if (options.session != -1 || !ctrlsocket_setup()) { | |
1143 handle_cmd_line_options(&options, TRUE); | |
1144 exit(EXIT_SUCCESS); | |
1145 } | |
1146 | |
1147 plugin_system_init(); | |
1148 | |
1149 /* Initialize the playlist system. */ | |
1150 playlist_init(); | |
1151 | |
1152 if (options.headless != 1) | |
1153 { | |
1154 /* register icons in stock */ | |
1155 register_aud_stock_icons(); | |
1156 | |
1157 bmp_set_default_icon(); | |
1158 | |
1159 gtk_accel_map_load(bmp_paths[BMP_PATH_ACCEL_FILE]); | |
1160 | |
1161 /* uimanager */ | |
1162 ui_manager_init(); | |
1163 ui_manager_create_menus(); | |
1164 | |
1165 if (!init_skins(cfg.skin)) { | |
1166 run_load_skin_error_dialog(cfg.skin); | |
1167 exit(EXIT_FAILURE); | |
1168 } | |
1169 | |
1170 GDK_THREADS_ENTER(); | |
1171 } | |
1172 | |
1173 /* Load the default playlist in. */ | |
1174 playlist = playlist_get_active(); | |
1175 playlist_load(playlist, bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
1176 playlist_set_position(playlist, cfg.playlist_position); | |
1177 | |
1178 /* this needs to be called after all 3 windows are created and | |
1179 * input plugins are setup'ed | |
1180 * but not if we're running headless --nenolod | |
1181 */ | |
1182 mainwin_setup_menus(); | |
1183 | |
1184 if (options.headless != 1) | |
1185 GDK_THREADS_LEAVE(); | |
1186 | |
1187 ctrlsocket_start(); | |
1188 | |
1189 handle_cmd_line_options(&options, FALSE); | |
1190 | |
1191 if (options.headless != 1) | |
1192 { | |
1193 GDK_THREADS_ENTER(); | |
1194 | |
1195 read_volume(VOLSET_STARTUP); | |
1196 mainwin_set_info_text(); | |
1197 | |
1198 /* FIXME: delayed, because it deals directly with the plugin | |
1199 * interface to set menu items */ | |
1200 create_prefs_window(); | |
1201 | |
2364 | 1202 create_fileinfo_window(); |
1203 | |
2313 | 1204 |
1205 if (cfg.player_visible) | |
1206 mainwin_show(TRUE); | |
1207 else if (!cfg.playlist_visible && !cfg.equalizer_visible) | |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
1208 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
1209 /* all of the windows are hidden... warn user about this */ |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
1210 mainwin_show_visibility_warning(); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
1211 } |
2313 | 1212 |
1213 if (cfg.equalizer_visible) | |
1214 equalizerwin_show(TRUE); | |
1215 | |
1216 if (cfg.playlist_visible) | |
1217 playlistwin_show(); | |
1218 | |
1219 hint_set_always(cfg.always_on_top); | |
1220 | |
1221 playlist_start_get_info_thread(); | |
1222 mainwin_attach_idle_func(); | |
1223 | |
1224 | |
2364 | 1225 starting_up = FALSE; |
1226 has_x11_connection = TRUE; | |
2313 | 1227 |
2364 | 1228 if (cfg.resume_playback_on_startup) |
1229 { | |
1230 if (cfg.resume_playback_on_startup_time != -1 && | |
1231 playlist_get_length(playlist) > 0) | |
1232 { | |
1233 int i; | |
1234 gint l = 0, r = 0; | |
1235 while (gtk_events_pending()) gtk_main_iteration(); | |
1236 output_get_volume(&l, &r); | |
1237 output_set_volume(0,0); | |
1238 playback_initiate(); | |
2313 | 1239 |
2364 | 1240 /* Busy wait; loop is fairly tight to minimize duration of |
1241 * "frozen" GUI. Feel free to tune. --chainsaw */ | |
1242 for (i = 0; i < 20; i++) | |
1243 { | |
1244 g_usleep(1000); | |
1245 if (!ip_data.playing) | |
1246 break; | |
1247 } | |
1248 playback_seek(cfg.resume_playback_on_startup_time / 1000); | |
1249 output_set_volume(l, r); | |
1250 } | |
1251 } | |
1252 | |
2313 | 1253 gtk_main(); |
1254 | |
1255 GDK_THREADS_LEAVE(); | |
1256 | |
1257 g_cond_free(cond_scan); | |
1258 g_mutex_free(mutex_scan); | |
1259 | |
1260 return EXIT_SUCCESS; | |
1261 } | |
2364 | 1262 // if we are running headless |
2313 | 1263 else |
1264 { | |
2506
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1265 GMainLoop *loop; |
2369 | 1266 |
2313 | 1267 mainwin_set_info_text(); |
1268 playlist_start_get_info_thread(); | |
1269 | |
2364 | 1270 starting_up = FALSE; |
2313 | 1271 |
2506
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1272 loop = g_main_loop_new(NULL, TRUE); |
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1273 g_timeout_add(10, aud_headless_iteration, NULL); |
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1274 g_main_loop_run(loop); |
2313 | 1275 |
1276 return EXIT_SUCCESS; | |
1277 } | |
1278 } |